Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.cc22 static uint32_t check_masks[32] = { variable
99 storage_[num >> 5] |= check_masks[num & 0x1f]; in SetBit()
107 storage_[num >> 5] &= ~check_masks[num & 0x1f]; in ClearBit()
379 uint32_t val = storage[num >> 5] & check_masks[num & 0x1f]; in IsBitSet()