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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libdex/
OpCodeNames.c 329 const char* dexGetOpcodeName(OpCode op)
331 assert(op >= 0 && op < kNumDalvikInstructions);
332 return gOpNames[op];
OpCodeNames.h 25 const char* dexGetOpcodeName(OpCode op);
  /external/webkit/WebCore/dom/
Clipboard.cpp 57 static DragOperation dragOpFromIEOp(const String& op)
60 if (op == "uninitialized")
62 if (op == "none")
64 if (op == "copy")
66 if (op == "link")
68 if (op == "move")
70 if (op == "copyLink")
72 if (op == "copyMove")
74 if (op == "linkMove")
76 if (op == "all"
105 DragOperation op = dragOpFromIEOp(m_effectAllowed); local
112 DragOperation op = dragOpFromIEOp(m_dropEffect); local
    [all...]
  /system/core/debuggerd/
pr-support.c 114 _uw op; local
121 op = next_unwind_byte_with_ptrace (uws, pid);
122 if (op == CODE_FINISH)
136 if ((op & 0x80) == 0)
141 offset = ((op & 0x3f) << 2) + 4;
143 if (op & 0x40)
151 if ((op & 0xf0) == 0x80)
153 op = (op << 8) | next_unwind_byte_with_ptrace (uws, pid);
154 if (op == 0x8000
    [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/qemu/android/skin/
scaler.c 92 ScaleOp op; local
100 op.scale = scaler->scale;
101 op.src_pitch = src_surface->pitch;
102 op.src_line = src_surface->pixels;
103 op.src_w = src_surface->w;
104 op.src_h = src_surface->h;
105 op.dst_pitch = dst_surface->pitch;
106 op.dst_line = dst_surface->pixels;
109 op.rd.x = (int)(sx * scaler->scale + scaler->xdisp);
110 op.rd.y = (int)(sy * scaler->scale + scaler->ydisp)
    [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/chromium/third_party/zlib/
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/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...]
  /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...]
read_addr.cpp 23 const char *op = "ld"; local
25 op = "st";
26 printf("%lld 0x%08x %s\n", time, addr, op);
  /bionic/libc/kernel/arch-x86/asm/
percpu_32.h 25 #define percpu_to_op(op,var,val) do { typedef typeof(var) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(var)) { case 1: asm(op "b %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 2: asm(op "w %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 4: asm(op "l %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; default: __bad_percpu_size(); } } while (0)
27 #define percpu_from_op(op,var) ({ typeof(var) ret__; switch (sizeof(var)) { case 1: asm(op "b "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; case 2: asm(op "w "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; case 4: asm(op "l "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; default: __bad_percpu_size(); } ret__; })
  /bionic/libc/kernel/common/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /dalvik/vm/compiler/template/armv5te-vfp/
funop.S 3 * "instr" line that specifies an instruction that performs "s1 = op s0".
13 $instr @ s1<- op s0
funopNarrower.S 3 * "instr" line that specifies an instruction that performs "s0 = op d0".
13 $instr @ s0<- op d0
funopWider.S 3 * "instr" line that specifies an instruction that performs "d0 = op s0".
13 $instr @ d0<- op s0
  /development/ndk/platforms/android-3/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /development/ndk/platforms/android-5/arch-x86/include/asm/
percpu_32.h 25 #define percpu_to_op(op,var,val) do { typedef typeof(var) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(var)) { case 1: asm(op "b %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 2: asm(op "w %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 4: asm(op "l %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; default: __bad_percpu_size(); } } while (0)
27 #define percpu_from_op(op,var) ({ typeof(var) ret__; switch (sizeof(var)) { case 1: asm(op "b "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; case 2: asm(op "w "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; case 4: asm(op "l "__percpu_seg"%1,%0" : "=r" (ret__) : "m" (var)); break; default: __bad_percpu_size(); } ret__; })
  /external/kernel-headers/original/asm-generic/
ipc.h 29 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>