Lines Matching refs:Big
18 struct Big { struct
31 constexpr size_t HugeCallableSize = sizeof(Big) + sizeof(void*) * 4;
66 ClosureFunction fheap([&fheap_value, big = Big() ] { fheap_value++; }); in closure()
109 ClosureFunction fmutheap([&fmutheap_value, big = Big(), x = 1 ]() mutable { in closure()
220 ClosureFunction fcheckheap([&fcheck_value, big = Big() ] { fcheck_value++; }, &ac3); in closure()
228 fcheckheap.SetTarget([&fcheck_value, big = Big() ] { fcheck_value *= 3; }, &ac4); in closure()
273 BinaryOpFunction fheap([&fheap_value, big = Big() ](int a, int b) { in binary_op()
320 BinaryOpFunction fmutheap([&fmutheap_value, big = Big(), x = 1 ](int a, int b) mutable { in binary_op()
446 BinaryOpFunction fcheckheap([&fcheck_value, big = Big() ](int a, int b) { in binary_op()
458 fcheckheap.SetTarget([&fcheck_value, big = Big() ](int a, int b) { in binary_op()
486 auto big = [ big = Big(), x = 1 ] { (void)x; }; 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()
540 fsmall = [ big = Big(), x = 1 ] { (void)x; }; in inline_function_size_bounds()
541 fbig = [ big = Big(), x = 1, y = 2 ] { in inline_function_size_bounds()