Lines Matching refs:Use
44 Use *User::allocHungoffUses(unsigned N) const { in allocHungoffUses()
47 size_t size = N * sizeof(Use) + sizeof(Use::UserRef); in allocHungoffUses()
48 Use *Begin = static_cast<Use*>(::operator new(size)); in allocHungoffUses()
49 Use *End = Begin + N; in allocHungoffUses()
50 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); in allocHungoffUses()
51 return Use::initTags(Begin, End); in allocHungoffUses()
59 void *Storage = ::operator new(s + sizeof(Use) * Us); in operator new()
60 Use *Start = static_cast<Use*>(Storage); in operator new()
61 Use *End = Start + Us; in operator new()
65 Use::initTags(Start, End); in operator new()
75 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; in operator delete()