Home | History | Annotate | Download | only in rtl

Lines Matching defs:uid

53   explicit SyncVar(uptr addr, u64 uid);
59 const u64 uid; // Globally unique id.
74 // 47 lsb is addr, then 14 bits is low part of uid, then 3 zero bits.
75 return GetLsb((u64)addr | (uid << 47), 61);
77 bool CheckId(u64 uid) const {
78 CHECK_EQ(uid, GetLsb(uid, 14));
79 return GetLsb(this->uid, 14) == uid;
81 static uptr SplitId(u64 id, u64 *uid) {
82 *uid = id >> 47;