Searched refs:op (Results 1 - 25 of 1695) 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/libpcap/
H A Dbpf_image.c55 const char *fmt, *op; local
63 op = "unimp";
69 op = "ret";
74 op = "ret";
79 op = "ld";
84 op = "ldh";
89 op = "ldb";
94 op = "ld";
99 op = "ld";
104 op
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderLoopTests.cpp248 std::ostringstream& op = isVertexCase ? vtx : frag; local
284 op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(numLoopIters) << ";\n";
289 op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(numLoopIters) << ";\n";
292 op << "uniform ${COUNTER_PRECISION} float uf_one;\n";
328 op << " ${PRECISION} vec4 res = coords;\n";
382 op << " for (" + loopCountDeclStr + "; " + loopCmpStr + "; " + incrementStr + ")\n";
383 op << " {\n";
384 op << loopBody;
385 op << " }\n";
389 op << "\
446 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 );
/external/toybox/toys/other/
H A Dflock.c28 int fd = xstrtol(*toys.optargs, NULL, 10), op; local
30 if (toys.optflags & FLAG_u) op = LOCK_UN;
31 else op = (toys.optflags & FLAG_s) ? LOCK_SH : LOCK_EX;
33 if (toys.optflags & FLAG_n) op |= LOCK_NB;
35 if (flock(fd, op)) {
36 if ((op & LOCK_NB) && errno == EAGAIN) toys.exitval = 1;
/external/v8/src/compiler/
H A Doperator-properties.h20 static bool HasContextInput(const Operator* op);
21 static int GetContextInputCount(const Operator* op) { argument
22 return HasContextInput(op) ? 1 : 0;
24 static int GetFrameStateInputCount(const Operator* op);
26 static int GetTotalInputCount(const Operator* op);
28 static bool IsBasicBlockBegin(const Operator* op);
/external/v8/test/unittests/compiler/
H A Dcommon-operator-unittest.cc79 const Operator* op = (common.*sop.constructor)(); local
81 EXPECT_EQ(sop.value_input_count, op->ValueInputCount());
82 EXPECT_EQ(sop.effect_input_count, op->EffectInputCount());
83 EXPECT_EQ(sop.control_input_count, op->ControlInputCount());
86 OperatorProperties::GetTotalInputCount(op));
88 EXPECT_EQ(sop.value_output_count, op->ValueOutputCount());
89 EXPECT_EQ(sop.effect_output_count, op->EffectOutputCount());
90 EXPECT_EQ(sop.control_output_count, op->ControlOutputCount());
97 const Operator* op = (common.*sop.constructor)(); local
98 EXPECT_EQ(sop.opcode, op
105 const Operator* op = (common.*sop.constructor)(); local
175 const Operator* const op = common()->End(input_count); local
192 const Operator* const op = common()->Return(input_count); local
208 const Operator* const op = common()->Branch(hint); local
227 const Operator* const op = common()->IfException(hint); local
243 const Operator* const op = common()->Switch(cases); local
259 const Operator* const op = common()->IfValue(value); local
284 const Operator* const op = common()->Select(rep, hint); local
303 const Operator* op = common()->Float32Constant(value); local
324 const Operator* op = common()->Float64Constant(value); local
345 const Operator* op = common()->NumberConstant(value); local
365 const Operator* op = common()->BeginRegion(); local
375 const Operator* op = common()->FinishRegion(); local
[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/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
H A Dstats.h17 Stats& operator+=(const Stats& op) { argument
18 matches += op.matches;
19 inliers += op.inliers;
20 ratio += op.ratio;
21 keypoints += op.keypoints;
/external/deqp/modules/gles2/functional/
H A Des2fShaderLoopTests.cpp280 std::ostringstream& op = isVertexCase ? vtx : frag; local
312 op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(numLoopIters) << ";\n";
317 op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(numLoopIters) << ";\n";
320 op << "uniform ${COUNTER_PRECISION} float uf_one;\n";
356 op << " ${PRECISION} vec4 res = coords;\n";
410 op << " for (" + loopCountDeclStr + "; " + loopCmpStr + "; " + incrementStr + ")\n";
411 op << " {\n";
412 op << loopBody;
413 op << " }\n";
417 op << "\
488 std::ostringstream& op = isVertexCase ? vtx : frag; local
[all...]
/external/opencv3/3rdparty/zlib/
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/pdfium/third_party/zlib_v128/
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/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.c21 short *op = output; local
30 op[0] = a1 + b1;
31 op[2] = a1 - b1;
33 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
34 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
37 op += 4;
41 op = output;
49 op[0] = ( a1 + b1 + 7)>>4;
50 op[8] = ( a1 - b1 + 7)>>4;
52 op[
72 short *op = output; local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderLoopTests.cpp310 std::ostringstream& op = isVertexCase ? vtx : frag; local
348 op << "layout(std140, set=0, binding=" << locationCounter << ") uniform buff"<< locationCounter <<" {\n";
349 op << " ${COUNTER_PRECISION} int " << getIntUniformName(numLoopIters) << ";\n";
350 op << "};\n";
358 op << "layout(std140, set=0, binding=" << locationCounter << ") uniform buff" << locationCounter << " {\n";
359 op << " ${COUNTER_PRECISION} float " << getFloatFractionUniformName(numLoopIters) << ";\n";
360 op << "};\n";
366 op << "layout(std140, set=0, binding=" << locationCounter << ") uniform buff" << locationCounter << " {\n";
367 op << " ${COUNTER_PRECISION} float uf_one;\n";
368 op << "};\
532 std::ostringstream& op = isVertexCase ? vtx : frag; 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/skia/src/core/
H A DSkPictureCommon.h9 // SkTextHunter -- SkRecord visitor that returns true when the op draws text.
10 // SkBitmapHunter -- SkRecord visitor that returns true when the op draws a bitmap or image.
19 bool operator()(const SkRecords::DrawPicture& op) { return op.picture->hasText(); } argument
36 // If the op is a DrawPicture, recurse.
37 // If the op has a bitmap or image directly, return true.
38 // If the op has a paint and the paint has a bitmap, return true.
40 bool operator()(const SkRecords::DrawPicture& op) { return op.picture->willPlayBackBitmaps(); } argument
44 bool operator()(const T& op) { retur argument
54 CheckBitmap(const T& op) argument
60 CheckPaint(const T& op) argument
65 CheckPaint(const SkRecords::SaveLayer& op) argument
96 operator ()(const SkRecords::DrawPicture& op) argument
108 operator ()(const SkRecords::DrawPoints& op) argument
121 operator ()(const SkRecords::DrawPath& op) argument
138 operator ()(const SkRecords::SaveLayer& op) argument
143 operator ()(const T& op) argument
148 operator ()(const T& op) argument
[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...]

Completed in 719 milliseconds

1234567891011>>