Searched refs:op (Results 1 - 25 of 1356) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2006-03-17-KnRMismatch.c3 void regnode(int op);
5 void regnode(op)
6 char op;
/external/liblzf/
H A Dlzf_d.c60 u8 *op = (u8 *)out_data; local
62 u8 *const out_end = op + out_len;
72 if (op + ctrl > out_end)
87 lzf_movsb (op, ip, ctrl);
91 case 32: *op++ = *ip++; case 31: *op++ = *ip++; case 30: *op++ = *ip++; case 29: *op++ = *ip++;
92 case 28: *op++ = *ip++; case 27: *op
[all...]
/external/v8/src/compiler/
H A Doperator-properties.h16 static inline bool HasValueInput(const Operator* op);
17 static inline bool HasContextInput(const Operator* op);
18 static inline bool HasEffectInput(const Operator* op);
19 static inline bool HasControlInput(const Operator* op);
20 static inline bool HasFrameStateInput(const Operator* op);
22 static inline int GetValueInputCount(const Operator* op);
23 static inline int GetContextInputCount(const Operator* op);
24 static inline int GetEffectInputCount(const Operator* op);
25 static inline int GetControlInputCount(const Operator* op);
26 static inline int GetFrameStateInputCount(const Operator* op);
[all...]
H A Doperator-properties-inl.h17 inline bool OperatorProperties::HasValueInput(const Operator* op) { argument
18 return OperatorProperties::GetValueInputCount(op) > 0;
21 inline bool OperatorProperties::HasContextInput(const Operator* op) { argument
22 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode());
26 inline bool OperatorProperties::HasEffectInput(const Operator* op) { argument
27 return OperatorProperties::GetEffectInputCount(op) > 0;
30 inline bool OperatorProperties::HasControlInput(const Operator* op) { argument
31 return OperatorProperties::GetControlInputCount(op) > 0;
34 inline bool OperatorProperties::HasFrameStateInput(const Operator* op) { argument
39 switch (op
87 GetValueInputCount(const Operator* op) argument
91 GetContextInputCount(const Operator* op) argument
95 GetFrameStateInputCount(const Operator* op) argument
99 GetEffectInputCount(const Operator* op) argument
109 GetControlInputCount(const Operator* op) argument
131 GetTotalInputCount(const Operator* op) argument
140 HasValueOutput(const Operator* op) argument
144 HasEffectOutput(const Operator* op) argument
151 HasControlOutput(const Operator* op) argument
157 GetValueOutputCount(const Operator* op) argument
161 GetEffectOutputCount(const Operator* op) argument
171 IsBasicBlockBegin(const Operator* op) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderLoopTests.cpp247 std::ostringstream& op = isVertexCase ? vtx : frag; local
283 op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(numLoopIters) << ";\n";
288 op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(numLoopIters) << ";\n";
291 op << "uniform ${COUNTER_PRECISION} float uf_one;\n";
327 op << " ${PRECISION} vec4 res = coords;\n";
381 op << " for (" + loopCountDeclStr + "; " + loopCmpStr + "; " + incrementStr + ")\n";
382 op << " {\n";
383 op << loopBody;
384 op << " }\n";
388 op << "\
445 std::ostringstream& op = isVertexCase ? vtx : frag; local
[all...]
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_operand.c16 static void apply_seg( x86_op_t *op, unsigned int prefixes ) { argument
22 op->flags |= op_cs_seg; break;
24 op->flags |= op_ss_seg; break;
26 op->flags |= op_ds_seg; break;
28 op->flags |= op_es_seg; break;
30 op->flags |= op_fs_seg; break;
32 op->flags |= op_gs_seg; break;
39 x86_op_t *op, x86_insn_t *insn,
68 size = ia32_modrm_decode( buf, buf_len, op, insn,
72 size = ia32_modrm_decode( buf, buf_len, op, ins
38 decode_operand_value( unsigned char *buf, size_t buf_len, x86_op_t *op, x86_insn_t *insn, unsigned int addr_meth, size_t op_size, unsigned int op_value, unsigned char modrm, size_t gen_regs ) argument
384 x86_op_t *op; local
[all...]
H A Dia32_modrm.h8 x86_op_t *op, x86_insn_t *insn,
11 void ia32_reg_decode( unsigned char byte, x86_op_t *op, size_t gen_regs );
H A Dx86_operand_list.c5 static void x86_oplist_append( x86_insn_t *insn, x86_oplist_t *op ) {
21 insn->operands = op;
31 list->next = op;
37 x86_oplist_t *op; local
42 op = calloc( sizeof(x86_oplist_t), 1 );
43 op->op.insn = insn;
44 x86_oplist_append( insn, op );
45 return( &(op->op) );
49 x86_oplist_t *op, *list; local
149 count_operand( x86_op_t *op, x86_insn_t *insn, void *arg ) argument
[all...]
/external/libpcap/
H A Dbpf_image.c60 const char *fmt, *op; local
68 op = "unimp";
74 op = "ret";
79 op = "ret";
84 op = "ld";
89 op = "ldh";
94 op = "ldb";
99 op = "ld";
104 op = "ld";
109 op
[all...]
/external/valgrind/none/tests/s390x/
H A Ddfp_utils.h10 #define DFP_VAL_PRINT(op, type) \
14 printf("%x", *((unsigned int *) &op)); \
16 printf("%lx", *((unsigned long *) &op)); \
18 printf("%lx%08lx", *((unsigned long *) &op), \
19 *(((unsigned long *) &op) + 1)); \
22 #define DFP_BINOP_PRINT(op1, op2, result, type, op, cc) \
25 printf(" "op" "); \
/external/javassist/src/main/javassist/compiler/ast/
H A DStmnt.java27 public Stmnt(int op, ASTree _head, ASTList _tail) { argument
29 operatorId = op;
32 public Stmnt(int op, ASTree _head) { argument
34 operatorId = op;
37 public Stmnt(int op) { argument
38 this(op, null);
41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { argument
42 return new Stmnt(op, oprand1, new ASTList(oprand2));
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { argument
46 return new Stmnt(op, op
[all...]
H A DAssignExpr.java28 private AssignExpr(int op, ASTree _head, ASTList _tail) { argument
29 super(op, _head, _tail);
32 public static AssignExpr makeAssign(int op, ASTree oprand1, argument
34 return new AssignExpr(op, oprand1, new ASTList(oprand2));
H A DBinExpr.java32 private BinExpr(int op, ASTree _head, ASTList _tail) { argument
33 super(op, _head, _tail);
36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) { argument
37 return new BinExpr(op, oprand1, new ASTList(oprand2));
/external/deqp/modules/gles2/functional/
H A Des2fShaderLoopTests.cpp279 std::ostringstream& op = isVertexCase ? vtx : frag; local
311 op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(numLoopIters) << ";\n";
316 op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(numLoopIters) << ";\n";
319 op << "uniform ${COUNTER_PRECISION} float uf_one;\n";
355 op << " ${PRECISION} vec4 res = coords;\n";
409 op << " for (" + loopCountDeclStr + "; " + loopCmpStr + "; " + incrementStr + ")\n";
410 op << " {\n";
411 op << loopBody;
412 op << " }\n";
416 op << "\
487 std::ostringstream& op = isVertexCase ? vtx : frag; local
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/external/zlib/src/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Ddct.c19 short *op = output; local
28 op[0] = a1 + b1;
29 op[2] = a1 - b1;
31 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
32 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
35 op += 4;
39 op = output;
47 op[0] = ( a1 + b1 + 7)>>4;
48 op[8] = ( a1 - b1 + 7)>>4;
50 op[
70 short *op = output; local
[all...]
/external/valgrind/none/tests/mips32/
H A DFPUarithmetic.c68 #define UNOPdd(op) \
71 op" %0, %1\n\t" \
74 #define UNOPff(op) \
77 op" %0, %1\n\t" \
80 #define BINOPf(op) \
83 op" %0, %1, %2\n\t" \
86 #define BINOPd(op) \
89 op" %0, %1, %2\n\t" \
125 int arithmeticOperations(flt_art_op_t op) argument
136 switch(op) {
228 flt_art_op_t op; local
[all...]
/external/valgrind/none/tests/mips64/
H A Dfpu_arithmetic.c7 int arithmeticOperations(flt_art_op_t op) argument
18 switch(op) {
21 printf("%s %f %f\n", flt_art_op_names[op], fd_f, fs_f[i]);
25 printf("%s %lf %lf\n", flt_art_op_names[op], fd_d, fs_d[i]);
30 flt_art_op_names[op], fd_f, fs_f[i], ft_f[i]);
35 flt_art_op_names[op], fd_d, fs_d[i], ft_d[i]);
40 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
45 flt_art_op_names[op], round(fd_d), fs_d[i], ft_d[i]);
50 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
55 flt_art_op_names[op], roun
163 flt_art_op_t op; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_shader.h31 uint32_t brw_conditional_for_comparison(unsigned int op);
32 uint32_t brw_math_function(enum opcode op);
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp110 ir_constant *op[Elements(this->operands)] = { NULL, };
116 op[operand] = this->operands[operand]->constant_expression_value(variable_context);
117 if (!op[operand])
121 if (op[1] != NULL)
122 assert(op[0]->type->base_type == op[1]->type->base_type ||
126 bool op0_scalar = op[0]->type->is_scalar();
127 bool op1_scalar = op[1] != NULL && op[1]->type->is_scalar();
135 if (op1_scalar || !op[
[all...]
/external/skia/src/sfnt/
H A DSkPreprocessorSeq.h564 #define SK_SEQ_FOREACH(op, data, seq) SK_SEQ_FOREACH_L(op, op, data, seq)
565 #define SK_SEQ_FOREACH_L(op, lop, data, seq) SK_CONCAT(SK_SEQ_FOREACH_, SK_SEQ_SIZE(seq)) (op, lop, data, SK_SEQ_HEAD(seq), SK_SEQ_TAIL(seq))
567 #define SK_SEQ_FOREACH_0(op,lop,d,x,t)
568 #define SK_SEQ_FOREACH_1(op,lop,d,x,t) lop(d,x)
569 #define SK_SEQ_FOREACH_2(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_1(op, lo
[all...]
/external/valgrind/none/tests/
H A Dfdleak.h7 #define DO(op) \
9 long res = op; \
11 perror(#op); \
/external/v8/src/
H A Dtoken.h194 static bool IsBinaryOp(Value op) {
195 return COMMA <= op && op <= MOD;
198 static bool IsTruncatingBinaryOp(Value op) {
199 return BIT_OR <= op && op <= ROR;
202 static bool IsCompareOp(Value op) {
203 return EQ <= op && op <= IN;
206 static bool IsOrderedRelationalCompareOp(Value op) {
[all...]
/external/libunwind/include/
H A Dlibunwind-dynamic.h97 uint32_t op_count; /* length of op-array */
98 unw_dyn_op_t op[1]; /* variable-length op-array */ member in struct:unw_dyn_region_info
161 ((char *) (((unw_dyn_region_info_t *) NULL)->op + (op_count)) \
179 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \
180 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst)))
182 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \
183 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \
186 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \
187 (*(op)
[all...]

Completed in 4889 milliseconds

1234567891011>>