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

/haiku/headers/private/media/
H A DTStack.h31 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
32 if (newArray == NULL)
35 fArray = newArray;
/haiku/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/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/src/apps/sudoku/
H A DStack.h44 T *newArray = (T *)realloc(fArray, fMax * sizeof(T)); local
45 if (newArray == NULL)
48 fArray = newArray;
/haiku/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/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/src/system/runtime_loader/
H A Delf.cpp430 image_t** newArray = (image_t**)realloc(sPreloadedAddons, local
432 if (newArray == NULL)
435 sPreloadedAddons = newArray;
436 newArray[sPreloadedAddonCount++] = image;

Completed in 66 milliseconds