Lines Matching refs:big
119 ClosureFunction fheap([&fheap_value, big = Big()] { fheap_value++; }); in closure()
162 ClosureFunction fmutheap([&fmutheap_value, big = Big(), x = 1]() mutable { in closure()
306 BinaryOpFunction fheap([&fheap_value, big = Big()](int a, int b) { in binary_op()
353 BinaryOpFunction fmutheap([&fmutheap_value, big = Big(), x = 1](int a, int b) mutable { 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()
537 fbig = [ big = Big(), x = 1, y = 2 ] { in inline_function_size_bounds()
640 [&fheapvalue, big = Big(), d = DestructionObserver(&fheapdestroy)] { fheapvalue++; }; in sharing()