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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2006-03-17-KnRMismatch.c 3 void regnode(int op);
5 void regnode(op)
6 char op;
  /dalvik/libdex/
DexOpcodes.cpp 295 const char* dexGetOpcodeName(Opcode op)
297 assert(op >= 0 && op < kNumPackedOpcodes);
298 return gOpNames[op];
  /external/liblzf/
lzf_d.c 60 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++ = *ip++; case 26: *op++ = *ip++; case 25: *op++ = *ip++
    [all...]
  /external/chromium_org/v8/src/compiler/
operator-properties.h 16 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...]
operator-properties-inl.h 17 inline bool OperatorProperties::HasValueInput(const Operator* op) {
18 return OperatorProperties::GetValueInputCount(op) > 0;
21 inline bool OperatorProperties::HasContextInput(const Operator* op) {
22 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode());
26 inline bool OperatorProperties::HasEffectInput(const Operator* op) {
27 return OperatorProperties::GetEffectInputCount(op) > 0;
30 inline bool OperatorProperties::HasControlInput(const Operator* op) {
31 return OperatorProperties::GetControlInputCount(op) > 0;
34 inline bool OperatorProperties::HasFrameStateInput(const Operator* op) {
39 switch (op->opcode())
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderLoopTests.cpp 247 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 << "\t" << loopCountDeclStr + ";\n"
445 std::ostringstream& op = isVertexCase ? vtx : frag; local
    [all...]
  /external/libpcap/
bpf_image.c 60 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 = "ldh"
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Stmnt.java 27 public Stmnt(int op, ASTree _head, ASTList _tail) {
29 operatorId = op;
32 public Stmnt(int op, ASTree _head) {
34 operatorId = op;
37 public Stmnt(int op) {
38 this(op, null);
41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) {
42 return new Stmnt(op, oprand1, new ASTList(oprand2));
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) {
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)))
    [all...]
AssignExpr.java 28 private AssignExpr(int op, ASTree _head, ASTList _tail) {
29 super(op, _head, _tail);
32 public static AssignExpr makeAssign(int op, ASTree oprand1,
34 return new AssignExpr(op, oprand1, new ASTList(oprand2));
BinExpr.java 32 private BinExpr(int op, ASTree _head, ASTList _tail) {
33 super(op, _head, _tail);
36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) {
37 return new BinExpr(op, oprand1, new ASTList(oprand2));
  /external/chromium_org/mojo/services/public/cpp/network/
web_socket_write_queue.cc 31 Operation* op = new Operation; local
32 op->num_bytes_ = num_bytes;
33 op->callback_ = callback;
34 op->data_ = data;
35 queue_.push_back(op);
44 op->data_copy_.resize(num_bytes);
45 memcpy(&op->data_copy_[0], data, num_bytes);
46 op->data_ = &op->data_copy_[0];
51 Operation* op = queue_[0] local
    [all...]
  /external/chromium_org/third_party/zlib/
inffast.c 91 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/deqp/modules/gles2/functional/
es2fShaderLoopTests.cpp 279 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 << "\t" << loopCountDeclStr + ";\n"
487 std::ostringstream& op = isVertexCase ? vtx : frag; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
status.c 46 int sqlite3StatusValue(int op){
48 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
49 return wsdStat.nowValue[op];
56 void sqlite3StatusAdd(int op, int N){
58 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
59 wsdStat.nowValue[op] += N;
60 if( wsdStat.nowValue[op]>wsdStat.mxValue[op] ){
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
dct.c 19 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[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0)
70 short *op = output; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
dct.c 19 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[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0)
70 short *op = output; local
    [all...]
  /bionic/libc/include/sys/
cachectl.h 33 extern int __cachectl (void *addr, __const int nbytes, __const int op);
34 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /development/ndk/platforms/android-9/include/sys/
cachectl.h 33 extern int __cachectl (void *addr, __const int nbytes, __const int op);
34 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /development/ndk/platforms/android-L/include/sys/
cachectl.h 33 extern int __cachectl (void *addr, __const int nbytes, __const int op);
34 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_shader.h 31 uint32_t brw_conditional_for_comparison(unsigned int op);
32 uint32_t brw_math_function(enum opcode op);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_shader.h 31 uint32_t brw_conditional_for_comparison(unsigned int op);
32 uint32_t brw_math_function(enum opcode op);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_constant_expression.cpp 110 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[1])
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 110 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[1])
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkPreprocessorSeq.h 564 #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, lop, d, SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)
    [all...]
  /external/chromium_org/v8/src/
token.h 194 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...]

Completed in 517 milliseconds

1 2 3 4 5 6 7 8 91011>>