HomeSort by relevance Sort by last modified time
    Searched refs:u4 (Results 26 - 50 of 404) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/vm/native/
InternalNative.h 30 extern "C" void dvmAbstractMethodStub(const u4* args, JValue* pResult);
java_util_concurrent_atomic_AtomicLong.cpp 28 const u4* args, JValue* pResult)
org_apache_harmony_dalvik_NativeTestTarget.cpp 30 const u4* args, JValue* pResult)
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp 30 const u4* args, JValue* pResult)
45 const u4* args, JValue* pResult)
60 const u4* args, JValue* pResult)
76 const u4* args, JValue* pResult)
95 const u4* args, JValue* pResult)
97 u4 threadId = args[0];
111 const u4* args, JValue* pResult)
129 const u4* args, JValue* pResult)
142 const u4* args, JValue* pResult)
java_lang_Object.cpp 29 static void Dalvik_java_lang_Object_internalClone(const u4* args,
41 static void Dalvik_java_lang_Object_hashCode(const u4* args, JValue* pResult)
50 static void Dalvik_java_lang_Object_getClass(const u4* args, JValue* pResult)
63 static void Dalvik_java_lang_Object_notify(const u4* args, JValue* pResult,
75 static void Dalvik_java_lang_Object_notifyAll(const u4* args, JValue* pResult,
87 static void Dalvik_java_lang_Object_wait(const u4* args, JValue* pResult,
  /dalvik/libdex/
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;
  /dalvik/vm/analysis/
DexPrepare.h 94 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing);
108 bool dvmCheckOptHeaderAndDependencies(int fd, bool sourceAvail, u4 modWhen,
109 u4 crc, bool expectVerify, bool expectOpt);
118 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
124 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
  /dalvik/vm/jdwp/
JdwpHandler.h 29 u4 length;
30 u4 id;
  /dalvik/vm/mterp/c/
OP_CONST_WIDE_32.cpp 3 u4 tmp;
7 tmp |= (u4)FETCH(2) << 16;
OP_MOVE_EXCEPTION.cpp 5 SET_REGISTER(vdst, (u4)self->exception);
  /dalvik/vm/
Native.h 40 u4 classDescriptorHash; /* initialized at runtime */
53 int argc, const u4* argv, const char* signature, void* func, JValue* pResult);
58 u4 dvmPlatformInvokeHints(const DexProto* proto);
78 void dvmResolveNativeMethod(const u4* args, JValue* pResult,
89 * Helpful function for accessing long integers in "u4* args".
97 INLINE s8 dvmGetArgLong(const u4* args, int elem)
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...]
BitVector.cpp 45 bv->storage = (u4*) calloc(count, sizeof(u4));
91 pBits->storage = (u4*)realloc(pBits->storage,
92 (pBits->storageSize + kBitVectorGrowth) * sizeof(u4));
94 kBitVectorGrowth * sizeof(u4));
104 if (num >= pBits->storageSize * sizeof(u4) * 8) {
107 num, pBits->storageSize * sizeof(u4) * 8);
114 pBits->storage = (u4*)realloc(pBits->storage, newSize * sizeof(u4));
116 ALOGE("BitVector expansion to %d failed", newSize * sizeof(u4));
    [all...]
UtfString.h 54 u4 dvmComputeUtf8Hash(const char* str);
60 u4 dvmComputeStringHash(StringObject* strObj);
99 u4 utf16Length);
  /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/interp/
Jit.h 44 u4* fp; /* starting fp of jitted region */
68 void* dvmSelfVerificationSaveState(const u2* pc, u4* fp,
71 void* dvmSelfVerificationRestoreState(const u2* pc, u4* fp,
90 static inline u4 dvmJitHashMask( const u2* p, u4 mask ) {
91 return ((((u4)p>>12)^(u4)p)>>1) & (mask);
94 static inline u4 dvmJitHash( const u2* p ) {
177 void dvmJitResumeTranslation(Thread* self, const u2* pc, const u4* fp);
Stack.h 122 u4 pad0, pad1, pad2;
131 u4* prevFrame;
141 u4 localRefCookie;
151 u4 pad3, pad4, pad5;
157 #define FP_FROM_SAVEAREA(_save) ((u4*) ((StackSaveArea*)(_save) +1))
161 ((u4*) ((u1*)SAVEAREA_FROM_FP(_fp) - sizeof(u4) * (_argCount)))
169 INLINE bool dvmIsBreakFrame(const u4* fp)
227 extern "C" int dvmLineNumFromPC(const Method* method, u4 relPc);
  /dalvik/vm/compiler/codegen/x86/
LowerConst.cpp 47 int const_string_common_nohelper(u4 tmp, u2 vA) {
58 int const_string_common(u4 tmp, u2 vA) {
89 u4 tmp = FETCH(1);
90 tmp |= (u4)FETCH(2) << 16;
121 u4 tmp = FETCH(1);
122 tmp |= (u4)FETCH(2) << 16;
133 u4 tmp = FETCH(1);
159 u4 tmp = vB;
169 u4 tmp = FETCH(1);
170 tmp |= (u4)FETCH(2) << 16
    [all...]
  /dalvik/vm/hprof/
Hprof.h 21 #define HPROF_ID_SIZE (sizeof (u4))
30 typedef u4 hprof_id;
100 * u4 TIME: number of microseconds since the time stamp in the header
101 * u4 LENGTH: number of bytes that follow this u4 field
103 * [u1]* BODY: as many bytes as specified in the above u4 field
107 u4 time;
108 u4 length;
126 u4 gcThreadSerialNumber;
129 u4 stackTraceSerialNumber
    [all...]

Completed in 338 milliseconds

12 3 4 5 6 7 8 91011>>