Searched refs:newArray (Results 1 - 11 of 11) sorted by relevance

/haiku-fatelf/headers/private/media/
H A DTStack.h31 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
32 if (newArray == NULL)
35 fArray = newArray;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DStack.h33 T *newArray = (T *)realloc(fArray,fMax * sizeof(T)); local
34 if (newArray == NULL)
37 fArray = newArray;
/haiku-fatelf/headers/private/fs_shell/
H A DStack.h47 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
48 if (newArray == NULL)
51 fArray = newArray;
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DStack.h43 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
44 if (newArray == NULL)
47 fArray = newArray;
/haiku-fatelf/src/add-ons/translators/rtf/
H A DStack.h45 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
46 if (newArray == NULL)
49 fArray = newArray;
/haiku-fatelf/src/apps/sudoku/
H A DStack.h44 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
45 if (newArray == NULL)
48 fArray = newArray;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DStack.h43 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
44 if (newArray == NULL)
47 fArray = newArray;
/haiku-fatelf/headers/private/kernel/util/
H A DStack.h46 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
47 if (newArray == NULL)
50 fArray = newArray;
/haiku-fatelf/src/system/libroot/posix/
H A Ddirent.c330 struct dirent** newArray; local
338 newArray = realloc(array, arrayCapacity * sizeof(void*));
339 if (newArray == NULL) {
344 array = newArray;
/haiku-fatelf/src/system/kernel/cache/
H A Dfile_map.cpp214 file_extent* newArray = (file_extent *)realloc(oldArray, local
216 if (newArray == NULL)
220 memcpy(newArray, fDirect, sizeof(file_extent) * fCount);
222 fIndirect.array = newArray;
/haiku-fatelf/src/system/runtime_loader/
H A Delf.cpp290 image_t** newArray = (image_t**)realloc(sPreloadedImages, local
292 if (newArray == NULL)
295 sPreloadedImages = newArray;
296 newArray[sPreloadedImageCount++] = image;

Completed in 185 milliseconds