HomeSort by relevance Sort by last modified time
    Searched refs:op (Results 1 - 25 of 1698) 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/webkit/Source/WebCore/dom/
Clipboard.cpp 56 static DragOperation dragOpFromIEOp(const String& op)
59 if (op == "uninitialized")
61 if (op == "none")
63 if (op == "copy")
65 if (op == "link")
67 if (op == "move")
69 if (op == "copyLink")
71 if (op == "copyMove")
73 if (op == "linkMove")
75 if (op == "all"
104 DragOperation op = dragOpFromIEOp(m_effectAllowed); local
111 DragOperation op = dragOpFromIEOp(m_dropEffect); local
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 61 ir_constant *op[Elements(this->operands)] = { NULL, };
67 op[operand] = this->operands[operand]->constant_expression_value();
68 if (!op[operand])
72 if (op[1] != NULL)
73 assert(op[0]->type->base_type == op[1]->type->base_type);
75 bool op0_scalar = op[0]->type->is_scalar();
76 bool op1_scalar = op[1] != NULL && op[1]->type->is_scalar();
84 if (op1_scalar || !op[1])
971 ir_constant *op[3]; local
    [all...]
  /external/libpcap/
bpf_image.c 46 const char *fmt, *op; local
54 op = "unimp";
60 op = "ret";
65 op = "ret";
70 op = "ld";
75 op = "ldh";
80 op = "ldb";
85 op = "ld";
90 op = "ld";
95 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));
Expr.java 33 Expr(int op, ASTree _head, ASTList _tail) {
35 operatorId = op;
38 Expr(int op, ASTree _head) {
40 operatorId = op;
43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) {
44 return new Expr(op, oprand1, new ASTList(oprand2));
47 public static Expr make(int op, ASTree oprand1) {
48 return new Expr(op, oprand1);
53 public void setOperator(int op) { operatorId = op; }
    [all...]
  /external/zlib/src/
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/libvpx/vp8/common/
idctllm.c 34 short *op = output; local
51 op[shortpitch*0] = a1 + d1;
52 op[shortpitch*3] = a1 - d1;
54 op[shortpitch*1] = b1 + c1;
55 op[shortpitch*2] = b1 - c1;
58 op++;
62 op = output;
78 op[0] = (a1 + d1 + 4) >> 3;
79 op[3] = (a1 - d1 + 4) >> 3;
81 op[1] = (b1 + c1 + 4) >> 3
93 short *op = output; local
139 short *op = output; local
185 short *op = output; local
    [all...]
  /external/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/qemu/distrib/zlib-1.2.3/
inffast.c 91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(this.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(this.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...]
  /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/arch-mips/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/sys/
cachectl.h 6 extern int __cachectl (void *addr, __const int nbytes, __const int op);
7 extern int _flush_cache (char *addr, __const int nbytes, __const int op);
  /external/valgrind/main/none/tests/
fdleak.h 7 #define DO(op) \
9 long res = op; \
11 perror(#op); \
  /system/netd/
FirewallController.cpp 72 const char* op; local
74 op = "-I";
76 op = "-D";
80 res |= execIptables(V4V6, op, LOCAL_INPUT, "-i", iface, "-j", "RETURN", NULL);
81 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-o", iface, "-j", "RETURN", NULL);
91 const char* op; local
93 op = "-I";
95 op = "-D";
99 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL);
100 res |= execIptables(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL)
117 const char* op; local
136 const char* op; local
    [all...]
  /frameworks/base/core/java/android/util/
Base64.java 73 public int op; field in class:Base64.Coder
165 if (decoder.op == decoder.output.length) {
171 byte[] temp = new byte[decoder.op];
172 System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
276 int op = 0; local
301 output[op+2] = (byte) value;
302 output[op+1] = (byte) (value >> 8);
303 output[op] = (byte) (value >> 16);
304 op += 3;
345 output[op++] = (byte) (value >> 4)
607 int op = 0; local
    [all...]
  /sdk/emulator/qtools/
opcode.h 132 inline bool isALU(Opcode op) { return (opcode_flags[op] & kCatAlu) != 0; }
133 inline bool isBranch(Opcode op) { return (opcode_flags[op] & kCatBranch) != 0; }
134 inline bool isBranchLink(Opcode op) {
135 return (opcode_flags[op] & kCatBranchLink) != 0;
137 inline bool isBranchExch(Opcode op) {
138 return (opcode_flags[op] & kCatBranchExch) != 0;
140 inline bool isLoad(Opcode op) { return (opcode_flags[op] & kCatLoad) != 0;
    [all...]
  /external/libvpx/vp8/common/mips/
idct_mips.c 35 short *op = output; local
61 op[0] = a1 + d1;
62 op[12] = a1 - d1;
63 op[4] = b1 + c1;
64 op[8] = b1 - c1;
69 op[1] = a1 + d2;
70 op[13] = a1 - d2;
71 op[5] = b1 + c2;
72 op[9] = b1 - c2;
93 op[2] = a1 + d1
261 short *op = output; local
313 unsigned int *op = (unsigned int *)output; local
    [all...]
  /external/v8/src/
token.h 210 static bool IsBinaryOp(Value op) {
211 return COMMA <= op && op <= MOD;
214 static bool IsCompareOp(Value op) {
215 return EQ <= op && op <= IN;
218 static bool IsOrderedRelationalCompareOp(Value op) {
219 return op == LT || op == LTE || op == GT || op == GTE
    [all...]
  /frameworks/base/core/java/android/content/
SyncQueue.java 57 for (SyncStorageEngine.PendingOperation op : mSyncStorageEngine.getPendingOperations()) {
58 if (op.userId != userId) continue;
61 op.account, op.userId, op.authority);
63 SyncAdapterType.newKey(op.authority, op.account.type), op.userId);
65 Log.w(TAG, "Missing sync adapter info for authority " + op.authority + ", userId "
66 + op.userId)
    [all...]

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 91011>>