Home | History | Annotate | Download | only in internal

Lines Matching defs:FixedArray

30 // Author: sanjay@google.com (Sanjay Ghemawat) -- renamed to FixedArray
44 // A FixedArray<T> represents a non-resizable array of T where the
47 // FixedArray allocates small arrays inline, and large arrays on
51 // FixedArray keeps performance fast for small arrays, because it
56 // Also, FixedArray is useful for writing portable code. Not all
60 // FixedArray<> automatically determine the number of elements
63 // If inline_elements is specified, the FixedArray<> implementation
66 // Finally note that unlike vector<T> FixedArray<T> will not zero-initialize
79 class FixedArray {
94 // FixedArray<T> will not zero-initialiaze POD (simple) types like int,
98 explicit FixedArray(size_type n);
101 ~FixedArray();
166 inline FixedArray<T, S>::FixedArray(typename FixedArray<T, S>::size_type n)
182 inline FixedArray<T, S>::~FixedArray() {