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

  /external/skia/src/core/
SkRecord.h 157 static const int kTypeShift = sizeof(void*) == 4 ? 32 : 48;
162 fTypeAndPtr = ((uint64_t)T::kType) << kTypeShift | (uintptr_t)ptr;
167 SkRecords::Type type() const { return (SkRecords::Type)(fTypeAndPtr >> kTypeShift); }
168 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); }

Completed in 132 milliseconds