Lines Matching refs:array
53 // For arrays of non-POD objects there is a per array overhead of typically 8 bytes. There is an
118 T* array = (T*)this->commonArrayAlloc<T>(safeCount);
122 new (&array[i]) T;
124 return array;
130 T* array = (T*)this->commonArrayAlloc<T>(safeCount);
132 // If T is primitive then the memory is initialized. For example, an array of chars will
135 new (&array[i]) T();
137 return array;
199 // Advance to end of array to install footer.?
207 T* array = (T*) objStart;
209 array[i].~T();