/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...] |
ast_expr.cpp | 28 ast_expression::operator_string(enum ast_operators op) 76 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0])); 78 return operators[op];
|
/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/ |
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...] |
/external/bluetooth/glib/gio/ |
gmountoperation.h | 63 void (* ask_password) (GMountOperation *op, 69 void (* ask_question) (GMountOperation *op, 73 void (* reply) (GMountOperation *op, 76 void (* aborted) (GMountOperation *op); 96 const char * g_mount_operation_get_username (GMountOperation *op); 97 void g_mount_operation_set_username (GMountOperation *op, 99 const char * g_mount_operation_get_password (GMountOperation *op); 100 void g_mount_operation_set_password (GMountOperation *op, 102 gboolean g_mount_operation_get_anonymous (GMountOperation *op); 103 void g_mount_operation_set_anonymous (GMountOperation *op, [all...] |
gmountoperation.c | 199 GMountOperation *op = data; local 201 g_mount_operation_reply (op, G_MOUNT_OPERATION_UNHANDLED); 206 ask_password (GMountOperation *op, 214 g_object_ref (op), 219 ask_question (GMountOperation *op, 225 g_object_ref (op), 246 * @op: a #GMountOperation requesting a password. 270 * @op: a #GMountOperation asking a question. 293 * @op: a #GMountOperation. 440 * @op: a #GMountOperation [all...] |
/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);
|
/external/qemu/android/skin/ |
scaler.c | 114 ScaleOp op; local 122 op.scale = scaler->scale; 123 op.src_pitch = src_surface->pitch; 124 op.src_line = src_surface->pixels; 125 op.src_w = src_surface->w; 126 op.src_h = src_surface->h; 127 op.dst_pitch = dst_surface->pitch; 128 op.dst_line = dst_surface->pixels; 131 op.rd.x = (int)(sx * scaler->scale + scaler->xdisp); 132 op.rd.y = (int)(sy * scaler->scale + scaler->ydisp) [all...] |
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/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/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/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); \
|
/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/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...] |