HomeSort by relevance Sort by last modified time
    Searched full:masks_ (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/quick/
resource_mask.h 37 : masks_{ mask1, mask2 } { // NOLINT
59 : masks_ { 0u, 0u } {
68 return masks_[0] == other.masks_[0] && masks_[1] == other.masks_[1];
97 return ResourceMask(masks_[0] | other.masks_[0], masks_[1] | other.masks_[1])
138 uint64_t masks_[2]; member in class:art::ResourceMask
    [all...]
resource_mask.cc 35 // The 127-bit is the same as CLZ(masks_[1]) for a ResourceMask with only that bit set.
76 // The 127-bit is the same as CLZ(masks_[1]) for a ResourceMask with only that bit set.
151 if ((mask.masks_[0] >> 32) == 0u && (mask.masks_[1] & ~kAllowedSpecialBits.masks_[1]) == 0u) {
153 uint32_t low_regs = static_cast<uint32_t>(mask.masks_[0]);
155 if (low_regs_without_lowest == 0u && IsPowerOfTwo(mask.masks_[1])) {
157 size_t index = (mask.masks_[1] != 0u) ? CLZ(mask.masks_[1]) : 0u;
161 } else if (IsPowerOfTwo(low_regs_without_lowest) && mask.masks_[1] == 0u)
    [all...]

Completed in 254 milliseconds