Searched refs:fsmall (Results 1 – 2 of 2) sorted by relevance
| /system/utest/fbl/ |
| A D | function_tests.cpp | 482 fbl::SizedFunction<Closure, sizeof(small)> fsmall(std::move(small)); in sized_function_size_bounds() local 483 static_assert(sizeof(fsmall) >= sizeof(small), "size bounds"); in sized_function_size_bounds() 484 fsmall = [] {}; in sized_function_size_bounds() 501 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in sized_function_size_bounds() 521 fbl::InlineFunction<Closure, sizeof(small)> fsmall(std::move(small)); in inline_function_size_bounds() local 522 static_assert(sizeof(fsmall) >= sizeof(small), "size bounds"); in inline_function_size_bounds() 523 fsmall = [] {}; in inline_function_size_bounds() 540 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds()
|
| /system/utest/fit/ |
| A D | function_tests.cpp | 478 fit::function<Closure, sizeof(small)> fsmall(std::move(small)); in sized_function_size_bounds() local 479 static_assert(sizeof(fsmall) >= sizeof(small), "size bounds"); in sized_function_size_bounds() 480 fsmall = [] {}; in sized_function_size_bounds() 497 fsmall = [big = Big(), x = 1] { (void)x; }; in sized_function_size_bounds() 517 fit::inline_function<Closure, sizeof(small)> fsmall(std::move(small)); in inline_function_size_bounds() local 518 static_assert(sizeof(fsmall) >= sizeof(small), "size bounds"); in inline_function_size_bounds() 519 fsmall = [] {}; in inline_function_size_bounds() 536 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds()
|
Completed in 6 milliseconds