Searched refs:big (Results 1 – 4 of 4) sorted by relevance
| /system/uapp/crasher/ |
| A D | cpp_specific.cpp | 15 auto big = new BigStruct; in cpp_out_of_mem() local 16 rv += (&big->y[0] > &rv) ? 0 : 1; in cpp_out_of_mem()
|
| /system/utest/fbl/ |
| A D | function_tests.cpp | 273 BinaryOpFunction fheap([&fheap_value, big = Big() ](int a, int b) { in binary_op() 486 auto big = [ big = Big(), x = 1 ] { (void)x; }; in sized_function_size_bounds() local 487 fbl::SizedFunction<Closure, sizeof(big)> fbig(std::move(big)); in sized_function_size_bounds() 488 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in sized_function_size_bounds() 501 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in sized_function_size_bounds() 502 fbig = [ big = Big(), x = 1, y = 2 ] { in sized_function_size_bounds() 525 auto big = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds() local 526 fbl::InlineFunction<Closure, sizeof(big)> fbig(std::move(big)); in inline_function_size_bounds() 527 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in inline_function_size_bounds() 540 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds() [all …]
|
| /system/utest/launchpad/ |
| A D | launchpad.cpp | 94 char* big = static_cast<char*>(malloc(size + 3)); in run_one_argument_size_test() local 95 big[0] = ':'; in run_one_argument_size_test() 96 big[1] = ' '; in run_one_argument_size_test() 97 memset(&big[2], 'x', size); in run_one_argument_size_test() 98 big[2 + size] = '\0'; in run_one_argument_size_test() 99 const char* const argv[] = { "/boot/bin/sh", "-c", big }; in run_one_argument_size_test() 101 free(big); in run_one_argument_size_test()
|
| /system/utest/fit/ |
| A D | function_tests.cpp | 306 BinaryOpFunction fheap([&fheap_value, big = Big()](int a, int b) { in binary_op() 482 auto big = [big = Big(), x = 1] { (void)x; }; in sized_function_size_bounds() local 483 fit::function<Closure, sizeof(big)> fbig(std::move(big)); in sized_function_size_bounds() 484 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in sized_function_size_bounds() 497 fsmall = [big = Big(), x = 1] { (void)x; }; in sized_function_size_bounds() 498 fbig = [big = Big(), x = 1, y = 2] { in sized_function_size_bounds() 521 auto big = [big = Big(), x = 1] { (void)x; }; in inline_function_size_bounds() local 522 fit::inline_function<Closure, sizeof(big)> fbig(std::move(big)); in inline_function_size_bounds() 523 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in inline_function_size_bounds() 536 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds() [all …]
|
Completed in 10 milliseconds