MCPcopy Create free account
hub / github.com/beefytech/Beef / resize

Method resize

BeefySysLib/util/SizedArray.h:431–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

429 }
430
431 void resize(intptr size)
432 {
433 while (size < this->mSize)
434 pop_back();
435 if (size > this->mSize)
436 {
437 reserve(size);
438 while (size > this->mSize)
439 new (&this->mVals[this->mSize++]) T();
440 }
441 }
442
443 void reserve(intptr size)
444 {

Callers 15

DumpAddressMapFunction · 0.45
parse_affixMethod · 0.45
LoadMeshMethod · 0.45
ReadFileMethod · 0.45
ReadBFFileMethod · 0.45
StompAllocFunction · 0.45
CheckNonDebuggerBreakMethod · 0.45
ParseDWARFMethod · 0.45
VisitMethod · 0.45
CreateTypeDataMethod · 0.45
AddExtensionMethodsMethod · 0.45
GetOuterTypeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected