Lines Matching refs:uid
33 u64 uid; // Globally unique id.
49 void Init(ThreadState *thr, uptr pc, uptr addr, u64 uid);
53 // 47 lsb is addr, then 14 bits is low part of uid, then 3 zero bits.
54 return GetLsb((u64)addr | (uid << 47), 61);
56 bool CheckId(u64 uid) const {
57 CHECK_EQ(uid, GetLsb(uid, 14));
58 return GetLsb(this->uid, 14) == uid;
60 static uptr SplitId(u64 id, u64 *uid) {
61 *uid = id >> 47;