Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp118 unsigned DescBytes) { in allocateFixedOperandUser() argument
124 DescBytes == 0 ? 0 : (DescBytes + sizeof(DescriptorInfo)); in allocateFixedOperandUser()
135 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser()
139 if (DescBytes != 0) { in allocateFixedOperandUser()
140 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes); in allocateFixedOperandUser()
141 DescInfo->SizeInBytes = DescBytes; in allocateFixedOperandUser()
151 void *User::operator new(size_t Size, unsigned Us, unsigned DescBytes) { in operator new() argument
152 return allocateFixedOperandUser(Size, Us, DescBytes); in operator new()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DUser.h71 void *operator new(size_t Size, unsigned Us, unsigned DescBytes);