Lines Matching refs:offset
71 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) { in dexDataMapAdd() argument
76 (map->offsets[map->count - 1] >= offset)) { in dexDataMapAdd()
78 map->offsets[map->count - 1], offset); in dexDataMapAdd()
82 map->offsets[map->count] = offset; in dexDataMapAdd()
91 int dexDataMapGet(DexDataMap* map, u4 offset) { in dexDataMapGet() argument
103 if (offset < guess) { in dexDataMapGet()
105 } else if (offset > guess) { in dexDataMapGet()
122 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) { in dexDataMapVerify() argument
123 int found = dexDataMapGet(map, offset); in dexDataMapVerify()
131 offset, type); in dexDataMapVerify()
134 offset, type, found); in dexDataMapVerify()