Lines Matching defs:pointer
173 Inner* pointer)
176 reinterpret_cast<uintptr_t>(pointer) - OffsetOf(field))) {}
186 Inner* pointer) {
187 return ContainerOfHelper<Inner, Outer>(field, pointer);
338 // that the standard allows them to either return a unique pointer or a
342 T* UncheckedRealloc(T* pointer, size_t n) {
346 free(pointer);
350 void* allocated = realloc(pointer, full_size);
355 allocated = realloc(pointer, full_size);
374 inline T* Realloc(T* pointer, size_t n) {
375 T* ret = UncheckedRealloc(pointer, n);