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

Method push_back

BeefySysLib/util/Array.h:732–737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

730 }
731
732 void push_back(const T& val)
733 {
734 if (this->mSize >= this->mAllocSize)
735 SetBufferSize(this->mAllocSize + this->mAllocSize / 2 + 1);
736 new (&this->mVals[this->mSize++]) T(val);
737 }
738
739 void pop_back()
740 {

Callers 15

TCMalloc_RecordAllocFunction · 0.45
RegisterCallbackMethod · 0.45
RegisterStackLockedFunction · 0.45
RecordGlobalDataLockedFunction · 0.45
HeapCleanerMethod · 0.45
GetFreeListSizesMethod · 0.45
GetFreeListSizesMethod · 0.45

Calls

no outgoing calls

Tested by 15

AddTypeMethod · 0.36
AllocateObjectMethod · 0.36
PassObjectMethod · 0.36
AcquirePassedObjectsMethod · 0.36
RunAllTestsFunction · 0.36
TestMapFunction · 0.36
mainFunction · 0.36
ObjMakerRegistrarMethod · 0.36
TestPointerReachFunction · 0.36
Test2Function · 0.36
ExTest2Function · 0.36
AddTypeMethod · 0.36