Home
last modified time | relevance | path

Searched refs:DescBytes (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp124 unsigned DescBytes) { in allocateFixedOperandUser() argument
130 DescBytes == 0 ? 0 : (DescBytes + sizeof(DescriptorInfo)); in allocateFixedOperandUser()
141 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser()
145 if (DescBytes != 0) { in allocateFixedOperandUser()
146 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes); in allocateFixedOperandUser()
147 DescInfo->SizeInBytes = DescBytes; in allocateFixedOperandUser()
157 void *User::operator new(size_t Size, unsigned Us, unsigned DescBytes) { in operator new() argument
158 return allocateFixedOperandUser(Size, Us, DescBytes); in operator new()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DUser.h71 void *operator new(size_t Size, unsigned Us, unsigned DescBytes);