/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Hex.java | 64 public static String u4(int v) { method in class:Hex 118 return u4(v); 291 default: astr = Hex.u4(outOffset); break;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationSetItem.java | 139 out.annotate(4, " size: " + Hex.u4(size)); 150 Hex.u4(offset));
|
ParameterAnnotationStruct.java | 115 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); 117 Hex.u4(annotationsOff));
|
StringIdsSection.java | 91 out.annotate(4, "string_ids_size: " + Hex.u4(sz)); 92 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
|
TypeIdsSection.java | 89 out.annotate(4, "type_ids_size: " + Hex.u4(sz)); 90 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
|
AnnotationsDirectoryItem.java | 293 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff)); 295 Hex.u4(fieldsSize)); 297 Hex.u4(methodsSize)); 299 Hex.u4(parametersSize));
|
StringDataItem.java | 77 "utf16_size: " + Hex.u4(utf16Size));
|
StringIdItem.java | 104 out.annotate(4, " string_data_off: " + Hex.u4(dataOff));
|
TypeIdItem.java | 67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
|
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationSetItem.java | 139 out.annotate(4, " size: " + Hex.u4(size)); 150 Hex.u4(offset));
|
ParameterAnnotationStruct.java | 114 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); 116 Hex.u4(annotationsOff));
|
StringIdsSection.java | 85 out.annotate(4, "string_ids_size: " + Hex.u4(sz)); 86 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
|
TypeIdsSection.java | 94 out.annotate(4, "type_ids_size: " + Hex.u4(sz)); 95 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
|
AnnotationsDirectoryItem.java | 292 out.annotate(4, " class_annotations_off: " + Hex.u4(classOff)); 294 Hex.u4(fieldsSize)); 296 Hex.u4(methodsSize)); 298 Hex.u4(parametersSize));
|
StringDataItem.java | 77 "utf16_size: " + Hex.u4(utf16Size));
|
/dalvik/vm/native/ |
java_lang_reflect_Array.cpp | 30 static void Dalvik_java_lang_reflect_Array_createObjectArray(const u4* args, 66 static void Dalvik_java_lang_reflect_Array_createMultiArray(const u4* args,
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationSetItem.java | 139 out.annotate(4, " size: " + Hex.u4(size)); 150 Hex.u4(offset));
|
ParameterAnnotationStruct.java | 115 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); 117 Hex.u4(annotationsOff));
|
StringIdsSection.java | 86 out.annotate(4, "string_ids_size: " + Hex.u4(sz)); 87 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
|
TypeIdsSection.java | 89 out.annotate(4, "type_ids_size: " + Hex.u4(sz)); 90 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
|
/dalvik/vm/compiler/codegen/mips/ |
Assemble.cpp | 516 u4 bits = encoder->skeleton; 519 u4 operand; 520 u4 value; 664 u4 *chainCellOffsetP = (u4 *) (base + PROF_COUNTER_ADDR_SIZE); 665 u4 chainCellOffset = *chainCellOffsetP; 670 static inline u4 getChainCellSize(const ChainCellCounts* pChainCellCounts) 714 u4 *ptr = (u4 *) cUnit->codeBuffer; [all...] |
/dalvik/vm/mterp/out/ |
InterpC-mips.cpp | 145 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly); 154 /* get a long from an array of u4 */ 155 static inline s8 getLongFromArray(const u4* ptr, int idx) 158 union { s8 ll; u4 parts[2]; } conv; 171 /* store a long into an array of u4 */ 172 static inline void putLongToArray(u4* ptr, int idx, s8 val) 175 union { s8 ll; u4 parts[2]; } conv; 186 /* get a double from an array of u4 */ 187 static inline double getDoubleFromArray(const u4* ptr, int idx) 190 union { double d; u4 parts[2]; } conv [all...] |
InterpC-x86.cpp | 145 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly); 154 /* get a long from an array of u4 */ 155 static inline s8 getLongFromArray(const u4* ptr, int idx) 158 union { s8 ll; u4 parts[2]; } conv; 171 /* store a long into an array of u4 */ 172 static inline void putLongToArray(u4* ptr, int idx, s8 val) 175 union { s8 ll; u4 parts[2]; } conv; 186 /* get a double from an array of u4 */ 187 static inline double getDoubleFromArray(const u4* ptr, int idx) 190 union { double d; u4 parts[2]; } conv [all...] |
/dalvik/vm/mterp/c/ |
gotoTargets.cpp | 15 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* newFp [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstInteger.java | 89 return "int{0x" + Hex.u4(value) + " / " + value + '}';
|