Searched defs:set (Results 51 - 61 of 61) sorted by relevance

123

/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DStdTypeList.java172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(
384 public void set(int n, Type type) { method in class:StdTypeList
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpec.java67 theInterningItem.set(reg, type, local);
624 public void set(int reg, TypeBearer type, LocalItem local) { method in class:RegisterSpec.ForComparison
/dalvik/dx/src/com/android/dx/rop/type/
H A DStdTypeList.java172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(
384 public void set(int n, Type type) { method in class:StdTypeList
[all...]
/dalvik/vm/compiler/
H A DUtility.cpp288 * Mark the specified bit as "set".
329 ALOGE("Trying to clear a bit that is not set in the vector yet!");
338 * If set is true, mark all bits as 1. Otherwise mark all bits as 0.
340 void dvmCompilerMarkAllBits(BitVector *pBits, bool set) argument
342 int value = set ? -1 : 0;
353 ALOGE(" Bit %d is set", i);
382 ALOGE("Bit %d / %s is set", i, blockName);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DLocalList.java53 * this with the index for an element which was never set; if you
67 * @param entry {@code non-null;} the entry to set at {@code n}
69 public void set(int n, Entry entry) { method in class:LocalList
305 * set as given.
507 * This is the first allocation of the state set and
534 * @param specs {@code non-null;} spec set representing the locals
626 result.set(endAt, null);
640 result.set(endAt, endEntry);
652 * If the local just below (in the register set at reg-1)
780 result.set(a
[all...]
H A DDops.java941 set(SPECIAL_FORMAT);
944 set(NOP);
945 set(MOVE);
946 set(MOVE_FROM16);
947 set(MOVE_16);
948 set(MOVE_WIDE);
949 set(MOVE_WIDE_FROM16);
950 set(MOVE_WIDE_16);
951 set(MOVE_OBJECT);
952 set(MOVE_OBJECT_FROM1
1227 private static void set(Dop opcode) { method in class:Dops
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalList.java53 * this with the index for an element which was never set; if you
67 * @param entry {@code non-null;} the entry to set at {@code n}
69 public void set(int n, Entry entry) { method in class:LocalList
305 * set as given.
507 * This is the first allocation of the state set and
534 * @param specs {@code non-null;} spec set representing the locals
626 result.set(endAt, null);
640 result.set(endAt, endEntry);
652 * If the local just below (in the register set at reg-1)
780 result.set(a
[all...]
H A DDops.java944 set(SPECIAL_FORMAT);
947 set(NOP);
948 set(MOVE);
949 set(MOVE_FROM16);
950 set(MOVE_16);
951 set(MOVE_WIDE);
952 set(MOVE_WIDE_FROM16);
953 set(MOVE_WIDE_16);
954 set(MOVE_OBJECT);
955 set(MOVE_OBJECT_FROM1
1239 private static void set(Dop opcode) { method in class:Dops
[all...]
/dalvik/vm/interp/
H A DJit.cpp61 * The set of saved state from the Thread structure is:
642 * happen in this order (since dPC is set, the entry is live.
909 /* Empty trace - set to bail to interpreter */
1113 * after the new code address is set to ensure that the prefix offset
1121 void dvmJitSetCodeAddr(const u2* dPC, void *nPC, JitInstructionSetType set, argument
1140 newValue.info.instructionSet = set;
1149 * Determine if valid trace-bulding request is active. If so, set
/dalvik/dx/src/com/android/dx/io/
H A DOpcodeInfo.java941 set(SPECIAL_FORMAT);
944 set(PACKED_SWITCH_PAYLOAD);
945 set(SPARSE_SWITCH_PAYLOAD);
946 set(FILL_ARRAY_DATA_PAYLOAD);
949 set(NOP);
950 set(MOVE);
951 set(MOVE_FROM16);
952 set(MOVE_16);
953 set(MOVE_WIDE);
954 set(MOVE_WIDE_FROM1
1227 private static void set(Info opcode) { method in class:OpcodeInfo
[all...]
/dalvik/libdex/
H A DDexSwapVerify.cpp76 DexDataMap* pDataMap; // set after map verification
77 const DexFile* pDexFile; // set after intraitem verification
86 const void* previousItem; // set during section iteration
342 * one-bit-on integer, suitable for use in an int-sized bit set.
401 u4 usedBits = 0; // Bit set: one bit per section
1380 DexAnnotationSetItem* set = (DexAnnotationSetItem*) ptr; local
1384 CHECK_PTR_RANGE(set, set + 1);
1385 SWAP_FIELD4(set->size);
1386 count = set
1407 const DexAnnotationSetItem* set = (const DexAnnotationSetItem*) ptr; local
[all...]

Completed in 310 milliseconds

123