Searched refs:op1 (Results 26 - 50 of 167) sorted by relevance

1234567

/external/valgrind/none/tests/s390x/
H A Dcomp-1.c14 #define RIL_RI(op1,r1,op2,i2) \
15 ".short 0x" #op1 #r1 #op2 "\n\t" \
24 int64_t op1 = v1; \
30 : "d" (op1), "d" (op2) \
33 #insn, op1, op2, cc); \
41 int64_t op1 = v1; \
47 : "d" (op1), "Q" (op2) \
50 #insn, op1, (int64_t)op2, cc); \
58 register int64_t op1 asm("8") = v1; \
63 : "d" (op1) \
[all...]
H A Dcomp-2.c14 #define RIL_RU(op1,r1,op2,i2) \
15 ".short 0x" #op1 #r1 #op2 "\n\t" \
24 uint64_t op1 = v1; \
30 : "d" (op1), "d" (op2) \
33 #insn, op1, op2, cc); \
41 uint64_t op1 = v1; \
47 : "d" (op1), "Q" (op2) \
50 #insn, op1, (uint64_t)op2, cc); \
58 register uint64_t op1 asm("8") = v1; \
63 : "d" (op1) \
[all...]
H A Dopcodes.h19 #define RIL_RI(op1,r1,op2,i2) \
20 ".short 0x" #op1 #r1 #op2 "\n\t" \
22 #define RIE_RRI0(op1,r1,r3,i2,u0,op2) \
23 ".short 0x" #op1 #r1 #r3 "\n\t" \
26 #define SIY_IRD(op1,i2,b1,dl1,dh1,op2) \
27 ".short 0x" #op1 #i2 "\n\t" \
29 #define RXY_RRRD(op1,r1,x2,b2,dl2,dh2,op2) \
30 ".short 0x" #op1 #r1 #x2 "\n\t" \
32 #define RIL_RU(op1,r1,op2,i2) \
33 ".short 0x" #op1 #r
[all...]
H A Ddfp-3.c12 #define CMP_DFP(insn, op1, op2, type, cc) \
14 register type d1 asm("f0") = op1; \
/external/libgsm/add-test/
H A Dadd_test.c22 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
317 M_gsm_add(op1, op2),word op1, word op2 argument
323 M_gsm_sub(op1, op2), word op1, word op2 argument
329 M_gsm_mult(op1, op2), word op1, word op2 argument
334 M_gsm_mult_r(op1, op2), word op1, word op2 argument
339 M_gsm_abs(op1), word op1 argument
344 M_gsm_L_mult(op1, op2), word op1, word op2 argument
349 M_gsm_L_add(op1, op2), longword op1, longword op2 argument
[all...]
/external/python/cpython2/Tools/scripts/
H A Danalyze_dxp.py108 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
110 for op1, op1profile in enumerate(profile[:-1])
/external/python/cpython3/Tools/scripts/
H A Danalyze_dxp.py107 result = [((op1, op2), (opcode.opname[op1], opcode.opname[op2]), count)
109 for op1, op1profile in enumerate(profile[:-1])
/external/v8/src/arm64/
H A Dutils-arm64.h126 inline double FusedMultiplyAdd(double op1, double op2, double a) { argument
127 return fma(op1, op2, a);
131 inline float FusedMultiplyAdd(float op1, float op2, float a) { argument
132 return fmaf(op1, op2, a);
/external/tensorflow/tensorflow/contrib/boosted_trees/python/kernel_tests/
H A Dstats_accumulator_ops_test.py38 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...]
/external/tensorflow/tensorflow/python/debug/cli/
H A Dprofile_analyzer_cli_test.py102 op1 = test.mock.MagicMock()
103 op1.name = "Add/123"
104 op1.traceback = [("a/b/file1", 10, "some_var")]
105 op1.type = "add"
110 graph.get_operations.return_value = [op1, op2]
199 op1 = test.mock.MagicMock()
200 op1.name = "Add/123"
201 op1.traceback = [("a/b/file2", 10, "some_var")]
202 op1.type = "add"
207 graph.get_operations.return_value = [op1, op
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_channel_expressions.cpp305 ir_rvalue *op1 = get_element(op_var[1], i); local
310 op1));
318 ir_rvalue *op1 = get_element(op_var[1], i); local
324 op1);
343 ir_rvalue *op1 = get_element(op_var[1], i); local
355 op1);
381 ir_rvalue *op1 = get_element(op_var[1], i); local
387 op1,
395 ir_rvalue *op1 = get_element(op_var[1], i); local
402 op1,
[all...]
/external/valgrind/VEX/priv/
H A Dguest_s390_toIR.c161 binop(IROp kind, IRExpr *op1, IRExpr *op2) argument
163 return IRExpr_Binop(kind, op1, op2);
168 triop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3) argument
170 return IRExpr_Triop(kind, op1, op2, op3);
175 qop(IROp kind, IRExpr *op1, IRExpr *op2, IRExpr *op3, IRExpr *op4) argument
177 return IRExpr_Qop(kind, op1, op2, op3, op4);
785 s390_call_calculate_icc(UInt m, UInt opc, IRTemp op1, IRTemp op2) argument
791 dep1 = s390_cc_widen(op1, True);
796 dep1 = s390_cc_widen(op1, False);
2600 IRTemp op1 local
2616 IRTemp op1 = newTemp(Ity_I64); local
2632 IRTemp op1 = newTemp(Ity_I64); local
2680 IRTemp op1 = newTemp(Ity_I32); local
2696 IRTemp op1 = newTemp(Ity_I32); local
2712 IRTemp op1 = newTemp(Ity_I64); local
2728 IRTemp op1 = newTemp(Ity_I64); local
2744 IRTemp op1 = newTemp(Ity_I32); local
2761 IRTemp op1 = newTemp(Ity_I64); local
2812 IRTemp op1 = newTemp(Ity_I32); local
2829 IRTemp op1 = newTemp(Ity_I64); local
2846 IRTemp op1 = newTemp(Ity_I32); local
2862 IRTemp op1 = newTemp(Ity_I32); local
2878 IRTemp op1 = newTemp(Ity_I32); local
2895 IRTemp op1 = newTemp(Ity_I64); local
2944 IRTemp op1 = newTemp(Ity_I32); local
2961 IRTemp op1 = newTemp(Ity_I32); local
2977 IRTemp op1 = newTemp(Ity_I64); local
2993 IRTemp op1 = newTemp(Ity_I64); local
3041 IRTemp op1 = newTemp(Ity_I32); local
3057 IRTemp op1 = newTemp(Ity_I32); local
3073 IRTemp op1 = newTemp(Ity_I64); local
3089 IRTemp op1 = newTemp(Ity_I64); local
3105 IRTemp op1 = newTemp(Ity_I32); local
3122 IRTemp op1 = newTemp(Ity_I64); local
3171 IRTemp op1 = newTemp(Ity_I32); local
3190 IRTemp op1 = newTemp(Ity_I64); local
3210 IRTemp op1 = newTemp(Ity_I32); local
3229 IRTemp op1 = newTemp(Ity_I64); local
3249 IRTemp op1 = newTemp(Ity_I32); local
3266 IRTemp op1 = newTemp(Ity_I64); local
3317 IRTemp op1 = newTemp(Ity_I32); local
3334 IRTemp op1 = newTemp(Ity_I32); local
3349 IRTemp op1 = newTemp(Ity_I32); local
3365 IRTemp op1 = newTemp(Ity_I64); local
3413 IRTemp op1 = newTemp(Ity_I32); local
3429 IRTemp op1 = newTemp(Ity_I32); local
3445 IRTemp op1 = newTemp(Ity_I64); local
3461 IRTemp op1 = newTemp(Ity_I8); local
3477 IRTemp op1 = newTemp(Ity_I8); local
3493 IRTemp op1 = newTemp(Ity_I32); local
3509 IRTemp op1 = newTemp(Ity_I16); local
3525 IRTemp op1 = newTemp(Ity_I16); local
3541 IRTemp op1 = newTemp(Ity_I32); local
3557 IRTemp op1 = newTemp(Ity_I16); local
3573 IRTemp op1 = newTemp(Ity_I16); local
3908 IRTemp op1 = newTemp(Ity_I32); local
3921 IRTemp op1 = newTemp(Ity_I64); local
3934 IRTemp op1 = newTemp(Ity_I64); local
3947 IRTemp op1 = newTemp(Ity_I32); local
3960 IRTemp op1 = newTemp(Ity_I32); local
3973 IRTemp op1 = newTemp(Ity_I64); local
3986 IRTemp op1 = newTemp(Ity_I64); local
3999 IRTemp op1 = newTemp(Ity_I32); local
4013 IRTemp op1 = newTemp(Ity_I64); local
4027 IRTemp op1 = newTemp(Ity_I32); local
4041 IRTemp op1 = newTemp(Ity_I64); local
4055 IRTemp op1 = newTemp(Ity_I64); local
4069 IRTemp op1 = newTemp(Ity_I32); local
4093 IRTemp op1 = newTemp(Ity_I64); local
4117 IRTemp op1 = newTemp(Ity_I32); local
4143 IRTemp op1 = newTemp(Ity_I64); local
4169 IRTemp op1 = newTemp(Ity_I32); local
4193 IRTemp op1 = newTemp(Ity_I64); local
4217 IRTemp op1 = newTemp(Ity_I32); local
4242 IRTemp op1 = newTemp(Ity_I64); local
4267 IRTemp op1 = newTemp(Ity_I32); local
4280 IRTemp op1 = newTemp(Ity_I32); local
4293 IRTemp op1 = newTemp(Ity_I64); local
4306 IRTemp op1 = newTemp(Ity_I32); local
4320 IRTemp op1 = newTemp(Ity_I64); local
4334 IRTemp op1 = newTemp(Ity_I16); local
4348 IRTemp op1 = newTemp(Ity_I32); local
4362 IRTemp op1 = newTemp(Ity_I64); local
4376 IRTemp op1 = newTemp(Ity_I32); local
4390 IRTemp op1 = newTemp(Ity_I64); local
4404 IRTemp op1 = newTemp(Ity_I32); local
4417 IRTemp op1 = newTemp(Ity_I32); local
4430 IRTemp op1 = newTemp(Ity_I32); local
4443 IRTemp op1 = newTemp(Ity_I32); local
4457 IRTemp op1 = newTemp(Ity_I32); local
4470 IRTemp op1 = newTemp(Ity_I64); local
4483 IRTemp op1 = newTemp(Ity_I64); local
4496 IRTemp op1 = newTemp(Ity_I32); local
4509 IRTemp op1 = newTemp(Ity_I32); local
4522 IRTemp op1 = newTemp(Ity_I64); local
4535 IRTemp op1 = newTemp(Ity_I64); local
4548 IRTemp op1 = newTemp(Ity_I32); local
4562 IRTemp op1 = newTemp(Ity_I64); local
4576 IRTemp op1 = newTemp(Ity_I8); local
4590 IRTemp op1 = newTemp(Ity_I8); local
4604 IRTemp op1 = newTemp(Ity_I32); local
4618 IRTemp op1 = newTemp(Ity_I64); local
4632 IRTemp op1 = newTemp(Ity_I16); local
4646 IRTemp op1 = newTemp(Ity_I32); local
4660 IRTemp op1 = newTemp(Ity_I64); local
4674 IRTemp op1 = newTemp(Ity_I64); local
4688 IRTemp op1 = newTemp(Ity_I32); local
4702 IRTemp op1 = newTemp(Ity_I64); local
4716 IRTemp op1 = newTemp(Ity_I32); local
4740 IRTemp op1 = newTemp(Ity_I64); local
4764 IRTemp op1 = newTemp(Ity_I32); local
4789 IRTemp op1 = newTemp(Ity_I64); local
4814 IRTemp op1 = newTemp(Ity_I32); local
4838 IRTemp op1 = newTemp(Ity_I64); local
4862 IRTemp op1 = newTemp(Ity_I32); local
4887 IRTemp op1 = newTemp(Ity_I64); local
4912 IRTemp op1 = newTemp(Ity_I32); local
4974 IRTemp op1 = newTemp(Ity_I32); local
5036 IRTemp op1 = newTemp(Ity_I32); local
5098 IRTemp op1 = newTemp(Ity_I32); local
5111 IRTemp op1 = newTemp(Ity_I32); local
5124 IRTemp op1 = newTemp(Ity_I32); local
5137 IRTemp op1 = newTemp(Ity_I32); local
5161 IRTemp op1 = newTemp(Ity_I32); local
5181 IRTemp op1 = newTemp(Ity_I64); local
5233 IRTemp op1 = newTemp(Ity_I32); local
5249 IRTemp op1 = newTemp(Ity_I32); local
5265 IRTemp op1 = newTemp(Ity_I64); local
5281 IRTemp op1 = newTemp(Ity_I8); local
5297 IRTemp op1 = newTemp(Ity_I8); local
5313 IRTemp op1 = newTemp(Ity_I32); local
5329 IRTemp op1 = newTemp(Ity_I32); local
5980 Int op1; local
5997 Long op1; local
6014 Long op1; local
6592 IRTemp op1 = newTemp(Ity_I32); local
6608 IRTemp op1 = newTemp(Ity_I32); local
6624 IRTemp op1 = newTemp(Ity_I32); local
6640 IRTemp op1 = newTemp(Ity_I32); local
6656 IRTemp op1 = newTemp(Ity_I32); local
6672 IRTemp op1 = newTemp(Ity_I32); local
6688 IRTemp op1 = newTemp(Ity_I64); local
6704 IRTemp op1 = newTemp(Ity_I32); local
6720 IRTemp op1 = newTemp(Ity_I64); local
6736 IRTemp op1 = newTemp(Ity_I32); local
6752 IRTemp op1 = newTemp(Ity_I64); local
6768 IRTemp op1 = newTemp(Ity_I32); local
6783 IRTemp op1 = newTemp(Ity_I64); local
6798 IRTemp op1 = newTemp(Ity_I64); local
6814 IRTemp op1 = newTemp(Ity_I32); local
6829 IRTemp op1 = newTemp(Ity_I32); local
6844 IRTemp op1 = newTemp(Ity_I64); local
6859 IRTemp op1 = newTemp(Ity_I64); local
6875 IRTemp op1 = newTemp(Ity_I32); local
6890 IRTemp op1 = newTemp(Ity_I64); local
6906 IRTemp op1 = newTemp(Ity_I32); local
6922 IRTemp op1 = newTemp(Ity_I64); local
6970 IRTemp op1 = newTemp(Ity_I32); local
6986 IRTemp op1 = newTemp(Ity_I32); local
7002 IRTemp op1 = newTemp(Ity_I64); local
7018 IRTemp op1 = newTemp(Ity_I8); local
7034 IRTemp op1 = newTemp(Ity_I8); local
7050 IRTemp op1 = newTemp(Ity_I32); local
7066 IRTemp op1 = newTemp(Ity_I16); local
7082 IRTemp op1 = newTemp(Ity_I16); local
7098 IRTemp op1 = newTemp(Ity_I32); local
7114 IRTemp op1 = newTemp(Ity_I16); local
7130 IRTemp op1 = newTemp(Ity_I16); local
8223 IRTemp op1 = newTemp(Ity_I32); local
8239 IRTemp op1 = newTemp(Ity_I64); local
8255 IRTemp op1 = newTemp(Ity_I64); local
8303 IRTemp op1 = newTemp(Ity_I32); local
8319 IRTemp op1 = newTemp(Ity_I32); local
8335 IRTemp op1 = newTemp(Ity_I64); local
8351 IRTemp op1 = newTemp(Ity_I64); local
8367 IRTemp op1 = newTemp(Ity_I32); local
8383 IRTemp op1 = newTemp(Ity_I32); local
8431 IRTemp op1 = newTemp(Ity_I32); local
8447 IRTemp op1 = newTemp(Ity_I64); local
8463 IRTemp op1 = newTemp(Ity_I64); local
8511 IRTemp op1 = newTemp(Ity_I32); local
8527 IRTemp op1 = newTemp(Ity_I32); local
8543 IRTemp op1 = newTemp(Ity_I64); local
8559 IRTemp op1 = newTemp(Ity_I64); local
8575 IRTemp op1 = newTemp(Ity_I32); local
8592 IRTemp op1 = newTemp(Ity_I64); local
8641 IRTemp op1 = newTemp(Ity_I32); local
8661 IRTemp op1 = newTemp(Ity_I64); local
8681 IRTemp op1 = newTemp(Ity_I32); local
8701 IRTemp op1 = newTemp(Ity_I64); local
9051 IRTemp op1 = newTemp(Ity_F32); local
9069 IRTemp op1 = newTemp(Ity_F64); local
9087 IRTemp op1 = newTemp(Ity_F32); local
9105 IRTemp op1 = newTemp(Ity_F64); local
9398 IRTemp op1 = newTemp(Ity_F32); local
9415 IRTemp op1 = newTemp(Ity_F64); local
9432 IRTemp op1 = newTemp(Ity_F32); local
9449 IRTemp op1 = newTemp(Ity_F64); local
9553 IRTemp op1 = newTemp(Ity_F32); local
9571 IRTemp op1 = newTemp(Ity_F64); local
9588 IRTemp op1 = newTemp(Ity_F32); local
9605 IRTemp op1 = newTemp(Ity_F64); local
9622 IRTemp op1 = newTemp(Ity_F32); local
9640 IRTemp op1 = newTemp(Ity_F64); local
9658 IRTemp op1 = newTemp(Ity_F32); local
9676 IRTemp op1 = newTemp(Ity_F64); local
9697 IRTemp op1 = newTemp(Ity_D64); local
9724 IRTemp op1 = newTemp(Ity_D128); local
9749 IRTemp op1 = newTemp(Ity_D64); local
9767 IRTemp op1 = newTemp(Ity_D128); local
10039 IRTemp op1 = newTemp(Ity_D64); local
10060 IRTemp op1 = newTemp(Ity_D128); local
10179 IRTemp op1 = newTemp(Ity_D64); local
10205 IRTemp op1 = newTemp(Ity_D128); local
10275 IRTemp op1 = newTemp(Ity_I64); local
10293 IRTemp op1 = newTemp(Ity_I64); local
10404 IRTemp op1 = newTemp(Ity_D64); local
10430 IRTemp op1 = newTemp(Ity_D128); local
10456 IRTemp op1 = newTemp(Ity_D64); local
10484 IRTemp op1 = newTemp(Ity_D128); local
10512 IRTemp op1 = newTemp(Ity_I8); local
10540 IRTemp op1 = newTemp(Ity_I8); local
10568 IRTemp op1 = newTemp(Ity_D64); local
10595 IRTemp op1 = newTemp(Ity_D128); local
11020 IRTemp op1 = newTemp(Ity_I8); local
11775 IRTemp op1 = newTemp(Ity_I64); local
11789 IRTemp op1 = newTemp(Ity_I128); local
11803 IRTemp op1 = newTemp(Ity_I64); local
12008 IRTemp op1 = newTemp(Ity_I32); local
12056 IRTemp op1 = newTemp(Ity_I64); local
12199 IRTemp op1 = newTemp(Ity_F128); local
12218 IRTemp op1 = newTemp(Ity_F32); local
12236 IRTemp op1 = newTemp(Ity_F64); local
12254 IRTemp op1 = newTemp(Ity_F128); local
12272 IRTemp op1 = newTemp(Ity_F32); local
12290 IRTemp op1 = newTemp(Ity_F64); local
12439 IRTemp op1 = newTemp(Ity_F128); local
12669 IRTemp op1 = newTemp(Ity_F128); local
12839 IRTemp op1 = newTemp(Ity_F128); local
13280 IRTemp op1 = newTemp(Ity_I8); local
13327 IRTemp op1 = newTemp(Ity_I8); local
13375 IRTemp op1 = newTemp(Ity_I16); local
13422 IRTemp op1 = newTemp(Ity_I16); local
13479 IRTemp op1 = newTemp(Ity_I8); local
14330 unsigned int op1 : 8; member in struct:__anon28049::__anon28050
15392 unsigned int op1 : 8; member in struct:__anon28064::__anon28065
15400 unsigned int op1 : 8; member in struct:__anon28064::__anon28066
15409 unsigned int op1 : 8; member in struct:__anon28064::__anon28067
15418 unsigned int op1 : 8; member in struct:__anon28064::__anon28068
15427 unsigned int op1 : 8; member in struct:__anon28064::__anon28069
15435 unsigned int op1 : 8; member in struct:__anon28064::__anon28070
15441 unsigned int op1 : 8; member in struct:__anon28064::__anon28071
15450 unsigned int op1 : 8; member in struct:__anon28064::__anon28072
15460 unsigned int op1 : 8; member in struct:__anon28064::__anon28073
15469 unsigned int op1 : 8; member in struct:__anon28064::__anon28074
15478 unsigned int op1 : 8; member in struct:__anon28064::__anon28075
15487 unsigned int op1 : 8; member in struct:__anon28064::__anon28076
15497 unsigned int op1 : 8; member in struct:__anon28064::__anon28077
15506 unsigned int op1 : 8; member in struct:__anon28064::__anon28078
15547 unsigned int op1 : 8; member in struct:__anon28064::__anon28083
[all...]
/external/tensorflow/tensorflow/core/api_def/
H A Dupdate_api_def_test.cc136 OpDef op1, op2, op3; local
137 protobuf::TextFormat::ParseFromString(op1_text, &op1); // NOLINT
150 updated_text = RemoveDoc(op1, updated_text,
/external/tensorflow/tensorflow/contrib/linalg/python/kernel_tests/
H A Dlinear_operator_addition_test.py39 def can_add(self, op1, op2):
42 def _add(self, op1, op2, operator_name, hints):
95 op1 = linalg.LinearOperatorDiag(
96 [1., 1.], is_positive_definite=True, name="op1")
102 op_sum = add_operators([op1, op2, op3])
115 op1 = linalg.LinearOperatorDiag(
125 op_sum = add_operators([op1, op2, op3])
135 # Even though op1/2/3 are non-singular, this does not imply op is.
142 op1 = linalg.LinearOperatorDiag([1., 1.], name="diag_a")
147 op_sum = add_operators([op0, op1, op
[all...]
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dkvm.h142 #define __ARM_CP15_REG(op1,crn,crm,op2) \
144 ARM_CP15_REG_SHIFT_MASK(op1, OPC1) | \
151 #define __ARM_CP15_REG64(op1,crm) \
152 (__ARM_CP15_REG(op1, 0, crm, 0) | KVM_REG_SIZE_U64)
/external/freetype/src/psaux/
H A Dpsintrp.c506 FT_Byte op1; /* first opcode byte */ local
636 op1 = cf2_cmdRETURN; /* end of buffer for subroutine */
638 op1 = cf2_cmdENDCHAR; /* end of buffer for top level charstring */
642 op1 = (FT_Byte)cf2_buf_readByte( charstring );
646 if ( ( op1 == cf2_cmdRETURN || op1 == cf2_cmdENDCHAR ) &&
648 op1 = cf2_cmdRESERVED_0;
654 !( op1 == cf2_cmdHSTEM ||
655 op1 == cf2_cmdVSTEM ||
656 op1
[all...]
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dloopfilter_neon.c236 uint8x8_t *op2, uint8x8_t *op1,
248 *op1 = calc_7_tap_filter_8_kernel(p3, p2, p1, q1, &sum);
258 const uint8x16_t q2, const uint8x16_t q3, uint8x16_t *op2, uint8x16_t *op1,
276 *op1 = calc_7_tap_filter_16_kernel(p3, p2, p1, q1, &sum0, &sum1);
288 const uint8x##w##_t q3, uint8x##w##_t *op2, uint8x##w##_t *op1, \
295 *op1 = vbsl##r##u8(flat, tp1, *op1); \
314 uint8x8_t *op4, uint8x8_t *op3, uint8x8_t *op2, uint8x8_t *op1,
334 *op1 = apply_15_tap_filter_8_kernel(flat2, p7, p2, p1, q5, *op1,
232 calc_7_tap_filter_8(const uint8x8_t p3, const uint8x8_t p2, const uint8x8_t p1, const uint8x8_t p0, const uint8x8_t q0, const uint8x8_t q1, const uint8x8_t q2, const uint8x8_t q3, uint8x8_t *op2, uint8x8_t *op1, uint8x8_t *op0, uint8x8_t *oq0, uint8x8_t *oq1, uint8x8_t *oq2) argument
255 calc_7_tap_filter_16( const uint8x16_t p3, const uint8x16_t p2, const uint8x16_t p1, const uint8x16_t p0, const uint8x16_t q0, const uint8x16_t q1, const uint8x16_t q2, const uint8x16_t q3, uint8x16_t *op2, uint8x16_t *op1, uint8x16_t *op0, uint8x16_t *oq0, uint8x16_t *oq1, uint8x16_t *oq2) argument
307 apply_15_tap_filter_8( const uint8x8_t flat2, const uint8x8_t p7, const uint8x8_t p6, const uint8x8_t p5, const uint8x8_t p4, const uint8x8_t p3, const uint8x8_t p2, const uint8x8_t p1, const uint8x8_t p0, const uint8x8_t q0, const uint8x8_t q1, const uint8x8_t q2, const uint8x8_t q3, const uint8x8_t q4, const uint8x8_t q5, const uint8x8_t q6, const uint8x8_t q7, uint8x8_t *op6, uint8x8_t *op5, uint8x8_t *op4, uint8x8_t *op3, uint8x8_t *op2, uint8x8_t *op1, uint8x8_t *op0, uint8x8_t *oq0, uint8x8_t *oq1, uint8x8_t *oq2, uint8x8_t *oq3, uint8x8_t *oq4, uint8x8_t *oq5, uint8x8_t *oq6) argument
345 apply_15_tap_filter_16( const uint8x16_t flat2, const uint8x16_t p7, const uint8x16_t p6, const uint8x16_t p5, const uint8x16_t p4, const uint8x16_t p3, const uint8x16_t p2, const uint8x16_t p1, const uint8x16_t p0, const uint8x16_t q0, const uint8x16_t q1, const uint8x16_t q2, const uint8x16_t q3, const uint8x16_t q4, const uint8x16_t q5, const uint8x16_t q6, const uint8x16_t q7, uint8x16_t *op6, uint8x16_t *op5, uint8x16_t *op4, uint8x16_t *op3, uint8x16_t *op2, uint8x16_t *op1, uint8x16_t *op0, uint8x16_t *oq0, uint8x16_t *oq1, uint8x16_t *oq2, uint8x16_t *oq3, uint8x16_t *oq4, uint8x16_t *oq5, uint8x16_t *oq6) argument
867 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
886 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
902 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
922 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
981 op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, oq4, oq5, oq6; local
998 op6, op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, oq4, oq5, oq6; local
1021 op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, oq4, oq5, oq6; local
1053 op6, op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, oq4, oq5, oq6; local
[all...]
H A Dhighbd_loopfilter_neon.c152 uint16x8_t *op2, uint16x8_t *op1,
164 *op1 = calc_7_tap_filter_kernel(p3, p2, p1, q1, &sum);
176 uint16x8_t *op2, uint16x8_t *op1,
183 *op1 = vbslq_u16(flat, tp1, *op1);
198 uint16x8_t *op4, uint16x8_t *op3, uint16x8_t *op2, uint16x8_t *op1,
218 *op1 = apply_15_tap_filter_kernel(flat2, p7, p2, p1, q5, *op1, &sum);
232 uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0,
287 *op1
148 calc_7_tap_filter(const uint16x8_t p3, const uint16x8_t p2, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, const uint16x8_t q2, const uint16x8_t q3, uint16x8_t *op2, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, uint16x8_t *oq2) argument
171 apply_7_tap_filter(const uint16x8_t flat, const uint16x8_t p3, const uint16x8_t p2, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, const uint16x8_t q2, const uint16x8_t q3, uint16x8_t *op2, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, uint16x8_t *oq2) argument
191 apply_15_tap_filter( const uint16x8_t flat2, const uint16x8_t p7, const uint16x8_t p6, const uint16x8_t p5, const uint16x8_t p4, const uint16x8_t p3, const uint16x8_t p2, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, const uint16x8_t q2, const uint16x8_t q3, const uint16x8_t q4, const uint16x8_t q5, const uint16x8_t q6, const uint16x8_t q7, uint16x8_t *op6, uint16x8_t *op5, uint16x8_t *op4, uint16x8_t *op3, uint16x8_t *op2, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, uint16x8_t *oq2, uint16x8_t *oq3, uint16x8_t *oq4, uint16x8_t *oq5, uint16x8_t *oq6) argument
229 filter4(const uint16x8_t mask, const uint16x8_t hev, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, const int bd) argument
290 filter8(const uint16x8_t mask, const uint16x8_t flat, const uint32_t flat_status, const uint16x8_t hev, const uint16x8_t p3, const uint16x8_t p2, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, const uint16x8_t q2, const uint16x8_t q3, uint16x8_t *op2, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, uint16x8_t *oq2, const int bd) argument
313 filter16( const uint16x8_t mask, const uint16x8_t flat, const uint32_t flat_status, const uint16x8_t flat2, const uint32_t flat2_status, const uint16x8_t hev, const uint16x8_t p7, const uint16x8_t p6, const uint16x8_t p5, const uint16x8_t p4, const uint16x8_t p3, const uint16x8_t p2, const uint16x8_t p1, const uint16x8_t p0, const uint16x8_t q0, const uint16x8_t q1, const uint16x8_t q2, const uint16x8_t q3, const uint16x8_t q4, const uint16x8_t q5, const uint16x8_t q6, const uint16x8_t q7, uint16x8_t *op6, uint16x8_t *op5, uint16x8_t *op4, uint16x8_t *op3, uint16x8_t *op2, uint16x8_t *op1, uint16x8_t *op0, uint16x8_t *oq0, uint16x8_t *oq1, uint16x8_t *oq2, uint16x8_t *oq3, uint16x8_t *oq4, uint16x8_t *oq5, uint16x8_t *oq6, const int bd) argument
616 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
640 op2, op1, op0, oq0, oq1, oq2, mask, flat, hev; local
670 q3, q4, q5, q6, q7, op6, op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, local
693 q3, q4, q5, q6, q7, op6, op5, op4, op3, op2, op1, op0, oq0, oq1, oq2, oq3, local
[all...]
/external/v8/src/parsing/
H A Dtoken.h289 static bool EvalComparison(Value op, double op1, double op2) {
293 case Token::EQ_STRICT: return (op1 == op2);
294 case Token::NE: return (op1 != op2);
295 case Token::LT: return (op1 < op2);
296 case Token::GT: return (op1 > op2);
297 case Token::LTE: return (op1 <= op2);
298 case Token::GTE: return (op1 >= op2);
/external/one-true-awk/
H A Dawkgram.y283 | NOT re { $$ = op1(NOT, notnull($2)); }
359 | '-' term %prec UMINUS { $$ = op1(UMINUS, $2); }
361 | NOT term %prec UMINUS { $$ = op1(NOT, notnull($2)); }
367 | CLOSE term { $$ = op1(CLOSE, $2); }
368 | DECR var { $$ = op1(PREDECR, $2); }
369 | INCR var { $$ = op1(PREINCR, $2); }
370 | var DECR { $$ = op1(POSTDECR, $1); }
371 | var INCR { $$ = op1(POSTINCR, $1); }
396 | SPRINTF '(' patlist ')' { $$ = op1($1, $3); }
422 | IVAR { $$ = op1(INDIREC
[all...]
/external/libcxx/test/std/numerics/numeric.ops/transform.reduce/
H A Dtransform_reduce_iter_iter_iter_init_op_op.pass.cpp29 test(Iter1 first1, Iter1 last1, Iter2 first2, T init, Op1 op1, Op2 op2, T x) argument
32 decltype(std::transform_reduce(first1, last1, first2, init, op1, op2))> );
33 assert(std::transform_reduce(first1, last1, first2, init, op1, op2) == x);
/external/libxaac/decoder/
H A Dixheaacd_basic_funcs.c125 WORD32 ixheaacd_fix_div_dec(WORD32 op1, WORD32 op2) { argument
131 abs_num = ixheaacd_abs32(op1 >> 1);
133 sign = op1 ^ op2;
/external/v8/src/s390/
H A Dassembler-s390-inl.h454 Opcode op1 = Instruction::S390OpcodeValue(reinterpret_cast<const byte*>(pc)); local
458 if (BRASL == op1 || BRCL == op1) {
471 if (IIHF == op1 && IILF == op2) {
477 if (IILF == op1 || CFI == op1) {
510 Opcode op1 = Instruction::S390OpcodeValue(reinterpret_cast<const byte*>(pc)); local
515 if (BRASL == op1 || BRCL == op1) {
535 if (IIHF == op1
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dloopfilter_filters.c45 static void vp8_filter(signed char mask, uc hev, uc *op1, uc *op0, uc *oq0, argument
52 ps1 = (signed char)*op1 ^ 0x80;
87 *op1 = u ^ 0x80;
138 static void vp8_mbfilter(signed char mask, uc hev, uc *op2, uc *op1, uc *op0, argument
143 signed char ps1 = (signed char)*op1 ^ 0x80;
181 *op1 = s ^ 0x80;
248 static void vp8_simple_filter(signed char mask, uc *op1, uc *op0, uc *oq0, argument
251 signed char p1 = (signed char)*op1 ^ 0x80;
/external/valgrind/none/tests/amd64/
H A Dfb_test_amd64.c690 void test_imulw2(int64 op0, int64 op1) argument
694 s1 = op1;
708 void test_imull2(int64 op0, int64 op1) argument
713 s1 = op1;
727 #define TEST_IMUL_IM(size, size1, op0, op1)\
738 : "r" (op1), "1" (flags), "0" (res));\
740 "imul" size, op0, op1, res, flags & CC_MASK);\
743 #define TEST_IMUL_IM_L(op0, op1)\
754 : "r" (op1), "1" (flags), "0" (res));\
756 "imull", op0, op1, re
[all...]

Completed in 2432 milliseconds

1234567