Searched defs:bit_offset (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | bit_memory_region.h | 29 ALWAYS_INLINE BitMemoryRegion(MemoryRegion region, size_t bit_offset, size_t bit_size) { in BitMemoryRegion() 43 ALWAYS_INLINE BitMemoryRegion Subregion(size_t bit_offset, size_t bit_size) const { in Subregion() 49 ALWAYS_INLINE bool LoadBit(uintptr_t bit_offset) const { in LoadBit() 53 ALWAYS_INLINE void StoreBit(uintptr_t bit_offset, bool value) const { in StoreBit() 57 ALWAYS_INLINE uint32_t LoadBits(uintptr_t bit_offset, size_t length) const { in LoadBits() 62 ALWAYS_INLINE void StoreBits(uintptr_t bit_offset, uint32_t value, size_t length) { in StoreBits()
|
D | memory_region.h | 114 ALWAYS_INLINE bool LoadBit(uintptr_t bit_offset) const { in LoadBit() 120 ALWAYS_INLINE void StoreBit(uintptr_t bit_offset, bool value) const { in StoreBit() 134 ALWAYS_INLINE uint32_t LoadBits(uintptr_t bit_offset, size_t length) const { in LoadBits() 205 ALWAYS_INLINE uint8_t* ComputeBitPointer(uintptr_t bit_offset, uint8_t* bit_mask) const { in ComputeBitPointer()
|
D | memory_region.cc | 32 void MemoryRegion::StoreBits(uintptr_t bit_offset, uint32_t value, size_t length) { in StoreBits()
|
D | memory_region_test.cc | 66 for (size_t bit_offset = 0; bit_offset < 2 * kBitsPerByte; ++bit_offset) { in TEST() local
|