Searched refs:prev (Results 1 - 21 of 21) sorted by relevance

/dalvik/vm/compiler/
H A DIntermediateRep.c34 mir->prev = mir->next = NULL;
37 mir->prev = bb->lastMIRInsn;
49 mir->prev = mir->next = NULL;
51 bb->firstMIRInsn->prev = mir;
53 mir->prev = NULL;
61 newMIR->prev = currentMIR;
67 newMIR->next->prev = newMIR;
83 lir->prev = lir->next = NULL;
86 lir->prev = cUnit->lastLIRInsn;
100 assert(currentLIR->prev !
[all...]
H A DCompilerIR.h76 struct LIR *prev; member in struct:LIR
121 struct MIR *prev; member in struct:MIR
H A DFrontend.c1193 curBB->lastMIRInsn = insn->prev;
1194 insn->prev->next = NULL;
1195 insn->prev = NULL;
/dalvik/dx/src/com/android/dx/rop/cst/
H A DStdConstantPool.java119 Constant prev = entries[n - 1];
120 if ((prev != null) && prev.isCategory2()) {
/dalvik/vm/
H A DAtomic.c74 int64_t prev; local
80 : "=&r" (prev), "=&r" (status), "+m"(*addr)
84 return prev;
90 int64_t prev; local
99 : "=&r" (prev), "=&r" (status), "+m"(*addr)
103 return prev != oldvalue;
H A DJniInternal.h52 struct JNIEnvExt* prev; member in struct:JNIEnvExt
H A DThread.c1056 assert(thread->prev == NULL);
1059 assert(thread->prev != NULL);
1060 thread->prev->next = thread->next;
1063 thread->next->prev = thread->prev;
1064 thread->prev = thread->next = NULL;
1587 newThread->next->prev = newThread;
1588 newThread->prev = gDvm.threadList;
1993 self->next->prev = self;
1994 self->prev
[all...]
H A DThread.h208 struct Thread* prev; member in struct:Thread
H A DSync.c340 Monitor *prev, *curr; local
348 prev = &handle;
349 prev->next = curr = *mon;
353 prev->next = curr = curr->next;
356 prev = curr;
H A DJni.c497 assert(newEnv->prev == NULL);
501 vm->envList->prev = newEnv;
531 assert(extEnv->prev == NULL);
534 assert(extEnv->prev != NULL);
535 extEnv->prev->next = extEnv->next;
538 extEnv->next->prev = extEnv->prev;
1546 * the Thread that can be altered by other threads (e.g. prev/next pointers).
/dalvik/vm/test/
H A DAtomicTest.c364 int prev; local
366 prev = __atomic_inc(&tester);
369 dvmFprintf(stdout, "bionic 3 inc: %d -> %d\n", prev, tester);
370 prev = __atomic_dec(&tester);
373 dvmFprintf(stdout, "bionic 3 dec: %d -> %d\n", prev, tester);
374 prev = __atomic_swap(27, &tester);
375 dvmFprintf(stdout, "bionic swap: %d -> %d\n", prev, tester);
/dalvik/dx/src/com/android/dx/cf/code/
H A DOneLocalsArray.java128 TypeBearer prev = locals[idx - 1];
129 if ((prev != null) && prev.getType().isCategory2()) {
/dalvik/vm/jdwp/
H A DJdwpEvent.h87 struct JdwpEvent* prev; /* linked list */ member in struct:JdwpEvent
H A DJdwpEvent.c179 assert(pEvent->prev == NULL);
204 state->eventList->prev = pEvent;
226 if (pEvent->prev == NULL) {
232 pEvent->prev->next = pEvent->next;
236 pEvent->next->prev = pEvent->prev;
239 pEvent->prev = NULL;
344 assert(pEvent->prev == NULL);
/dalvik/dx/src/com/android/dx/ssa/
H A DEscapeAnalysis.java487 SsaInsn prev = getInsnForMove(def);
490 TypeBearer lengthReg = prev.getSources().get(0).getTypeBearer();
497 replaceDef(def, prev, length, newRegs);
500 deletedInsns.add(prev);
507 replaceUse(use, prev, newRegs, deletedInsns);
530 * @param prev {@code non-null;} instruction for instantiating new array
535 private void replaceDef(SsaInsn def, SsaInsn prev, int length, argument
557 * @param prev {@code non-null;} instruction for instantiating new array
563 private void replaceUse(SsaInsn use, SsaInsn prev, argument
611 TypeBearer lengthReg = prev
[all...]
/dalvik/vm/interp/
H A DJit.c579 u4 prev; local
593 prev = idx;
599 (idx == prev))
602 if (idx != prev) {
611 oldValue = gDvmJit.pJitEntryTable[prev].u;
616 &gDvmJit.pJitEntryTable[prev].u.infoWord) != 0);
/dalvik/vm/compiler/codegen/arm/
H A DArmLIR.h779 #define PREV_LIR(lir) ((ArmLIR *) lir->generic.prev)
782 #define PREV_LIR_LVALUE(lir) (lir)->generic.prev
/dalvik/vm/arch/arm/
H A DCallEABI.S312 addeq r2, #2 @ yes, treat prev as pad, incr 2 now
/dalvik/vm/alloc/
H A DCopying.c811 /* TODO(cshapiro): pad the current (prev) block. */
1107 Object *prev, *next; local
1115 prev = next = NULL;
1136 if (prev != NULL) {
1138 dvmSetFieldObject(prev, queueNextOffset, next);
1142 prev = ref;
/dalvik/vm/analysis/
H A DRegisterMap.c1311 int prev, cur, bit; local
1313 prev = prevData[regByte];
1317 if (((prev >> bit) & 1) != ((cur >> bit) & 1)) {
1332 LOGE("WEIRD: bit=%d (%d/%d), prev=%02x cur=%02x\n",
1334 prev, cur);
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 214 milliseconds