Searched refs:op (Results 1 - 25 of 26) sorted by relevance

12

/dalvik/dexdump/
H A DOpCodeNames.c326 const char* getOpcodeName(OpCode op) argument
328 return gOpNames[op];
H A DOpCodeNames.h24 const char* getOpcodeName(OpCode op);
/dalvik/vm/alloc/
H A DHeapWorker.h91 * @param op The operation to perform on the returned object.
95 Object *dvmGetNextHeapWorkerObject(HeapWorkerOperation *op);
H A DHeapWorker.c230 HeapWorkerOperation op; local
246 while ((obj = dvmGetNextHeapWorkerObject(&op)) != NULL) {
256 if (op == WORKER_FINALIZE) {
269 if (op & WORKER_CLEAR) {
278 if (op & WORKER_ENQUEUE) {
290 assert((op & WORKER_CLEAR) == 0);
291 if (op & WORKER_ENQUEUE) {
H A DHeap.c203 Object *dvmGetNextHeapWorkerObject(HeapWorkerOperation *op) argument
209 assert(op != NULL);
234 *op = workBits;
239 *op = WORKER_FINALIZE;
H A DMarkSweep.c317 Object **op; local
367 op = refs->table;
368 while ((uintptr_t)op < (uintptr_t)refs->nextEntry) {
369 dvmMarkObjectNonNull(*(op++));
/dalvik/vm/mterp/armv5te/
H A Dunop.S4 * specifies an instruction that performs "result = op r0".
15 $preinstr @ optional op; may set condition codes
17 $instr @ r0<- op, r0-r3 changed
H A Dbinop.S4 * specifies an instruction that performs "result = r0 op r1".
30 $preinstr @ optional op; may set condition codes
31 $instr @ $result<- op, r0-r3 changed
H A Dbinop2addr.S4 * that specifies an instruction that performs "result = r0 op r1".
28 $preinstr @ optional op; may set condition codes
29 $instr @ $result<- op, r0-r3 changed
H A DbinopLit8.S4 * that specifies an instruction that performs "result = r0 op r1".
27 $preinstr @ optional op; may set condition codes
28 $instr @ $result<- op, r0-r3 changed
H A DunopNarrower.S4 * that specifies an instruction that performs "result = op r0/r1", where
19 $preinstr @ optional op; may set condition codes
20 $instr @ r0<- op, r0-r3 changed
H A DunopWide.S4 * specifies an instruction that performs "result = op r0/r1".
17 $preinstr @ optional op; may set condition codes
18 $instr @ r0/r1<- op, r2-r3 changed
H A DunopWider.S4 * that specifies an instruction that performs "result = op r0", where
15 $preinstr @ optional op; may set condition codes
17 $instr @ r0<- op, r0-r3 changed
H A DbinopWide.S4 * specifies an instruction that performs "result = r0-r1 op r2-r3".
33 $preinstr @ optional op; may set condition codes
34 $instr @ result<- op, r0-r3 changed
H A DbinopWide2addr.S4 * that specifies an instruction that performs "result = r0-r1 op r2-r3".
30 $preinstr @ optional op; may set condition codes
31 $instr @ result<- op, r0-r3 changed
H A DbinopLit16.S4 * that specifies an instruction that performs "result = r0 op r1".
26 $instr @ $result<- op, r0-r3 changed
/dalvik/vm/mterp/
H A Dgen-mterp.py125 raise DataParseError("op requires exactly two arguments")
127 raise DataParseError("op statements must be between opStart/opEnd")
186 op = opcodes[i]
188 if opcode_locations.has_key(op):
189 location = opcode_locations[op]
202 # too annoying to try to slide it in after the alignment psuedo-op, so
229 op = opcodes[opindex]
230 source = "%s/%s.c" % (location, op)
233 dict.update({ "opcode":op, "opnum":opindex })
244 op
[all...]
/dalvik/vm/mterp/out/
H A DInterpAsm-armv4t.S366 /* op vA, vB */
382 /* op vAA, vBBBB */
397 /* op vAAAA, vBBBB */
465 /* op vA, vB */
483 /* op vAA, vBBBB */
500 /* op vAAAA, vBBBB */
516 /* op vAA */
546 /* op vAA */
589 /* op vAA */
624 /* op vA
[all...]
H A DInterpAsm-armv5te.S366 /* op vA, vB */
382 /* op vAA, vBBBB */
397 /* op vAAAA, vBBBB */
465 /* op vA, vB */
483 /* op vAA, vBBBB */
500 /* op vAAAA, vBBBB */
516 /* op vAA */
546 /* op vAA */
589 /* op vAA */
624 /* op vA
[all...]
/dalvik/libcore/openssl/src/main/java/org/openssl/
H A DNativeBN.java100 public static native boolean modifyBit(int a, int n, int op); argument
102 // op: 0 = reset; 1 = set; -1 = flip
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopperMachine.java108 * null-ok; the appropriate <code>return</code> op or <code>null</code>
319 * arrangement specified by the stack op pattern.
583 * The op athrow is the only one where it's possible
695 * @param op non-null; the opcode to use
698 private void updateReturnOp(Rop op, SourcePosition pos) { argument
699 if (op == null) {
700 throw new NullPointerException("op == null");
708 returnOp = op;
711 if (returnOp != op) {
712 throw new SimException("return op mismatc
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java46 String op = insn.getOpcode().getName();
51 sb.append(op);
/dalvik/libcore/math/src/main/java/java/math/
H A DBigInt.java256 public void modifyBit(int n, int op) { argument
257 // op: 0 = reset; 1 = set; -1 = flip
258 Check(NativeBN.modifyBit(this.bignum, n, op));
/dalvik/vm/
H A DThread.c3319 Object **op; local
3328 op = refTable->table;
3329 while ((uintptr_t)op < (uintptr_t)refTable->nextEntry) {
3330 dvmMarkObjectNonNull(*(op++));
/dalvik/libcore/openssl/src/main/native/
H A DBNInterface.c596 static jboolean NativeBN_modifyBit(JNIEnv* env, jclass cls, BIGNUM* a, int n, int op) { argument
599 switch (op) {

Completed in 3164 milliseconds

12