/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/asm/comp/ |
D | bitfield-signed-operations.asm.comp | 12 kernel void main0(device SSBO& _3 [[buffer(0)]]) 14 int4 _19 = _3.ints; 15 uint4 _20 = _3.uints; 16 _3.ints = popcount(_19); 17 _3.uints = uint4(popcount(_19)); 18 _3.ints = int4(popcount(_20)); 19 _3.uints = popcount(_20); 20 _3.ints = reverse_bits(_19); 21 _3.uints = reverse_bits(_20); 22 _3.ints = extract_bits(_19, uint(1), 11u); [all …]
|
D | copy-logical-2.spv14.asm.comp | 48 kernel void main0(device _8& _3 [[buffer(0)]]) 51 _31.a = _3.c_block.c; 52 _31.b1.elem1 = _3.c_block.b2.elem2; 53 _31.b1_array[0].elem1 = _3.c_block.b2_array[0].elem2; 54 _31.b1_array[1].elem1 = _3.c_block.b2_array[1].elem2; 55 _31.b1_array[2].elem1 = _3.c_block.b2_array[2].elem2; 56 _31.b1_array[3].elem1 = _3.c_block.b2_array[3].elem2; 57 _31._m3._m0 = transpose(float2x2(_3.c_block._m3._m0[0].xy, _3.c_block._m3._m0[1].xy)); 58 _3.a_block = _31;
|
D | copy-logical.spv14.asm.comp | 36 kernel void main0(device _8& _3 [[buffer(0)]]) 39 _27.a = _3.c_block.c; 40 _27.b1.elem1 = _3.c_block.b2.elem2; 41 _27.b1_array[0].elem1 = _3.c_block.b2_array[0].elem2; 42 _27.b1_array[1].elem1 = _3.c_block.b2_array[1].elem2; 43 _27.b1_array[2].elem1 = _3.c_block.b2_array[2].elem2; 44 _27.b1_array[3].elem1 = _3.c_block.b2_array[3].elem2; 45 _3.a_block = _27;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-no-opt/asm/comp/ |
D | bitfield-signed-operations.asm.comp | 8 } _3; 12 ivec4 _19 = _3.ints; 13 uvec4 _20 = _3.uints; 14 _3.ints = bitCount(_19); 15 _3.uints = uvec4(bitCount(_19)); 16 _3.ints = bitCount(_20); 17 _3.uints = uvec4(bitCount(_20)); 18 _3.ints = bitfieldReverse(_19); 19 _3.uints = bitfieldReverse(_20); 20 _3.ints = bitfieldExtract(_19, 1, int(11u)); [all …]
|
D | copy-logical.spv14.asm.comp | 32 } _3; 37 _27.a = _3.c_block.c; 38 _27.b1.elem1 = _3.c_block.b2.elem2; 39 _27.b1_array[0].elem1 = _3.c_block.b2_array[0].elem2; 40 _27.b1_array[1].elem1 = _3.c_block.b2_array[1].elem2; 41 _27.b1_array[2].elem1 = _3.c_block.b2_array[2].elem2; 42 _27.b1_array[3].elem1 = _3.c_block.b2_array[3].elem2; 43 _3.a_block = _27;
|
/third_party/boost/libs/lambda/test/ |
D | rvalue_test.cpp | 44 BOOST_TEST( _3( x, x, x ) == x ); in main() 45 BOOST_TEST( _3( x, x, y ) == y ); in main() 46 BOOST_TEST( _3( x, x, 2 ) == 2 ); in main() 48 BOOST_TEST( _3( x, 5, x ) == x ); in main() 49 BOOST_TEST( _3( x, 5, y ) == y ); in main() 50 BOOST_TEST( _3( x, 5, 2 ) == 2 ); in main() 52 BOOST_TEST( _3( 9, 5, x ) == x ); in main() 53 BOOST_TEST( _3( 9, 5, y ) == y ); in main() 54 BOOST_TEST( _3( 9, 5, 2 ) == 2 ); in main()
|
D | bind_tests_simple_f_refs.cpp | 106 BOOST_CHECK(bind(sum_of_args_3, _1, _2, _3)(i, j, k)==6); in test_main() 107 BOOST_CHECK(bind(sum_of_args_4, _1, _2, _3, 4)(i, j, k)==10); in test_main() 108 BOOST_CHECK(bind(sum_of_args_5, _1, _2, _3, 4, 5)(i, j, k)==15); in test_main() 109 BOOST_CHECK(bind(sum_of_args_6, _1, _2, _3, 4, 5, 6)(i, j, k)==21); in test_main() 110 BOOST_CHECK(bind(sum_of_args_7, _1, _2, _3, 4, 5, 6, 7)(i, j, k)==28); in test_main() 111 BOOST_CHECK(bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k)==36); in test_main() 112 BOOST_CHECK(bind(sum_of_args_9, _1, _2, _3, 4, 5, 6, 7, 8, 9)(i, j, k)==45); in test_main() 121 bind(sum_of_args_3, _1, _2, _3), // 6 in test_main() 122 bind(sum_of_args_4, _1, _2, _3, 4), // 10 in test_main() 123 bind(sum_of_args_5, _1, _2, _3, 4, 5), // 15 in test_main() [all …]
|
D | bind_tests_simple.cpp | 145 BOOST_CHECK(bind(&sum_of_args_3, _1, _2, _3)(i, j, k)==6); in test_main() 146 BOOST_CHECK(bind(&sum_of_args_4, _1, _2, _3, 4)(i, j, k)==10); in test_main() 147 BOOST_CHECK(bind(&sum_of_args_5, _1, _2, _3, 4, 5)(i, j, k)==15); in test_main() 148 BOOST_CHECK(bind(&sum_of_args_6, _1, _2, _3, 4, 5, 6)(i, j, k)==21); in test_main() 149 BOOST_CHECK(bind(&sum_of_args_7, _1, _2, _3, 4, 5, 6, 7)(i, j, k)==28); in test_main() 150 BOOST_CHECK(bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k)==36); in test_main() 151 BOOST_CHECK(bind(&sum_of_args_9, _1, _2, _3, 4, 5, 6, 7, 8, 9)(i, j, k)==45); in test_main() 160 bind(&sum_of_args_3, _1, _2, _3), // 6 in test_main() 161 bind(&sum_of_args_4, _1, _2, _3, 4), // 10 in test_main() 162 bind(&sum_of_args_5, _1, _2, _3, 4, 5), // 15 in test_main() [all …]
|
/third_party/boost/libs/phoenix/test/bll_compatibility/ |
D | rvalue_test.cpp | 44 BOOST_TEST( _3( x, x, x ) == x ); in main() 45 BOOST_TEST( _3( x, x, y ) == y ); in main() 46 BOOST_TEST( _3( x, x, 2 ) == 2 ); in main() 48 BOOST_TEST( _3( x, 5, x ) == x ); in main() 49 BOOST_TEST( _3( x, 5, y ) == y ); in main() 50 BOOST_TEST( _3( x, 5, 2 ) == 2 ); in main() 52 BOOST_TEST( _3( 9, 5, x ) == x ); in main() 53 BOOST_TEST( _3( 9, 5, y ) == y ); in main() 54 BOOST_TEST( _3( 9, 5, 2 ) == 2 ); in main()
|
D | bind_tests_simple_f_refs.cpp | 106 BOOST_TEST_EQ(bind(sum_of_args_3, _1, _2, _3)(i, j, k), 6); in main() 107 BOOST_TEST_EQ(bind(sum_of_args_4, _1, _2, _3, 4)(i, j, k), 10); in main() 108 BOOST_TEST_EQ(bind(sum_of_args_5, _1, _2, _3, 4, 5)(i, j, k), 15); in main() 109 BOOST_TEST_EQ(bind(sum_of_args_6, _1, _2, _3, 4, 5, 6)(i, j, k), 21); in main() 110 BOOST_TEST_EQ(bind(sum_of_args_7, _1, _2, _3, 4, 5, 6, 7)(i, j, k), 28); in main() 111 BOOST_TEST_EQ(bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k), 36); in main() 112 BOOST_TEST_EQ(bind(sum_of_args_9, _1, _2, _3, 4, 5, 6, 7, 8, 9)(i, j, k), 45); in main() 121 bind(sum_of_args_3, _1, _2, _3), // 6 in main() 122 bind(sum_of_args_4, _1, _2, _3, 4), // 10 in main() 123 bind(sum_of_args_5, _1, _2, _3, 4, 5), // 15 in main() [all …]
|
D | bind_tests_simple.cpp | 129 BOOST_TEST_EQ(bind(&sum_of_args_3, _1, _2, _3)(i, j, k), 6); in main() 130 BOOST_TEST_EQ(bind(&sum_of_args_4, _1, _2, _3, 4)(i, j, k), 10); in main() 131 BOOST_TEST_EQ(bind(&sum_of_args_5, _1, _2, _3, 4, 5)(i, j, k), 15); in main() 132 BOOST_TEST_EQ(bind(&sum_of_args_6, _1, _2, _3, 4, 5, 6)(i, j, k), 21); in main() 133 BOOST_TEST_EQ(bind(&sum_of_args_7, _1, _2, _3, 4, 5, 6, 7)(i, j, k), 28); in main() 134 BOOST_TEST_EQ(bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k), 36); in main() 135 BOOST_TEST_EQ(bind(&sum_of_args_9, _1, _2, _3, 4, 5, 6, 7, 8, 9)(i, j, k), 45); in main() 144 bind(&sum_of_args_3, _1, _2, _3), // 6 in main() 145 bind(&sum_of_args_4, _1, _2, _3, 4), // 10 in main() 146 bind(&sum_of_args_5, _1, _2, _3, 4, 5), // 15 in main() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/asm/comp/ |
D | bitfield-signed-operations.asm.comp | 1 RWByteAddressBuffer _3 : register(u0); 85 int4 _19 = int4(_3.Load4(0)); 86 uint4 _20 = _3.Load4(16); 87 _3.Store4(0, uint4(countbits(_19))); 88 _3.Store4(16, uint4(countbits(_19))); 89 _3.Store4(0, uint4(int4(countbits(_20)))); 90 _3.Store4(16, countbits(_20)); 91 _3.Store4(0, uint4(reversebits(_19))); 92 _3.Store4(16, reversebits(_20)); 93 _3.Store4(0, uint4(spvBitfieldSExtract(_19, 1, 11u))); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-hlsl/asm/frag/ |
D | cbuffer-stripped.asm.frag | 8 static float2 _3; 12 float2 _3 : SV_Target0; 17 _3 = mul(_5_m0, _5_m1); 24 stage_output._3 = _3;
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl/asm/frag/ |
D | cbuffer-stripped.asm.frag | 8 static float2 _3; 12 float2 _3 : SV_Target0; 23 _3 = _23(); 30 stage_output._3 = _3;
|
/third_party/boost/libs/bind/test/ |
D | bind_no_placeholders_test.cpp | 75 arg<3> _3; in function_test() local 86 BOOST_TEST( bind(f_3, _1, _2, _3)(1, 2, 3) == 321L ); in function_test() 87 BOOST_TEST( bind(f_4, _1, _2, _3, _4)(1, 2, 3, 4) == 4321L ); in function_test() 88 BOOST_TEST( bind(f_5, _1, _2, _3, _4, _5)(1, 2, 3, 4, 5) == 54321L ); in function_test() 89 BOOST_TEST( bind(f_6, _1, _2, _3, _4, _5, _6)(1, 2, 3, 4, 5, 6) == 654321L ); in function_test() 90 BOOST_TEST( bind(f_7, _1, _2, _3, _4, _5, _6, _7)(1, 2, 3, 4, 5, 6, 7) == 7654321L ); in function_test() 91 BOOST_TEST( bind(f_8, _1, _2, _3, _4, _5, _6, _7, _8)(1, 2, 3, 4, 5, 6, 7, 8) == 87654321L ); in function_test() 92 …BOOST_TEST( bind(f_9, _1, _2, _3, _4, _5, _6, _7, _8, _9)(1, 2, 3, 4, 5, 6, 7, 8, 9) == 987654321L… in function_test()
|
D | bind_type_test.cpp | 64 boost::bind( fv3, _1, _2, _3 )( X<1>(), X<2>(), X<3>() ); in test() 65 boost::bind( fv4, _1, _2, _3, _4 )( X<1>(), X<2>(), X<3>(), X<4>() ); in test() 66 boost::bind( fv5, _1, _2, _3, _4, _5 )( X<1>(), X<2>(), X<3>(), X<4>(), X<5>() ); in test() 67 boost::bind( fv6, _1, _2, _3, _4, _5, _6 )( X<1>(), X<2>(), X<3>(), X<4>(), X<5>(), X<6>() ); in test() 68 …boost::bind( fv7, _1, _2, _3, _4, _5, _6, _7 )( X<1>(), X<2>(), X<3>(), X<4>(), X<5>(), X<6>(), X<… in test() 69 …boost::bind( fv8, _1, _2, _3, _4, _5, _6, _7, _8 )( X<1>(), X<2>(), X<3>(), X<4>(), X<5>(), X<6>()… in test() 70 …boost::bind( fv9, _1, _2, _3, _4, _5, _6, _7, _8, _9 )( X<1>(), X<2>(), X<3>(), X<4>(), X<5>(), X<… in test()
|
D | bind_nested_rv_test.cpp | 129 …( boost::bind( f, _1, _2, _3 ) && boost::bind( f3, _1, _2, _3 ) )( boost::make_shared<int>( 1 ), b… in test() 135 …( boost::bind( f, _1, _2, _3 ) && boost::bind( f3, _1, _2, _3 ) )( boost::make_shared<int>( 1 ), b… in test() 141 …( boost::bind( f, _1, _2, _3, _4 ) && boost::bind( f4, _1, _2, _3, _4 ) )( boost::make_shared<int>… in test() 147 …( boost::bind( f, _1, _2, _3, _4, _5 ) && boost::bind( f5, _1, _2, _3, _4, _5 ) )( boost::make_sha… in test() 153 …( boost::bind( f, _1, _2, _3, _4, _5, _6 ) && boost::bind( f6, _1, _2, _3, _4, _5, _6 ) )( boost::… in test() 159 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7 ) && boost::bind( f7, _1, _2, _3, _4, _5, _6, _7 ) )(… in test() 165 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7, _8 ) && boost::bind( f8, _1, _2, _3, _4, _5, _6, _7,… in test() 171 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7, _8, _9 ) && boost::bind( f9, _1, _2, _3, _4, _5, _6,… in test()
|
D | bind_function2_test.cpp | 81 boost::function<void(int&, int, int)> fw3 = boost::bind( fv3, _1, _2, _3 ); in function_test() 86 boost::function<void(int&, int, int, int)> fw4 = boost::bind( fv4, _1, _2, _3, _4 ); in function_test() 91 … boost::function<void(int&, int, int, int, int)> fw5 = boost::bind( fv5, _1, _2, _3, _4, _5 ); in function_test() 96 …boost::function<void(int&, int, int, int, int, int)> fw6 = boost::bind( fv6, _1, _2, _3, _4, _5, _… in function_test() 101 …ion<void(int&, int, int, int, int, int, int)> fw7 = boost::bind( fv7, _1, _2, _3, _4, _5, _6, _7 ); in function_test() 106 …(int&, int, int, int, int, int, int, int)> fw8 = boost::bind( fv8, _1, _2, _3, _4, _5, _6, _7, _8 … in function_test() 111 …, int, int, int, int, int, int, int, int)> fw9 = boost::bind( fv9, _1, _2, _3, _4, _5, _6, _7, _8,… in function_test()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Print.hpp | 395 # define RR_GET_NTH_ARG(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, N, .… argument 414 # define RR_WATCH_FMT_3(_1, _2, _3) \ argument 416 "\n " #_3 ": {2}" 417 # define RR_WATCH_FMT_4(_1, _2, _3, _4) \ argument 418 RR_WATCH_FMT_3(_1, _2, _3) \ 420 # define RR_WATCH_FMT_5(_1, _2, _3, _4, _5) \ argument 421 RR_WATCH_FMT_4(_1, _2, _3, _4) \ 423 # define RR_WATCH_FMT_6(_1, _2, _3, _4, _5, _6) \ argument 424 RR_WATCH_FMT_5(_1, _2, _3, _4, _5) \ 426 # define RR_WATCH_FMT_7(_1, _2, _3, _4, _5, _6, _7) \ argument [all …]
|
/third_party/boost/boost/spirit/home/lex/lexer/lexertl/ |
D | wrap_action.hpp | 56 using phoenix::arg_names::_3; in call() 59 return phoenix::bind(pf, f, _1, _2, _3, _4, _5); in call() 80 using phoenix::arg_names::_3; in call() 83 return phoenix::bind(pf, f, _1, _2, _3, _4, _5); in call() 103 using phoenix::arg_names::_3; in call() 106 return phoenix::bind(pf, f, _1, _2, _3, _4, _5); in call() 129 using phoenix::arg_names::_3; in call() 132 return phoenix::bind(pf, f, _1, _2, _3, _4, _5); in call()
|
/third_party/jerryscript/jerry-core/jrt/ |
D | jrt.h | 38 #define JERRY_UNUSED_3(_1, _2, _3) JERRY_UNUSED (_1), JERRY_UNUSED_2 (_2, _3) argument 39 #define JERRY_UNUSED_4(_1, _2, _3, _4) JERRY_UNUSED (_1), JERRY_UNUSED_3 (_2, _3, _4) argument 40 #define JERRY_UNUSED_5(_1, _2, _3, _4, _5) JERRY_UNUSED (_1), JERRY_UNUSED_4 (_2, _3, _4, _5) argument 42 #define JERRY_VA_ARGS_NUM_IMPL(_1, _2, _3, _4, _5, N, ...) N argument
|
/third_party/boost/libs/phoenix/example/ |
D | invert.cpp | 124 using phoenix::placeholders::_3; in main() 129 print_expr(_1 + _2 - _3); in main() 131 print_expr(_1 * _2 / _3); in main() 132 print_expr(_1 * _2 + _3); in main() 133 print_expr(_1 * _2 - _3); in main() 134 print_expr(if_(_1 * _4)[_2 - _3]); in main() 136 print_expr(_1 * invert(_2 - _3)); in main()
|
D | parallel_for.cpp | 165 using boost::phoenix::arg_names::_3; in main() 182 let(_a = begin(_1), _b = begin(_2), _c = begin(_3)) in main() 189 , std::cout << accumulate(_3, 0) << "\n" in main() 199 let(_a = begin(_1), _b = begin(_2), _c = begin(_3)) in main() 205 , std::cout << accumulate(_3, 0) << "\n" in main() 216 let(_a = begin(_1), _b = begin(_2), _c = begin(_3)) in main() 222 , std::cout << accumulate(_3, 0) << "\n" in main() 233 let(_a = begin(_1), _b = begin(_2), _c = begin(_3)) in main() 242 , std::cout << accumulate(_3, 0) << "\n" in main()
|
/third_party/boost/libs/mpl/test/ |
D | bind.cpp | 53 typedef apply_wrap5< bind5<f5,_1,_2,_3,_4,_5>, void,void,void,void,int >::type r51; in MPL_TEST_CASE() 54 typedef apply_wrap5< bind5<f5,_5,_4,_3,_2,_1>, int,void,void,void,void >::type r52; in MPL_TEST_CASE() 71 typedef apply_wrap5< bind5<f5,_1,_2,_3,_4,bind1<f1,_1> >, int,void,void,void,void >::type r51; in MPL_TEST_CASE() 72 typedef apply_wrap5< bind5<f5,_1,_2,_3,_4,bind1<f1,_5> >, void,void,void,void,int >::type r52; in MPL_TEST_CASE() 82 typedef bind3< quote3<if_>, _1, bind1< quote1<next>, _2>, _3 > f; in MPL_TEST_CASE()
|
/third_party/boost/libs/phoenix/doc/examples/ |
D | transforming.qbk | 141 invert(_1 + _2 - _3); // --> _1 - _2 + _3 143 invert(_1 * _2 / _3); // --> _1 / _2 * _3 144 invert(_1 * _2 + _3); // --> _1 / _2 - _3 145 invert(_1 * _2 - _3); // --> _1 / _2 + _2 146 invert(if_(_1 * _4)[_2 - _3]); // --> if_(_1 / _4)[_2 + _3] 147 _1 * invert(_2 - _3)); // --> _1 * _2 + _3
|