Searched refs:_Element (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/libkern/c++/
H A DOSOrderedSet.cpp54 struct _Element { struct
71 if (inCapacity > (UINT_MAX / sizeof(_Element)))
74 size = sizeof(_Element) * inCapacity;
75 array = (_Element *) kalloc(size);
111 kfree(array, sizeof(_Element) * capacity);
112 ACCUMSIZE( -(sizeof(_Element) * capacity) );
130 _Element *newArray;
140 (finalCapacity > (UINT_MAX / sizeof(_Element)))) {
143 newSize = sizeof(_Element) * finalCapacity;
145 newArray = (_Element *) kallo
[all...]
/xnu-2782.1.97/libkern/libkern/c++/
H A DOSOrderedSet.h124 struct _Element * array;

Completed in 23 milliseconds