Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc1619 size_t alignment_mask; in CheckIntraSectionIterate() local
1626 alignment_mask = sizeof(uint8_t) - 1; in CheckIntraSectionIterate()
1629 alignment_mask = sizeof(uint32_t) - 1; in CheckIntraSectionIterate()
1635 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate()
2674 size_t alignment_mask; in CheckInterSectionIterate() local
2677 alignment_mask = sizeof(uint8_t) - 1; in CheckInterSectionIterate()
2680 alignment_mask = sizeof(uint32_t) - 1; in CheckInterSectionIterate()
2687 uint32_t new_offset = (offset + alignment_mask) & ~alignment_mask; in CheckInterSectionIterate()
/art/runtime/mirror/
Dvar_handle.cc1245 uintptr_t alignment_mask = sizeof(T) - 1; in IsAccessAligned() local
1247 return (address & alignment_mask) == 0; in IsAccessAligned()