HomeSort by relevance Sort by last modified time
    Searched refs:u4 (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/libdex/
DexDebugInfo.h 30 typedef int (*DexDebugNewPositionCb)(void *cnxt, u4 address, u4 lineNum);
36 typedef void (*DexDebugNewLocalCb)(void *cnxt, u2 reg, u4 startAddress,
37 u4 endAddress, const char *name, const char *descriptor,
50 u4 protoIdx,
51 u4 accessFlags,
DexDataMap.h 27 u4 count; /* number of items currently in the map */
28 u4 max; /* maximum number of items that may be held */
29 u4* offsets; /* array of item offsets */
36 DexDataMap* dexDataMapAlloc(u4 maxCount);
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
53 int dexDataMapGet(DexDataMap* map, u4 offset);
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) {
DexClass.h 29 u4 staticFieldsSize;
30 u4 instanceFieldsSize;
31 u4 directMethodsSize;
32 u4 virtualMethodsSize;
37 u4 fieldIdx; /* index to a field_id_item */
38 u4 accessFlags;
43 u4 methodIdx; /* index to a method_id_item */
44 u4 accessFlags;
45 u4 codeOff; /* file offset to a code_item */
77 DexField* pField, u4* lastIndex)
    [all...]
DexCatch.cpp 26 u4 dexGetFirstHandlerOffset(const DexCode* pCode) {
40 u4 dexGetHandlersSize(const DexCode* pCode) {
53 u4 address) {
61 u4 start = pTry->startAddr;
68 u4 end = start + pTry->insnCount;
85 u4 dexCatchIteratorGetEndOffset(DexCatchIterator* pIterator,
89 return (u4) (pIterator->pEncodedData - dexGetCatchHandlerData(pCode));
DexOptData.h 40 u4 dexComputeOptChecksum(const DexOptHeader* pOptHeader);
DexFile.h 36 #include "vm/Common.h" // basic type defs, e.g. u1/u2/u4/u8, and LOG
218 u4 checksum; /* adler32 checksum */
220 u4 fileSize; /* length of entire file */
221 u4 headerSize; /* offset to start of next section */
222 u4 endianTag;
223 u4 linkSize;
224 u4 linkOff;
225 u4 mapOff;
226 u4 stringIdsSize;
227 u4 stringIdsOff
    [all...]
DexOptData.cpp 37 u4 dexComputeOptChecksum(const DexOptHeader* pOptHeader)
45 return (u4) adler32(adler, start, end - start);
53 const u4* pOpt = (const u4*) pOptStart;
54 u4 optLength = (const u1*) pOptEnd - (const u1*) pOptStart;
91 u4 size = *(pOpt + 1);
98 u4 roundedSize = (size + 8 + 7) & ~7;
99 const u4* pNextOpt = pOpt + (roundedSize / sizeof(u4));
DexCatch.h 31 u4 typeIdx; /* type index of the caught exception type */
32 u4 address; /* handler address */
38 u4 dexGetFirstHandlerOffset(const DexCode* pCode);
41 u4 dexGetHandlersSize(const DexCode* pCode);
50 u4 countRemaining;
83 const DexCode* pCode, u4 offset)
99 u4 typeIdx = readUnsignedLeb128(&pIterator->pEncodedData);
110 u4 dexCatchIteratorGetEndOffset(DexCatchIterator* pIterator,
115 u4 address);
121 const DexCode* pCode, u4 address)
    [all...]
DexDataMap.cpp 28 DexDataMap* dexDataMapAlloc(u4 maxCount) {
39 if (!safe_mul(&size, maxCount, sizeof(u4) + sizeof(u2)) ||
52 map->offsets = (u4*) (map + 1);
74 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) {
94 int dexDataMapGet(DexDataMap* map, u4 offset) {
100 u4* offsets = map->offsets;
104 u4 guess = offsets[guessIdx];
125 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) {
InstrUtils.h 130 u4 vA;
131 u4 vB;
133 u4 vC;
134 u4 arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */
144 assert((u4) opcode < kNumPackedOpcodes);
160 assert((u4) opcode < kNumPackedOpcodes);
177 assert((u4) opcode < kNumPackedOpcodes);
186 assert((u4) opcode < kNumPackedOpcodes);
DexUtf.h 73 extern u4 DEX_MEMBER_VALID_LOW_ASCII[4];
88 u4 wordIdx = c >> 5;
89 u4 bitIdx = c & 0x1f;
DexSwapVerify.cpp 49 static u4 endianSwapU4(u4 value) {
75 u4 fileLen;
84 u4* pDefinedClassBits;
92 static inline u4 fileOffset(const CheckState* state, const void* ptr) {
99 static inline void* filePointer(const CheckState* state, u4 offset) {
191 #_field, (u4)(_field), #_limit, (u4)(_limit)); \
210 #_field, (u4)(_field), #_limit, (u4)(_limit));
    [all...]
DexDebugInfo.cpp 86 u4 stringIdx = readUnsignedLeb128(pStream);
102 u4 typeIdx = readUnsignedLeb128(pStream);
120 static void emitLocalCbIfLive(void *cnxt, int reg, u4 endAddress,
145 u4 protoIdx,
146 u4 accessFlags,
153 u4 insnsSize = pCode->insnsSize;
154 u4 line = readUnsignedLeb128(&stream);
155 u4 parametersSize = readUnsignedLeb128(&stream);
157 u4 address = 0;
316 u4 protoIdx
    [all...]
DexClass.cpp 28 static bool verifyUlebs(const u1* pData, const u1* pLimit, u4 count) {
30 u4 i;
64 DexField* pField, u4* lastIndex) {
85 DexMethod* pMethod, u4* lastIndex) {
106 u4 lastIndex;
127 u4 i;
  /external/qemu/distrib/sdl-1.2.15/src/video/aalib/
SDL_aaevents_c.h 31 int u1,int u2,int u3, int u4);
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgaevents_c.h 31 int u1,int u2,int u3, int u4);
  /dalvik/vm/
Profile.h 128 u4 cpuClockDiff = 0; \
129 u4 wallClockDiff = 0; \
140 u4 cpuClockDiff = 0; \
141 u4 wallClockDiff = 0; \
152 u4 cpuClockDiff = 0; \
153 u4 wallClockDiff = 0; \
162 void dvmMethodTraceReadClocks(Thread* self, u4* cpuClockDiff,
163 u4* wallClockDiff);
165 u4 cpuClockDiff, u4 wallClockDiff)
    [all...]
  /external/pixman/test/
prng-test.c 34 typedef uint32_t u4; typedef
35 typedef struct ranctx { u4 a; u4 b; u4 c; u4 d; } ranctx;
38 u4 ranval( ranctx *x ) {
39 u4 e = x->a - rot(x->b, 27);
47 void raninit( ranctx *x, u4 seed ) {
48 u4 i;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderItem.java 79 Hex.u4(file.getFileSize()));
80 out.annotate(4, "header_size: " + Hex.u4(HEADER_SIZE));
81 out.annotate(4, "endian_tag: " + Hex.u4(ENDIAN_TAG));
84 out.annotate(4, "map_off: " + Hex.u4(mapOff));
116 out.annotate(4, "data_size: " + Hex.u4(dataSize));
117 out.annotate(4, "data_off: " + Hex.u4(dataOff));
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderItem.java 71 Hex.u4(file.getFileSize()));
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize));
109 out.annotate(4, "data_off: " + Hex.u4(dataOff));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderItem.java 71 Hex.u4(file.getFileSize()));
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
76 out.annotate(4, "map_off: " + Hex.u4(mapOff));
108 out.annotate(4, "data_size: " + Hex.u4(dataSize));
109 out.annotate(4, "data_off: " + Hex.u4(dataOff));
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 46 public void write(short u0, short u1, short u2, short u3, short u4);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeOutput.java 46 public void write(short u0, short u1, short u2, short u3, short u4);
  /external/e2fsprogs/lib/uuid/
uuid.h 58 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
59 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
61 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
62 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
  /dalvik/docs/
porting-proto.c.txt 34 typedef uint32_t u4;
78 s4 ilsr32(s4 x, s4 count) { return ((u4)x) >> (count & 0x1f); } // unsigned
216 u4 const_43e00000(u4 highword) { return 0x43e00000; }
217 u4 const_c3e00000(u4 highword) { return 0xc3e00000; }
218 u4 const_ffc00000(u4 highword) { return 0xffc00000; }
219 u4 const_41dfffff(u4 highword) { return 0x41dfffff;
    [all...]

Completed in 213 milliseconds

1 2 3 4 5 6 7 8 9