Searched refs:StartOfBuffer (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DPrintLib.h212 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
220 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
223 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
236 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
238 @param BufferSize The size, in bytes, of the output buffer specified by StartOfBuffer.
249 OUT CHAR16 *StartOfBuffer,
259 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
267 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
270 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
283 @param StartOfBuffer
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DEHScopeStack.h227 char *StartOfBuffer; member in class:clang::CodeGen::EHScopeStack
266 EHScopeStack() : StartOfBuffer(nullptr), EndOfBuffer(nullptr),
269 ~EHScopeStack() { delete[] StartOfBuffer; }
H A DCGCleanup.cpp108 if (!StartOfBuffer) {
111 StartOfBuffer = new char[Capacity];
112 StartOfData = EndOfBuffer = StartOfBuffer + Capacity;
113 } else if (static_cast<size_t>(StartOfData - StartOfBuffer) < Size) {
114 unsigned CurrentCapacity = EndOfBuffer - StartOfBuffer;
115 unsigned UsedCapacity = CurrentCapacity - (StartOfData - StartOfBuffer);
126 delete [] StartOfBuffer;
127 StartOfBuffer = NewStartOfBuffer;
132 assert(StartOfBuffer + Size <= StartOfData);

Completed in 155 milliseconds