MCPcopy Create free account
hub / github.com/defold/defold / PushArray

Method PushArray

engine/dlib/src/dmsdk/dlib/array.h:561–566  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559
560template <typename T>
561void dmArray<T>::PushArray(const T* array, uint32_t count)
562{
563 assert((Size() + count) <= Capacity());
564 memcpy(m_End, array, sizeof(T) * count);
565 m_End += count;
566}
567
568template <typename T>
569void dmArray<T>::Pop()

Callers 15

WriterFunction · 0.80
HttpHeaderFunction · 0.80
HttpContentFunction · 0.80
AppendToLogMethod · 0.80
SaveArrayFunctionFunction · 0.80
HttpContentFunction · 0.80
TESTFunction · 0.80
TestLogCaptureCallbackFunction · 0.80
AppendToLogMethod · 0.80
DeviceLoopbackQueueFunction · 0.80
GetDependenciesFunction · 0.80
HttpContentFunction · 0.80

Calls 2

assertFunction · 0.50
SizeClass · 0.50

Tested by 6

AppendToLogMethod · 0.64
TESTFunction · 0.64
TestLogCaptureCallbackFunction · 0.64
AppendToLogMethod · 0.64
DeviceLoopbackQueueFunction · 0.64
AppendMethod · 0.64