HomeSort by relevance Sort by last modified time
    Searched refs:kTypeShift (Results 1 - 3 of 3) sorted by null

  /external/skia/src/core/
SkRecord.h 153 static const int kTypeShift = sizeof(void*) == 4 ? 32 : 48;
158 fTypeAndPtr = ((uint64_t)T::kType) << kTypeShift | (uintptr_t)ptr;
163 SkRecords::Type type() const { return (SkRecords::Type)(fTypeAndPtr >> kTypeShift); }
164 void* ptr() const { return (void*)(fTypeAndPtr & ((1ull<<kTypeShift)-1)); }
  /art/compiler/utils/arm/
constants_arm.h 173 kTypeShift = 25,
276 int TypeField() const { return Bits(kTypeShift, kTypeBits); }
  /external/vixl/src/aarch32/
instructions-aarch32.h 75 static const int kTypeShift = kCodeShift + kCodeBits;
76 static const int kSizeShift = kTypeShift + kTypeBits;
78 static const uint32_t kTypeMask = ((1 << kTypeBits) - 1) << kTypeShift;
84 : value_((type << kTypeShift) | (code << kCodeShift) |
113 return static_cast<RegisterType>((value_ & kTypeMask) >> kTypeShift);
    [all...]

Completed in 431 milliseconds