MCPcopy Create free account
hub / github.com/WheretIB/nullc / GetSize

Method GetSize

NULLC/Pool.h:70–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68 return curr->data;
69 }
70 unsigned int GetSize()
71 {
72 unsigned int wholeSize = 0;
73 StackChunk *temp = first;
74 while(temp != curr)
75 {
76 wholeSize += chunkSize;
77 temp = temp->next;
78 }
79 return wholeSize + size;
80 }
81private:
82 struct StackChunk
83 {

Callers 3

GetPoolTopMethod · 0.45
GetPoolTopMethod · 0.45
GetPoolTopMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected