Lines Matching refs:oat
237 const byte* oat = Begin(); in Setup() local
238 oat += sizeof(OatHeader); in Setup()
239 if (oat > End()) { in Setup()
244 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup()
245 if (oat > End()) { in Setup()
256 uint32_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat); in Setup()
262 oat += sizeof(dex_file_location_size); in Setup()
263 if (UNLIKELY(oat > End())) { in Setup()
269 const char* dex_file_location_data = reinterpret_cast<const char*>(oat); in Setup()
270 oat += dex_file_location_size; in Setup()
271 if (UNLIKELY(oat > End())) { in Setup()
279 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat); in Setup()
280 oat += sizeof(dex_file_checksum); in Setup()
281 if (UNLIKELY(oat > End())) { in Setup()
288 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat); in Setup()
300 oat += sizeof(dex_file_offset); in Setup()
301 if (UNLIKELY(oat > End())) { in Setup()
322 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat); in Setup()
324 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_); in Setup()
325 if (UNLIKELY(oat > End())) { in Setup()