HomeSort by relevance Sort by last modified time
    Searched refs:op1 (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/libxaac/decoder/
ixheaacd_basic_ops16.h 23 static PLATFORM_INLINE WORD16 ixheaacd_sat16(WORD32 op1) {
26 if (op1 > 0X00007fffL) {
28 } else if (op1 < (WORD32)0xffff8000L) {
31 var_out = (WORD16)(op1);
36 static PLATFORM_INLINE WORD16 ixheaacd_add16(WORD16 op1, WORD16 op2) {
39 var_out = ((WORD16)(op1 + op2));
43 static PLATFORM_INLINE WORD16 ixheaacd_add16_sat(WORD16 op1, WORD16 op2) {
47 sum = (WORD32)op1 + (WORD32)op2;
52 static PLATFORM_INLINE WORD16 ixheaacd_sub16(WORD16 op1, WORD16 op2) {
55 var_out = ((WORD16)(op1 - op2))
    [all...]
  /external/u-boot/drivers/bios_emulator/include/x86emu/
ops.h 42 extern void (*x86emu_optab[0x100])(u8 op1);
  /device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
core_cmSimd.h 135 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SADD8(uint32_t op1, uint32_t op2)
139 __ASM volatile ("sadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
143 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __QADD8(uint32_t op1, uint32_t op2)
147 __ASM volatile ("qadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
151 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __SHADD8(uint32_t op1, uint32_t op2)
155 __ASM volatile ("shadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
159 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UADD8(uint32_t op1, uint32_t op2)
163 __ASM volatile ("uadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
167 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __UQADD8(uint32_t op1, uint32_t op2)
171 __ASM volatile ("uqadd8 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) )
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator_addition.py 129 op1 = ops_to_try_at_this_tier.pop()
130 op2, adder = _pop_a_match_at_tier(op1, ops_to_try_at_this_tier, tier)
133 new_operator = adder.add(op1, op2, operator_name)
136 ops_to_try_at_next_tier.append(op1)
141 def _pop_a_match_at_tier(op1, operator_list, tier):
147 if adder.can_add(op1, op2):
152 def _infer_hints_allowing_override(op1, op2, hints):
153 """Infer hints from op1 and op2. hints argument is an override.
156 op1: LinearOperator
160 If some hint is None, try to set using op1 and op2. If th
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
OperationTest.java 56 Operation op1; local
58 op1 = TestUtil.constant(g, "op1", 1).op();
60 Operation op3 = new Operation(g, op1.getUnsafeNativeHandle());
61 Operation op4 = g.operation("op1");
62 assertEquals(op1, op1);
63 assertNotEquals(op1, op2);
64 assertEquals(op1, op3);
65 assertEquals(op1.hashCode(), op3.hashCode())
81 Operation op1 = TestUtil.constant(g, "op1", 1).op(); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
float16_gen.c 188 float op1 = half2float(a); local
190 return float2half(op1 + op2);
194 float op1 = half2float(a); local
196 return float2half(op1 - op2);
200 float op1 = half2float(a); local
202 return float2half(op1 * op2);
206 float op1 = half2float(a); local
208 return float2half(op1 / op2);
  /external/tensorflow/tensorflow/core/framework/
resource_op_kernel_test.cc 179 auto op1 = CreateOp(-333, "shared_stub"); local
181 ASSERT_TRUE(op1 != nullptr);
184 TF_EXPECT_OK(RunOpKernel(op1.get()));
186 EXPECT_EQ(op1->resource(), op2->resource());
190 auto op1 = CreateOp(-444, "shared_stub"); local
192 ASSERT_TRUE(op1 != nullptr);
195 TF_EXPECT_OK(RunOpKernel(op1.get()));
197 EXPECT_TRUE(op1->resource() != nullptr);
  /external/u-boot/drivers/bios_emulator/x86emu/
ops.c 172 op1 - Instruction op code
178 u8 op1)
185 M.x86.R_CS, M.x86.R_IP-1,op1));
204 void x86emuOp_genop_byte_RM_R(u8 op1)
211 op1 = (op1 >> 3) & 0x7;
214 DECODE_PRINTF(x86emu_GenOpName[op1]);
224 destval = genop_byte_operation[op1](destval, *srcreg);
234 *destreg = genop_byte_operation[op1](*destreg, *srcreg);
244 void x86emuOp_genop_word_RM_R(u8 op1)
    [all...]
  /external/tensorflow/tensorflow/core/api_def/
update_api_def.cc 94 // Returns true if summary and all descriptions are the same in op1
96 bool CheckDocsMatch(const OpDef& op1, const OpDef& op2) {
97 if (op1.summary() != op2.summary() ||
98 op1.description() != op2.description() ||
99 op1.input_arg_size() != op2.input_arg_size() ||
100 op1.output_arg_size() != op2.output_arg_size() ||
101 op1.attr_size() != op2.attr_size()) {
105 for (int i = 0; i < op1.input_arg_size(); ++i) {
106 if (op1.input_arg(i).description() != op2.input_arg(i).description()) {
110 for (int i = 0; i < op1.output_arg_size(); ++i)
    [all...]
  /external/u-boot/post/lib_powerpc/
cmp.c 27 extern void cpu_post_exec_12 (ulong *code, ulong *res, ulong op1, ulong op2);
32 ulong op1; member in struct:cpu_post_cmp_s
100 cpu_post_exec_12 (code, & res, test->op1, test->op2);
cmpi.c 27 extern void cpu_post_exec_11 (ulong *code, ulong *res, ulong op1);
32 ulong op1; member in struct:cpu_post_cmpi_s
100 cpu_post_exec_11 (code, & res, test->op1);
multi.c 24 extern void cpu_post_exec_02(ulong *code, ulong op1, ulong op2);
rlwimi.c 23 extern void cpu_post_exec_22 (ulong *code, ulong *cr, ulong *res, ulong op1,
31 ulong op1; member in struct:cpu_post_rlwimi_s
110 cpu_post_exec_22 (code, & cr, & res, test->op0, test->op1);
122 cpu_post_exec_22 (codecr, & cr, & res, test->op0, test->op1);
rlwinm.c 23 extern void cpu_post_exec_21 (ulong *code, ulong *cr, ulong *res, ulong op1);
29 ulong op1; member in struct:cpu_post_rlwinm_s
103 cpu_post_exec_21 (code, & cr, & res, test->op1);
115 cpu_post_exec_21 (codecr, & cr, & res, test->op1);
rlwnm.c 23 extern void cpu_post_exec_22 (ulong *code, ulong *cr, ulong *res, ulong op1,
30 ulong op1; member in struct:cpu_post_rlwnm_s
113 cpu_post_exec_22 (code, & cr, & res, test->op1, test->op2);
125 cpu_post_exec_22 (codecr, & cr, & res, test->op1, test->op2);
andi.c 29 ulong op1; member in struct:cpu_post_andi_s
84 cpu_post_exec_21 (codecr, & cr, & res, test->op1);
string.c 24 extern void cpu_post_exec_02 (ulong *code, ulong op1, ulong op2);
25 extern void cpu_post_exec_04 (ulong *code, ulong op1, ulong op2, ulong op3,
  /external/libgsm/add-test/
add_test.c 22 word op1, op2, expect; variable
25 word M_gsm_add P((word op1, word op2));
26 word M_gsm_sub P((word op1, word op2));
27 word M_gsm_mult P((word op1, word op2));
28 word M_gsm_mult_r P((word op1, word op2));
29 word M_gsm_abs P((word op1));
30 longword M_gsm_L_mult P((word op1, word op2));
31 longword M_gsm_L_add P((longword op1, longword op2));
105 op1 = op2 = L_op1 = L_op2 = 0;
108 op1 = L_op1 = value(s)
    [all...]
  /external/tensorflow/tensorflow/python/profiler/
pprof_profiler_test.py 52 op1 = test.mock.MagicMock()
53 op1.name = 'Add/123'
54 op1.traceback = [('a/b/file1', 10, 'some_var')]
55 op1.type = 'add'
56 graph.get_operations.return_value = [op1]
80 op1 = test.mock.MagicMock()
81 op1.name = 'Add/123'
82 op1.traceback = [
84 op1.type = 'add'
85 graph.get_operations.return_value = [op1]
    [all...]
  /external/v8/src/s390/
assembler-s390-inl.h 244 Opcode op1 = Instruction::S390OpcodeValue(reinterpret_cast<const byte*>(pc)); local
248 if (BRASL == op1 || BRCL == op1) {
261 if (IIHF == op1 && IILF == op2) {
267 if (IILF == op1 || CFI == op1) {
305 Opcode op1 = Instruction::S390OpcodeValue(reinterpret_cast<const byte*>(pc)); local
310 if (BRASL == op1 || BRCL == op1) {
330 if (IIHF == op1 && IILF == op2)
    [all...]
  /external/tensorflow/tensorflow/python/data/kernel_tests/
test_base.py 173 op1 = self.evaluate(next1())
180 op1 = nest.flatten(op1)
182 assert len(op1) == len(op2)
183 for i in range(len(op1)):
184 if sparse_tensor.is_sparse(op1[i]):
185 self.assertSparseValuesEqual(op1[i], op2[i])
187 self.assertAllEqual(op1[i], op2[i])
189 self.assertAllClose(op1[i], op2[i])
  /external/v8/src/arm64/
utils-arm64.h 118 inline double FusedMultiplyAdd(double op1, double op2, double a) {
119 return fma(op1, op2, a);
123 inline float FusedMultiplyAdd(float op1, float op2, float a) {
124 return fmaf(op1, op2, a);
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
shuffle_select_fuzz_tester.py 121 def __init__(self, name, ty, op0, op1, mask):
124 self.op1 = op1 # Value
135 shuf_template = ' {name} = shufflevector {ty} {op0}, {ty} {op1}, <{num} x i32> {mask}\n'
137 def __init__(self, name, ty, op0, op1, mask):
138 Instruction.__init__(self, '%shuf' + name, ty, op0, op1, mask)
144 op1 = self.op1.name, num = self.ty.elt_num, mask = str_mask)
159 result.append(self.op1.value[index])
169 sel_template = ' {name} = select <{num} x i1> {mask}, {ty} {op0}, {ty} {op1}\n
    [all...]
  /external/fonttools/Lib/fontTools/cffLib/
specializer.py 458 op1,args1 = commands[i-1]
463 if {op1, op2} <= {'rlineto', 'rrcurveto'}:
464 if op1 == op2:
465 new_op = op1
472 elif (op1, op2) in {('rlineto', 'rlinecurve'), ('rrcurveto', 'rcurveline')}:
475 elif {op1, op2} == {'vlineto', 'hlineto'}:
476 new_op = op1
478 elif 'curveto' == op1[2:] == op2[2:]:
479 d0, d1 = op1[:2]
515 op0, op1 = op[:2
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/python/kernel_tests/
stats_accumulator_ops_test.py 38 op1 = accumulator.add(
46 with ops.control_dependencies([op1, op2]):
66 op1 = accumulator.add(
74 with ops.control_dependencies([op1, op2]):
95 op1 = accumulator.add(
108 with ops.control_dependencies([op1, op2]):
127 op1 = accumulator.add(
134 with ops.control_dependencies([op1]):
169 op1 = accumulator.add(
176 with ops.control_dependencies([op1])
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 7 8