Home
last modified time | relevance | path

Searched refs:op2 (Results 1 – 25 of 161) sorted by relevance

1234567

/third_party/optimized-routines/math/test/testcases/directed/
Dpow.tst6 func=pow op1=00000000.00000000 op2=00000000.00000000 result=3ff00000.00000000 errno=0
7 func=pow op1=00000000.00000000 op2=00000000.00000001 result=00000000.00000000 errno=0
8 func=pow op1=00000000.00000000 op2=00100000.00000000 result=00000000.00000000 errno=0
9 func=pow op1=00000000.00000000 op2=1fffffff.ffffffff result=00000000.00000000 errno=0
10 func=pow op1=00000000.00000000 op2=3bdfffff.ffffffff result=00000000.00000000 errno=0
11 func=pow op1=00000000.00000000 op2=3be00000.00000000 result=00000000.00000000 errno=0
12 func=pow op1=00000000.00000000 op2=3fe00000.00000000 result=00000000.00000000 errno=0
13 func=pow op1=00000000.00000000 op2=3ff00000.00000000 result=00000000.00000000 errno=0
14 func=pow op1=00000000.00000000 op2=40000000.00000000 result=00000000.00000000 errno=0
15 func=pow op1=00000000.00000000 op2=40080000.00000000 result=00000000.00000000 errno=0
[all …]
Dpowf.tst6 func=powf op1=7f800001 op2=7f800001 result=7fc00001 errno=0 status=i
7 func=powf op1=7f800001 op2=ff800001 result=7fc00001 errno=0 status=i
8 func=powf op1=7f800001 op2=7fc00001 result=7fc00001 errno=0 status=i
9 func=powf op1=7f800001 op2=ffc00001 result=7fc00001 errno=0 status=i
10 func=powf op1=7f800001 op2=7f800000 result=7fc00001 errno=0 status=i
11 func=powf op1=7f800001 op2=40800000 result=7fc00001 errno=0 status=i
12 func=powf op1=7f800001 op2=40400000 result=7fc00001 errno=0 status=i
13 func=powf op1=7f800001 op2=3f000000 result=7fc00001 errno=0 status=i
14 func=powf op1=7f800001 op2=00000000 result=7fc00001 errno=0 status=i
15 func=powf op1=7f800001 op2=80000000 result=7fc00001 errno=0 status=i
[all …]
/third_party/cmsis/CMSIS/Core/Include/
Dcmsis_armclang_ltm.h258 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() argument
260 op2 %= 32U; in __ROR()
261 if (op2 == 0U) in __ROR()
265 return (op1 >> op2) | (op1 << (32U - op2)); in __ROR()
1398 __STATIC_FORCEINLINE uint32_t __SADD8(uint32_t op1, uint32_t op2) in __SADD8() argument
1402 __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __SADD8()
1406 __STATIC_FORCEINLINE uint32_t __QADD8(uint32_t op1, uint32_t op2) in __QADD8() argument
1410 __ASM volatile ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __QADD8()
1414 __STATIC_FORCEINLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2) in __SHADD8() argument
1418 __ASM volatile ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __SHADD8()
[all …]
Dcmsis_gcc.h346 __STATIC_FORCEINLINE uint32_t __ROR(uint32_t op1, uint32_t op2) in __ROR() argument
348 op2 %= 32U; in __ROR()
349 if (op2 == 0U) in __ROR()
353 return (op1 >> op2) | (op1 << (32U - op2)); in __ROR()
1643 __STATIC_FORCEINLINE uint32_t __SADD8(uint32_t op1, uint32_t op2) in __SADD8() argument
1647 __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __SADD8()
1651 __STATIC_FORCEINLINE uint32_t __QADD8(uint32_t op1, uint32_t op2) in __QADD8() argument
1655 __ASM ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __QADD8()
1659 __STATIC_FORCEINLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2) in __SHADD8() argument
1663 __ASM ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) ); in __SHADD8()
[all …]
/third_party/boost/boost/gil/
Dcolor_base_algorithm.hpp282 Op op2(element_recursion<N-1>::static_for_each(p1,op)); in static_for_each() local
283 op2(semantic_at_c<N-1>(p1)); in static_for_each()
284 return op2; in static_for_each()
288 Op op2(element_recursion<N-1>::static_for_each(p1,op)); in static_for_each() local
289 op2(semantic_at_c<N-1>(p1)); in static_for_each()
290 return op2; in static_for_each()
295 Op op2(element_recursion<N-1>::static_for_each(p1,p2,op)); in static_for_each() local
296 op2(semantic_at_c<N-1>(p1), semantic_at_c<N-1>(p2)); in static_for_each()
297 return op2; in static_for_each()
301 Op op2(element_recursion<N-1>::static_for_each(p1,p2,op)); in static_for_each() local
[all …]
/third_party/boost/libs/iostreams/test/
Doperation_sequence_test.cpp60 operation op2 = seq.new_operation(2); in operation_sequence_test() local
62 BOOST_CHECK_NO_THROW(op2.execute()); in operation_sequence_test()
83 operation op2 = seq.new_operation(2); in operation_sequence_test() local
89 BOOST_CHECK_NO_THROW(op2.execute()); in operation_sequence_test()
97 operation op2 = seq.new_operation(2); in operation_sequence_test() local
104 op2.execute(); in operation_sequence_test()
114 op2.execute(); in operation_sequence_test()
124 operation op2 = seq.new_operation(2); in operation_sequence_test() local
132 op2.execute(); in operation_sequence_test()
142 op2.execute(); in operation_sequence_test()
[all …]
/third_party/boost/libs/locale/src/shared/
Dmo_lambda.cpp44 op2(p2) in binary()
48 plural_ptr op1,op2; member
96 return (*op1)(n) oper (*op2)(n); \
101 plural_ptr op2_copy(op2->clone()); \
115 int v2=(*op2)(n); \
121 plural_ptr op2_copy(op2->clone()); \
173 op2(p2), in conditional()
179 return (*op1)(n) ? (*op2)(n) : (*op3)(n); in operator ()()
184 plural_ptr op2_copy(op2->clone()); in clone()
189 plural_ptr op1,op2,op3; member
[all …]
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_address.c99 nir_ssa_scalar op2 = nir_ssa_scalar_chase_alu_src(address->B, 1); in mir_match_iadd() local
104 address->B = op2; in mir_match_iadd()
105 } else if (nir_ssa_scalar_is_const(op2) && in mir_match_iadd()
106 nir_ssa_scalar_as_uint(op2) <= MAX_POSITIVE_OFFSET) { in mir_match_iadd()
107 address->bias += nir_ssa_scalar_as_uint(op2); in mir_match_iadd()
110 !nir_ssa_scalar_is_const(op2) && in mir_match_iadd()
113 address->B = op2; in mir_match_iadd()
169 nir_ssa_scalar op2 = nir_ssa_scalar_chase_alu_src(address->B, 1); in mir_match_ishl() local
171 if (!nir_ssa_scalar_is_const(op2)) return; in mir_match_ishl()
173 unsigned shift = nir_ssa_scalar_as_uint(op2); in mir_match_ishl()
/third_party/mesa3d/src/intel/compiler/
Dbrw_nir_lower_conversions.c54 split_conversion(nir_builder *b, nir_alu_instr *alu, nir_op op1, nir_op op2) in split_conversion() argument
60 nir_ssa_def *res = nir_build_alu(b, op2, tmp, NULL, NULL, NULL); in split_conversion()
94 nir_op op2 = get_conversion_op(nir_type_float, 32, in lower_alu_instr() local
97 split_conversion(b, alu, op1, op2); in lower_alu_instr()
119 nir_op op2 = get_conversion_op(dst_type, 32, dst_type, dst_bit_size, in lower_alu_instr() local
121 split_conversion(b, alu, op1, op2); in lower_alu_instr()
/third_party/mindspore/tests/ut/cpp/dataset/
Dalbum_op_test.cc72 std::shared_ptr<RepeatOp> op2 = Repeat(2); in TEST_F() local
75 std::shared_ptr<ExecutionTree> tree = Build({op1, op2}); in TEST_F()
98 std::shared_ptr<RepeatOp> op2 = Repeat(2); in TEST_F() local
101 std::shared_ptr<ExecutionTree> tree = Build({op1, op2}); in TEST_F()
125 std::shared_ptr<RepeatOp> op2 = Repeat(2); in TEST_F() local
128 std::shared_ptr<ExecutionTree> tree = Build({op1, op2}); in TEST_F()
154 std::shared_ptr<RepeatOp> op2 = Repeat(2); in TEST_F() local
157 std::shared_ptr<ExecutionTree> tree = Build({op1, op2}); in TEST_F()
Dbatch_op_test.cc87 auto op2 = Repeat(2); in TEST_F() local
91 auto tree = Build({op1, op2, op3}); in TEST_F()
137 auto op2 = Repeat(2); in TEST_F() local
141 auto tree = Build({op1, op2, op3}); in TEST_F()
194 auto op2 = Batch(7, false); in TEST_F() local
198 op2->SetTotalRepeats(2); in TEST_F()
199 op2->SetNumRepeatsPerEpoch(2); in TEST_F()
200 auto tree = Build({op1, op2, op3}); in TEST_F()
247 auto op2 = Batch(5, true); in TEST_F() local
251 op2->SetTotalRepeats(2); in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dparser_test.js101 let op2 = inst.operand(2); variable
102 assert.equal(op2.name(), "int");
103 assert.equal(op2.value(), 4);
184 let op2 = inst.operand(2);
185 assert.equal(op2.value(), 0.400000006);
208 let op2 = inst.operand(2);
209 assert.equal(op2.value(), results[idx]);
225 let op2 = inst.operand(2);
226 assert.equal(op2.value(), 1);
227 assert.equal(op2.type(), "float");
[all …]
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dparser_test.js101 let op2 = inst.operand(2); variable
102 assert.equal(op2.name(), "int");
103 assert.equal(op2.value(), 4);
184 let op2 = inst.operand(2);
185 assert.equal(op2.value(), 0.400000006);
208 let op2 = inst.operand(2);
209 assert.equal(op2.value(), results[idx]);
225 let op2 = inst.operand(2);
226 assert.equal(op2.value(), 1);
227 assert.equal(op2.type(), "float");
[all …]
/third_party/spirv-tools/tools/sva/src/
Dparser_test.js101 let op2 = inst.operand(2); variable
102 assert.equal(op2.name(), "int");
103 assert.equal(op2.value(), 4);
184 let op2 = inst.operand(2);
185 assert.equal(op2.value(), 0.400000006);
208 let op2 = inst.operand(2);
209 assert.equal(op2.value(), results[idx]);
225 let op2 = inst.operand(2);
226 assert.equal(op2.value(), 1);
227 assert.equal(op2.type(), "float");
[all …]
/third_party/libunwind/src/arm/
DGex_tables.c177 uint8_t op2 = READ_OP (); in arm_exidx_decode() local
178 if (op == 0x80 && op2 == 0x00) in arm_exidx_decode()
183 edata.data = ((op & 0xf) << 8) | op2; in arm_exidx_decode()
213 uint8_t op2 = READ_OP (); in arm_exidx_decode() local
214 if (op2 == 0 || (op2 & 0xf0)) in arm_exidx_decode()
219 edata.data = op2 & 0x0f; in arm_exidx_decode()
264 uint8_t op2 = READ_OP (); in arm_exidx_decode() local
265 if (op2 == 0 || (op2 & 0xf0)) in arm_exidx_decode()
270 edata.data = op2 & 0x0f; in arm_exidx_decode()
/third_party/boost/libs/test/doc/testing_tools/
Dboost_test_technical_details.qbk22 a op1 b op2 c op3 d
26 ( seed a ) op1 b op2 c op3 d
30 operations `op1`, `op2` ... are /chained/ to the right of this expression object:
47 Let's suppose `op2` below has higher precedence than `op1`, then
49 a op1 b op2 c
53 create-expression(create-expression(a), op1, (b op2 c))
55 …In the above statement, the final expression can only see the result of `(b op2 c)` to its right, …
/third_party/boost/boost/geometry/algorithms/detail/overlay/
Dget_turn_info_for_endpoint.hpp397 operation_type & op1, operation_type & op2) in handle_internal()
419 op2 = operation_none; in handle_internal()
436 || op2 != operation_union in handle_internal()
443 op2 = opposite ? operation_union : operation_intersection; in handle_internal()
470 op2 = operation_none; in handle_internal()
487 || op2 != operation_union in handle_internal()
494 op2 = second_going_out ? operation_union : operation_intersection; in handle_internal()
634 operation_type const op2) in operations_combination()
636 return ( operations.first == op1 && operations.second == op2 ) in operations_combination()
637 || ( operations.first == op2 && operations.second == op1 ); in operations_combination()
/third_party/ffmpeg/libavcodec/
Dmpegaudiodsp_template.c95 #define SUM8P2(sum1, op1, sum2, op2, w1, w2, p) \ argument
100 op2(sum2, (w2)[0 * 64], tmp);\
103 op2(sum2, (w2)[1 * 64], tmp);\
106 op2(sum2, (w2)[2 * 64], tmp);\
109 op2(sum2, (w2)[3 * 64], tmp);\
112 op2(sum2, (w2)[4 * 64], tmp);\
115 op2(sum2, (w2)[5 * 64], tmp);\
118 op2(sum2, (w2)[6 * 64], tmp);\
121 op2(sum2, (w2)[7 * 64], tmp);\
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
Dpeeling_pass.cpp35 const std::string& op2) { in AssembleAndRunPeelingTest() argument
61 res_id + " = " + opcode_str + " %bool " + op1 + " " + op2 + "\n"; in AssembleAndRunPeelingTest()
73 const std::string& res_id, const std::string& op1, const std::string& op2, in RunPeelingTest() argument
76 text_head, text_tail, opcode, res_id, op1, op2); in RunPeelingTest()
91 const std::string& op2, in BuildAndCheckTrace() argument
94 auto stats = RunPeelingTest(text_head, text_tail, opcode, res_id, op1, op2, in BuildAndCheckTrace()
208 const std::string& op2) { in TEST_F() argument
210 RunPeelingTest(text_head, text_tail, opcode, "%22", op1, op2, 2); in TEST_F()
677 const std::string& op2, in TEST_F()
679 BuildAndCheckTrace(text_head, text_tail, opcode, "%22", op1, op2, in TEST_F()
[all …]
/third_party/spirv-tools/test/opt/loop_optimizations/
Dpeeling_pass.cpp35 const std::string& op2) { in AssembleAndRunPeelingTest() argument
61 res_id + " = " + opcode_str + " %bool " + op1 + " " + op2 + "\n"; in AssembleAndRunPeelingTest()
73 const std::string& res_id, const std::string& op1, const std::string& op2, in RunPeelingTest() argument
76 text_head, text_tail, opcode, res_id, op1, op2); in RunPeelingTest()
91 const std::string& op2, in BuildAndCheckTrace() argument
94 auto stats = RunPeelingTest(text_head, text_tail, opcode, res_id, op1, op2, in BuildAndCheckTrace()
208 const std::string& op2) { in TEST_F() argument
210 RunPeelingTest(text_head, text_tail, opcode, "%22", op1, op2, 2); in TEST_F()
677 const std::string& op2, in TEST_F()
679 BuildAndCheckTrace(text_head, text_tail, opcode, "%22", op1, op2, in TEST_F()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/opt/loop_optimizations/
Dpeeling_pass.cpp35 const std::string& op2) { in AssembleAndRunPeelingTest() argument
61 res_id + " = " + opcode_str + " %bool " + op1 + " " + op2 + "\n"; in AssembleAndRunPeelingTest()
73 const std::string& res_id, const std::string& op1, const std::string& op2, in RunPeelingTest() argument
76 text_head, text_tail, opcode, res_id, op1, op2); in RunPeelingTest()
91 const std::string& op2, in BuildAndCheckTrace() argument
94 auto stats = RunPeelingTest(text_head, text_tail, opcode, res_id, op1, op2, in BuildAndCheckTrace()
208 const std::string& op2) { in TEST_F() argument
210 RunPeelingTest(text_head, text_tail, opcode, "%22", op1, op2, 2); in TEST_F()
677 const std::string& op2, in TEST_F()
679 BuildAndCheckTrace(text_head, text_tail, opcode, "%22", op1, op2, in TEST_F()
[all …]
/third_party/python/Tools/scripts/
Danalyze_dxp.py107 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
110 for op2, count in enumerate(op1profile)
/third_party/boost/libs/test/doc/examples/
Dexample82_contexts.run-fail.cpp17 bool op2(int, int) { return level < 1; } in op2() function
27 BOOST_TEST(processor.op2(i, j)); in test_operations()
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/combined_operations/
Dnotxor.amber24 uint op2;
29 out_color = vec4(~(pushConstants.op1^pushConstants.op2));
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_builder.h294 Instruction* AddIAdd(uint32_t type, uint32_t op1, uint32_t op2) { in AddIAdd() argument
298 {{SPV_OPERAND_TYPE_ID, {op1}}, {SPV_OPERAND_TYPE_ID, {op2}}})); in AddIAdd()
306 Instruction* AddULessThan(uint32_t op1, uint32_t op2) { in AddULessThan() argument
312 {{SPV_OPERAND_TYPE_ID, {op1}}, {SPV_OPERAND_TYPE_ID, {op2}}})); in AddULessThan()
320 Instruction* AddSLessThan(uint32_t op1, uint32_t op2) { in AddSLessThan() argument
326 {{SPV_OPERAND_TYPE_ID, {op1}}, {SPV_OPERAND_TYPE_ID, {op2}}})); in AddSLessThan()
334 Instruction* AddLessThan(uint32_t op1, uint32_t op2) { in AddLessThan() argument
342 return AddSLessThan(op1, op2); in AddLessThan()
344 return AddULessThan(op1, op2); in AddLessThan()

1234567