Lines Matching refs:u4
60 static u4 readUleb128(const u1** pBuf)
62 u4 result = 0;
148 val = ((u4)val >> 8) | (((s4)*ptr++) << 24);
158 static u4 readUnsignedInt(const u1* ptr, int zwidth, bool fillOnRight)
160 u4 val = 0;
165 val = (val >> 8) | (((u4)*ptr++) << 24);
169 val = (val >> 8) | (((u4)*ptr++) << 24);
230 static Method* resolveAmbiguousMethod(const ClassObject* referrer, u4 methodIdx)
327 u4 idx;
485 u4 size, count;
603 u4 length = srcArray->length;
654 u4 elementNameIdx;
744 u4 typeIdx, size, count;
859 u4 dstIndex = 0;
904 u4 typeIdx;
1002 u4 size = readUleb128(&ptr);
1039 u4 size;
1065 static int compareClassDescriptor(DexFile* pDexFile, u4 typeIdx,
1090 u4 typeIdx;
1122 u4 typeIdx, size;
1129 u4 elementNameIdx;
1581 static int compareMethodStr(DexFile* pDexFile, u4 methodIdx,
1613 u4 dvmGetMethodIdx(const Method* method)
1618 u4 hi = pDexFile->pHeader->methodIdsSize -1;
1619 u4 lo = 0;
1620 u4 cur;
1681 u4 methodIdx = dvmGetMethodIdx(method);
1682 u4 count = dexGetMethodAnnotationsSize(pDexFile, pAnnoDir);
1683 u4 idx;
1902 static int compareFieldStr(DexFile* pDexFile, u4 idx, const Field* field)
1925 u4 dvmGetFieldIdx(const Field* field)
1930 u4 hi = pDexFile->pHeader->fieldIdsSize -1;
1931 u4 lo = 0;
1932 u4 cur;
1994 u4 fieldIdx = dvmGetFieldIdx(field);
1995 u4 count = dexGetFieldAnnotationsSize(pDexFile, pAnnoDir);
1996 u4 idx;
2096 const DexAnnotationSetRefList* pAnnoSetList, u4 count)
2100 u4 idx;
2176 u4 methodIdx = dvmGetMethodIdx(method);
2177 u4 count = dexGetParameterAnnotationsSize(pDexFile, pAnnoDir);
2178 u4 idx;
2223 u4 size;