Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc2045 size_t alignment_mask; in CheckIntraSectionIterate() local
2052 alignment_mask = sizeof(uint8_t) - 1; in CheckIntraSectionIterate()
2055 alignment_mask = sizeof(uint32_t) - 1; in CheckIntraSectionIterate()
2061 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate()
3112 size_t alignment_mask; in CheckInterSectionIterate() local
3115 alignment_mask = sizeof(uint8_t) - 1; in CheckInterSectionIterate()
3118 alignment_mask = sizeof(uint32_t) - 1; in CheckInterSectionIterate()
3125 uint32_t new_offset = (offset + alignment_mask) & ~alignment_mask; in CheckInterSectionIterate()
/art/runtime/mirror/
Dvar_handle.cc1242 uintptr_t alignment_mask = sizeof(T) - 1; in IsAccessAligned() local
1244 return (address & alignment_mask) == 0; in IsAccessAligned()