Searched refs:fbig (Results 1 – 2 of 2) sorted by relevance
| /system/utest/fbl/ |
| A D | function_tests.cpp | 487 fbl::SizedFunction<Closure, sizeof(big)> fbig(std::move(big)); in sized_function_size_bounds() local 488 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in sized_function_size_bounds() 489 fbig = [ x = 1, y = 2 ] { in sized_function_size_bounds() 493 fbig = [] {}; in sized_function_size_bounds() 502 fbig = [ big = Big(), x = 1, y = 2 ] { in sized_function_size_bounds() 526 fbl::InlineFunction<Closure, sizeof(big)> fbig(std::move(big)); in inline_function_size_bounds() local 527 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in inline_function_size_bounds() 528 fbig = [ x = 1, y = 2 ] { in inline_function_size_bounds() 532 fbig = [] {}; in inline_function_size_bounds() 541 fbig = [ big = Big(), x = 1, y = 2 ] { in inline_function_size_bounds()
|
| /system/utest/fit/ |
| A D | function_tests.cpp | 483 fit::function<Closure, sizeof(big)> fbig(std::move(big)); in sized_function_size_bounds() local 484 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in sized_function_size_bounds() 485 fbig = [x = 1, y = 2] { in sized_function_size_bounds() 489 fbig = [] {}; in sized_function_size_bounds() 498 fbig = [big = Big(), x = 1, y = 2] { in sized_function_size_bounds() 522 fit::inline_function<Closure, sizeof(big)> fbig(std::move(big)); in inline_function_size_bounds() local 523 static_assert(sizeof(fbig) >= sizeof(big), "size bounds"); in inline_function_size_bounds() 524 fbig = [x = 1, y = 2] { in inline_function_size_bounds() 528 fbig = [] {}; in inline_function_size_bounds() 537 fbig = [ big = Big(), x = 1, y = 2 ] { in inline_function_size_bounds()
|
Completed in 6 milliseconds