Home | History | Annotate | Download | only in src

Lines Matching refs:intptr_t

64     ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
65 data_ = reinterpret_cast<intptr_t>(list) | kListTag;
81 ASSERT(IsAligned(reinterpret_cast<intptr_t>(pointer), kPointerAlignment));
83 data_ = reinterpret_cast<intptr_t>(pointer) | kSingletonTag;
90 ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
91 data_ = reinterpret_cast<intptr_t>(list) | kListTag;
162 static const intptr_t kEmptyTag = 1;
163 static const intptr_t kSingletonTag = 0;
164 static const intptr_t kListTag = 2;
165 static const intptr_t kTagMask = 3;
166 static const intptr_t kValueMask = ~kTagMask;
181 intptr_t data_;