Searched defs:op (Results 1 - 18 of 18) sorted by relevance

/dalvik/dexdump/
H A DOpCodeNames.c326 const char* getOpcodeName(OpCode op) argument
328 return gOpNames[op];
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java108 * @param op The operation object.
111 public boolean visitBinaryOperation(ExpressionOwner owner, Operation op) argument
120 * @param op The operation object.
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) argument
/dalvik/vm/compiler/codegen/arm/FP/
H A DThumb2VFP.c21 int op = kThumbBkpt; local
31 op = kThumb2Vadds;
35 op = kThumb2Vsubs;
39 op = kThumb2Vdivs;
43 op = kThumb2Vmuls;
57 newLIR3(cUnit, op, rlResult.lowReg, rlSrc1.lowReg, rlSrc2.lowReg);
66 int op = kThumbBkpt; local
72 op = kThumb2Vaddd;
76 op = kThumb2Vsubd;
80 op
113 int op = kThumbBkpt; local
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopperMachine.java108 * {@code null-ok;} the appropriate {@code return} op or {@code null}
320 * arrangement specified by the stack op pattern.
587 * The op athrow is the only one where it's possible
700 * @param op {@code non-null;} the opcode to use
703 private void updateReturnOp(Rop op, SourcePosition pos) { argument
704 if (op == null) {
705 throw new NullPointerException("op == null");
713 returnOp = op;
716 if (returnOp != op) {
717 throw new SimException("return op mismatc
[all...]
/dalvik/vm/alloc/
H A DHeapWorker.c258 HeapWorkerOperation op; local
266 while ((obj = dvmGetNextHeapWorkerObject(&op)) != NULL) {
276 if (op == WORKER_FINALIZE) {
284 if (op & WORKER_ENQUEUE) {
H A DHeap.c219 Object *dvmGetNextHeapWorkerObject(HeapWorkerOperation *op) argument
225 assert(op != NULL);
250 *op = workBits;
255 *op = WORKER_FINALIZE;
H A DMarkSweep.c288 Object **op; local
338 op = refs->table;
339 while ((uintptr_t)op < (uintptr_t)refs->nextEntry) {
340 dvmMarkObjectNonNull(*(op++));
/dalvik/libcore/math/src/main/java/java/math/
H A DBigInt.java248 public void modifyBit(int n, int op) { argument
249 // op: 0 = reset; 1 = set; -1 = flip
250 Check(NativeBN.modifyBit(this.bignum, n, op));
/dalvik/libcore/openssl/src/main/java/org/openssl/
H A DNativeBN.java94 public static native boolean modifyBit(int a, int n, int op); argument
96 // op: 0 = reset; 1 = set; -1 = flip
/dalvik/libcore/openssl/src/main/native/
H A DBNInterface.c498 static jboolean NativeBN_modifyBit(JNIEnv* env, jclass cls, BIGNUM* a, int n, int op) { argument
501 switch (op) {
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java742 * @param pos The position where the op is to be inserted.
743 * @param length The length of the operation space in the op map.
744 * @param op The op code to the inserted.
746 void insertOp(int pos, int length, int op) argument
756 m_ops.setOp(pos,op);
766 * @param op The op code to the inserted.
768 void appendOp(int length, int op) argument
773 m_ops.setOp(totalLen, op);
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.c123 static ArmLIR *opNone(CompilationUnit *cUnit, OpKind op) argument
126 switch (op) {
142 static ArmLIR *opImm(CompilationUnit *cUnit, OpKind op, int value) argument
145 switch (op) {
159 static ArmLIR *opReg(CompilationUnit *cUnit, OpKind op, int rDestSrc) argument
162 switch (op) {
173 static ArmLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
181 switch (op) {
222 if (op == kOpCmp)
230 static ArmLIR *opRegRegReg(CompilationUnit *cUnit, OpKind op, in argument
258 opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int value) argument
353 opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int rSrc2) argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.c217 static ArmLIR *opNone(CompilationUnit *cUnit, OpKind op) argument
220 switch (op) {
235 static ArmLIR *opImm(CompilationUnit *cUnit, OpKind op, int value) argument
238 switch (op) {
251 static ArmLIR *opReg(CompilationUnit *cUnit, OpKind op, int rDestSrc) argument
254 switch (op) {
264 static ArmLIR *opRegRegShift(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
269 switch (op) {
380 static ArmLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1, argument
383 return opRegRegShift(cUnit, op, rDestSrc
386 opRegRegRegShift(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2, int shift) argument
450 opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int rSrc2) argument
456 opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest, int rSrc1, int value) argument
579 opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1, int value) argument
[all...]
/dalvik/vm/
H A DThread.c3982 Object **op; local
3991 op = refTable->table;
3992 while ((uintptr_t)op < (uintptr_t)refTable->nextEntry) {
3993 dvmMarkObjectNonNull(*(op++));
3999 Object** op = pRefTable->table; local
4004 Object* obj = *op;
4007 op++;
H A DJni.c708 * topmost local reference frame is a no-op. DeleteLocalRef returns
723 * topmost local reference frame is a no-op. DeleteLocalRef returns
1154 Object** op; local
1160 op = pRefTable->table;
1165 Object* obj = *op;
1168 op++;
1171 op = gDvm.jniGlobalRefTable.table;
1172 while ((uintptr_t)op < (uintptr_t)gDvm.jniGlobalRefTable.nextEntry) {
1173 dvmMarkObjectNonNull(*(op++));
1182 op
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DAssemble.c1326 static u4 getSkeleton(ArmOpCode op) argument
1328 return EncodingMap[op].skeleton;
2259 // Determine whether the mem op is a store or load
2365 // Handle the decoded mem op accordingly
2423 // Determine whether the mem op is a store or load
2515 // Handle the decoded mem op accordingly
H A DCodegenDriver.c207 /* Branch to mem op decode template */
661 LOGE("Invalid long arith op");
687 OpKind op = kOpBkpt; local
698 op = kOpNeg;
702 op = kOpMvn;
707 op = kOpAdd;
711 op = kOpSub;
715 op = kOpMul;
734 op = kOpAnd;
738 op
1954 OpKind op = 0; /* Make gcc happy */ local
3507 OpCode op = decInsn->opCode; local
[all...]
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp2302 static bool translateFdSet(JNIEnv* env, jobjectArray fdArray, jint count, fd_set& fdSet, jint* flagArray, size_t offset, jint op) { argument
2313 flagArray[i + offset] = op;

Completed in 402 milliseconds