Searched refs:element_size (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | dex_file_verifier.h | 45 bool CheckListSize(const void* start, size_t count, size_t element_size, const char* label); 48 bool CheckList(size_t element_size, const char* label, const byte* *ptr);
|
D | dex_instruction.cc | 105 uint16_t element_size = insns[1]; in SizeInCodeUnitsComplexOpcode() local 108 return (4 + (element_size * length + 1) / 2); in SizeInCodeUnitsComplexOpcode()
|
D | dex_file_verifier.cc | 204 bool DexFileVerifier::CheckList(size_t element_size, const char* label, const byte* *ptr) { in CheckList() argument 212 if (!CheckListSize(*ptr + 4, count, element_size, label)) { in CheckList() 217 *ptr += 4 + count * element_size; in CheckList()
|
/art/compiler/dex/quick/ |
D | codegen_util.cc | 611 unsigned int element_size) { in AssignLiteralPointerOffsetCommon() argument 613 offset = RoundUp(offset, element_size); in AssignLiteralPointerOffsetCommon() 616 offset += element_size; in AssignLiteralPointerOffsetCommon()
|