Searched refs:u4 (Results 176 - 200 of 311) sorted by relevance

1234567891011>>

/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdsSection.java86 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
87 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
H A DTypeIdsSection.java89 out.annotate(4, "type_ids_size: " + Hex.u4(sz));
90 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
H A DAnnotationsDirectoryItem.java293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
295 Hex.u4(fieldsSize));
297 Hex.u4(methodsSize));
299 Hex.u4(parametersSize));
H A DStringDataItem.java77 "utf16_size: " + Hex.u4(utf16Size));
H A DStringIdItem.java102 out.annotate(4, " string_data_off: " + Hex.u4(dataOff));
H A DTypeIdItem.java65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
/dalvik/vm/native/
H A Djava_lang_reflect_Array.cpp30 static void Dalvik_java_lang_reflect_Array_createObjectArray(const u4* args,
66 static void Dalvik_java_lang_reflect_Array_createMultiArray(const u4* args,
/dalvik/vm/mterp/out/
H A DInterpC-x86-atom.cpp137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
146 /* get a long from an array of u4 */
147 static inline s8 getLongFromArray(const u4* ptr, int idx)
150 union { s8 ll; u4 parts[2]; } conv;
163 /* store a long into an array of u4 */
164 static inline void putLongToArray(u4* ptr, int idx, s8 val)
167 union { s8 ll; u4 parts[2]; } conv;
178 /* get a double from an array of u4 */
179 static inline double getDoubleFromArray(const u4* ptr, int idx)
182 union { double d; u4 part
[all...]
H A DInterpC-x86.cpp137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
146 /* get a long from an array of u4 */
147 static inline s8 getLongFromArray(const u4* ptr, int idx)
150 union { s8 ll; u4 parts[2]; } conv;
163 /* store a long into an array of u4 */
164 static inline void putLongToArray(u4* ptr, int idx, s8 val)
167 union { s8 ll; u4 parts[2]; } conv;
178 /* get a double from an array of u4 */
179 static inline double getDoubleFromArray(const u4* ptr, int idx)
182 union { double d; u4 part
[all...]
H A DInterpC-armv5te-vfp.cpp137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
146 /* get a long from an array of u4 */
147 static inline s8 getLongFromArray(const u4* ptr, int idx)
150 union { s8 ll; u4 parts[2]; } conv;
163 /* store a long into an array of u4 */
164 static inline void putLongToArray(u4* ptr, int idx, s8 val)
167 union { s8 ll; u4 parts[2]; } conv;
178 /* get a double from an array of u4 */
179 static inline double getDoubleFromArray(const u4* ptr, int idx)
182 union { double d; u4 part
[all...]
H A DInterpC-armv5te.cpp137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
146 /* get a long from an array of u4 */
147 static inline s8 getLongFromArray(const u4* ptr, int idx)
150 union { s8 ll; u4 parts[2]; } conv;
163 /* store a long into an array of u4 */
164 static inline void putLongToArray(u4* ptr, int idx, s8 val)
167 union { s8 ll; u4 parts[2]; } conv;
178 /* get a double from an array of u4 */
179 static inline double getDoubleFromArray(const u4* ptr, int idx)
182 union { double d; u4 part
[all...]
H A DInterpC-armv7-a-neon.cpp137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
146 /* get a long from an array of u4 */
147 static inline s8 getLongFromArray(const u4* ptr, int idx)
150 union { s8 ll; u4 parts[2]; } conv;
163 /* store a long into an array of u4 */
164 static inline void putLongToArray(u4* ptr, int idx, s8 val)
167 union { s8 ll; u4 parts[2]; } conv;
178 /* get a double from an array of u4 */
179 static inline double getDoubleFromArray(const u4* ptr, int idx)
182 union { double d; u4 part
[all...]
/dalvik/vm/mterp/c/
H A DgotoTargets.cpp15 u4* contents;
18 u4 arg5;
81 contents = (u4*)(void*)newArray->contents;
182 (u4) baseMethod->methodIndex,
190 (u4) baseMethod->methodIndex,
553 fp = (u4*)saveArea->prevFrame;
709 //fp = (u4*) self->interpSave.curFrame;
768 u4* outs;
783 u4 count = vsrc1 >> 4;
831 u4* newF
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationsDirectoryItem.java293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff));
295 Hex.u4(fieldsSize));
297 Hex.u4(methodsSize));
299 Hex.u4(parametersSize));
H A DStringDataItem.java77 "utf16_size: " + Hex.u4(utf16Size));
H A DStringIdItem.java104 out.annotate(4, " string_data_off: " + Hex.u4(dataOff));
H A DTypeIdItem.java67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstInteger.java89 return "int{0x" + Hex.u4(value) + " / " + value + '}';
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstInteger.java89 return "int{0x" + Hex.u4(value) + " / " + value + '}';
/dalvik/vm/analysis/
H A DVerifySubs.cpp103 *pOffset = insns[1] | (((u4) insns[2]) << 16);
/dalvik/vm/arch/generic/
H A DCall.cpp68 const u4* argv, const char* shorty, void* func, JValue* pReturn)
/dalvik/vm/mterp/armv5te/
H A Ddebug.cpp56 *(u4*)fp);
/dalvik/vm/oo/
H A DAccessCheck.cpp89 const ClassObject* accessTo, u4 accessFlags)
/dalvik/vm/alloc/
H A DDdmHeap.cpp43 * [u4]: number of heaps
46 * [u4]: heap ID
49 * [u4]: max heap size in bytes (-Xmx)
50 * [u4]: current heap size in bytes
51 * [u4]: current number of bytes allocated
52 * [u4]: current number of objects allocated
55 (sizeof(u4) + (numHeaps) * (5 * sizeof(u4) + sizeof(u1) + sizeof(u8)))
243 /* [u4]: heap ID */
249 /* [u4]
[all...]
/dalvik/vm/interp/
H A DInterp.cpp540 u4* fp;
541 u4* prevFp = NULL;
550 if (!dvmIsBreakFrame((u4*)fp) && !dvmIsNativeMethod(method))
567 assert(!dvmIsBreakFrame((u4*)fp));
657 void dvmReportPreNativeInvoke(const Method* methodToCall, Thread* self, u4* fp)
680 void dvmReportPostNativeInvoke(const Method* methodToCall, Thread* self, u4* fp)
731 static void updateDebugger(const Method* method, const u2* pc, const u4* fp,
895 Object* dvmGetThisPtr(const Method* method, const u4* fp)
949 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly)
973 if (locals[j].registerNum == (u4)
[all...]

Completed in 5147 milliseconds

1234567891011>>