Searched refs:realloc (Results 101 - 125 of 165) sorted by relevance

1234567

/haiku/src/build/libroot/
H A Dfs_attr_untyped.cpp296 char* newListing = (char*)realloc(fListing, length);
/haiku/src/build/libbe/app/
H A DMessage.cpp1183 uint8 *newData = (uint8 *)realloc(fData, size);
1207 uint8 *newData = (uint8 *)realloc(fData, size);
1282 field_header *newFields = (field_header *)realloc(fFields,
1357 field_header *newFields = (field_header *)realloc(fFields, size);
/haiku/src/system/libroot/posix/malloc_hoard2/
H A Dwrapper.cpp505 realloc(void *ptr, size_t size) function
529 KTRACE("realloc(%p, %lu) -> %p", ptr, size, ptr);
544 KTRACE("realloc(%p, %lu) -> NULL", ptr, size);
558 KTRACE("realloc(%p, %lu) -> %p", ptr, size, buffer);
/haiku/src/system/libnetwork/netresolv/net/
H A Dnsdispatch.c204 p = realloc(vec, (*count + NSELEMSPERCHUNK) * esize);
/haiku/headers/cpp/
H A Dpthread_alloc329 return(realloc(__p, __new_sz));
/haiku/src/bin/unzip/
H A Dtimezone.c497 old_TZstring = realloc(old_TZstring, strlen(TZstring) + 1);
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc231 p1 = (buf_char *) realloc (data, s1 + size2() + k);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.h437 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t)))
/haiku/src/system/libroot/posix/
H A Dglob.c697 * This assumes the BSD realloc, which only copies the block when its size
698 * crosses a power-of-two boundary; for v7 realloc, this would cause quadratic
722 realloc((char *)pglob->gl_pathv, newsize) :
H A Dspawn.cpp65 void *newactions = realloc(actions->actions,
/haiku/src/apps/deskbar/
H A DResourceSet.cpp302 fStrings = (char*)realloc(fStrings, pos + 1024);
/haiku/src/kits/interface/
H A DPicture.cpp681 void* data = realloc(fNewData, size);
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstdlib.h568 extern void *realloc (void *__ptr, size_t __size) __THROW __attribute_malloc__;
569 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp360 Key* newKeys = (Key*)realloc((void*)fKeys, newCapacity * sizeof(Key));
/haiku/src/kits/media/
H A DMediaFile.cpp293 BMediaTrack** trackList = (BMediaTrack**)realloc(fTrackList,
/haiku/src/bin/pc/
H A Dpc.c1083 buff = (char *)realloc(buff, len);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DConnection.cpp485 void* ptr = realloc(buffer, size + record_size);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlcnalloc.c359 trl = realloc(rl, rlsize);
362 ntfs_log_perror("realloc() failed");
/haiku/src/add-ons/kernel/file_systems/layers/write_overlay/
H A Dwrite_overlay.cpp1088 overlay_dirent **newDirents = (overlay_dirent **)realloc(
1193 write_buffer *newBuffer = (write_buffer *)realloc(buffer,
1310 overlay_dirent **newDirents = (overlay_dirent **)realloc(fDirents,
1389 overlay_dirent **newDirents = (overlay_dirent **)realloc(
/haiku/src/add-ons/accelerants/common/
H A Dcreate_display_modes.cpp446 display_mode* modes = (display_mode*)realloc(fModes,
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dutils.c172 /* Doing a realloc instead of reusing tmpstr
175 ntfschar *re_outs = realloc(*outs,
/haiku/src/system/kernel/cache/
H A Dfile_map.cpp214 file_extent* newArray = (file_extent *)realloc(oldArray,
/haiku/src/tests/system/kernel/cache/
H A Dpages_io_test.cpp118 file_extent *newMap = (file_extent *)realloc(array,
/haiku/src/kits/debugger/dwarf/
H A DDwarfExpressionEvaluator.cpp90 target_addr_t* newStack = (target_addr_t*)realloc(fStack,
/haiku/src/bin/network/telnet/
H A Dtelnet.c1499 opt_reply = (unsigned char *)realloc(opt_reply, OPT_REPLY_SIZE);
1503 /*@*/ printf("env_opt_start: malloc()/realloc() failed!!!\n");
1550 opt_reply = (unsigned char *)realloc(opt_reply, len);
1552 /*@*/ printf("env_opt_add: realloc() failed!!!\n");

Completed in 164 milliseconds

1234567