Home
last modified time | relevance | path

Searched defs:bit_offset (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dbit_memory_region.h29 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()
Dmemory_region.h114 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()
Dmemory_region.cc32 void MemoryRegion::StoreBits(uintptr_t bit_offset, uint32_t value, size_t length) { in StoreBits()
Dmemory_region_test.cc66 for (size_t bit_offset = 0; bit_offset < 2 * kBitsPerByte; ++bit_offset) { in TEST() local