Home
last modified time | relevance | path

Searched refs:alignment_mask (Results 1 – 2 of 2) sorted by relevance

/art/libdexfile/dex/
Ddex_file_verifier.cc2138 size_t alignment_mask; in CheckIntraSectionIterate() local
2145 alignment_mask = sizeof(uint8_t) - 1; in CheckIntraSectionIterate()
2148 alignment_mask = sizeof(uint32_t) - 1; in CheckIntraSectionIterate()
2154 size_t aligned_offset = (PtrToOffset(ptr_) + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate()
3285 size_t alignment_mask; in CheckInterSectionIterate() local
3288 alignment_mask = sizeof(uint8_t) - 1; in CheckInterSectionIterate()
3291 alignment_mask = sizeof(uint32_t) - 1; in CheckInterSectionIterate()
3298 uint32_t new_offset = (offset + alignment_mask) & ~alignment_mask; in CheckInterSectionIterate()
/art/runtime/mirror/
Dvar_handle.cc1155 uintptr_t alignment_mask = sizeof(T) - 1; in IsAccessAligned() local
1157 return (address & alignment_mask) == 0; in IsAccessAligned()