Searched refs:realloc (Results 1 - 25 of 165) sorted by relevance

1234567

/haiku/headers/posix/
H A Dmalloc.h17 extern void *realloc(void *oldPointer, size_t newSize);
/haiku/headers/private/media/
H A DTStack.h31 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/bin/bfs_tools/lib/
H A DStack.h37 fArray = (T *)realloc(fArray,fMax * sizeof(T));
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dmisc.c67 p = realloc(ptr, size);
69 ntfs_log_perror("Failed to realloc %lld bytes",
/haiku/headers/private/fs_shell/
H A DStack.h47 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/add-ons/translators/rtf/
H A DStack.h45 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/apps/sudoku/
H A DStack.h44 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/libs/bsd/
H A Dfgetln.c54 char *newBuffer = realloc(sBuffer, sBufferSize + LINE_LENGTH);
H A Dstringlist.c74 string = realloc(sl->sl_str, sl->sl_max * sizeof(char *));
/haiku/src/system/libroot/posix/glibc/libio/
H A Dvasprintf.c67 /* Only use realloc if the size we need is of the same order of
72 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
83 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
/haiku/src/kits/interface/textview_support/
H A DTextGapBuffer.cpp156 fScratchBuffer = (char*)realloc(fScratchBuffer, numBytes);
174 fScratchBuffer = (char*)realloc(fScratchBuffer, newSize);
221 fScratchBuffer = (char*)realloc(fScratchBuffer, newSize);
343 fBuffer = (char*)realloc(fBuffer, fItemCount + inCount);
360 fBuffer = (char*)realloc(fBuffer, fItemCount + inCount);
/haiku/headers/private/interface/
H A DTextViewSupportBuffer.h72 fBuffer = (T*)realloc((void*)fBuffer, fBufferCount);
106 fBuffer = (T*)realloc(fBuffer, fBufferCount);
/haiku/src/tools/
H A Dexec.c22 *arg = realloc(*arg, *argBufferLen + 32);
162 args = realloc(args, (argsBufferLen + 8) * sizeof(char*));
/haiku/headers/private/app/
H A DSimpleMallocIO.h63 fBuffer = (char *)realloc(fBuffer, size);
/haiku/headers/private/kernel/util/
H A DStack.h46 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DPacket.cpp81 fBuffer = realloc(fBuffer, fBufferSizeMax);
/haiku/src/apps/terminal/
H A DInlineInput.cpp104 void *newData = realloc(fClauses, (fNumClauses + 1) * sizeof(clause));
/haiku/src/kits/mail/
H A DNodeMessage.cpp52 if (char *newBuffer = (char*)realloc(buf, info.size))
/haiku/src/system/libroot/posix/malloc_debug/
H A Dmalloc_debug_api.h19 void* (*realloc)(void* address, size_t newSize); member in struct:heap_implementation
/haiku/src/system/libroot/posix/musl/dirent/
H A Dscandir.c25 tmp = realloc(names, len * sizeof *names);
/haiku/src/apps/processcontroller/
H A DTeamBarMenu.cpp81 fRecycleList = (TRecycleItem*)realloc(fRecycleList,
115 fTeamList = (team_id*)realloc(fTeamList, sizeof(team_id) * fTeamCount);
H A DMemoryBarMenu.cpp93 fRecycleList = (MRecycleItem*)realloc(fRecycleList,
131 fTeamList = (team_id*)realloc(fTeamList, sizeof(team_id) * fTeamCount);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dvfscanf.c860 newstr = (char *) realloc (*strptr, strsize * 2);
865 newstr = (char *) realloc (*strptr,
908 str = (char *) realloc (*strptr, 2 * strsize);
913 str = (char *) realloc (*strptr, strsize + 1);
956 newstr = (char *) realloc (*strptr, strleng + n + 1);
980 char *cp = (char *) realloc (*strptr, str - *strptr);
1025 wstr = (wchar_t *) realloc (*strptr,
1032 wstr = (wchar_t *) realloc (*strptr,
1095 wstr = (wchar_t *) realloc (*strptr,
1101 wstr = (wchar_t *) realloc (*strpt
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DPath.cpp127 char* buffer = (char*)realloc(fBuffer, minLen);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DRequestPortPool.cpp55 PortAcquirationInfo* ports = (PortAcquirationInfo*)realloc(fPorts,

Completed in 265 milliseconds

1234567