Searched refs:realloc (Results 76 - 100 of 165) sorted by relevance

1234567

/haiku/src/system/libroot/posix/stdlib/
H A Denv.cpp81 char **newEnviron = (char**)realloc(environ, (count + 1) * sizeof(char *));
/haiku/src/system/runtime_loader/
H A Delf_tls.cpp286 void* newVector = realloc(*fVector, (size + 1) * sizeof(TLSBlock));
/haiku/src/system/kernel/slab/
H A Dallocator.cpp292 realloc(void* address, size_t newSize) function
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp325 if ((newData = (uint8 *)realloc(newData, size)) == NULL)
329 if ((oldData = (uint8 *)realloc(oldData, size)) == NULL) {
330 fNewData = (uint8 *)realloc(newData, fSize);
905 uint8 *view = (uint8 *)realloc(fView, realSize);
/haiku/src/build/libroot/
H A Dfs_descriptors.cpp369 uint8* data = (uint8*)realloc(fData, minSize);
/haiku/headers/private/kernel/util/
H A DHeap.h280 = reinterpret_cast<Element**>(realloc(fElements, arraySize));
H A DMinMaxHeap.h332 = reinterpret_cast<Element**>(realloc(fMinElements, arraySize));
H A DVector.h729 Value* newItems = (Value*)realloc(fItems, newSize * sizeof(Value));
/haiku/src/kits/support/
H A DList.cpp495 = (void**)realloc(fObjectList, newSize * sizeof(void*));
H A DDataIO.cpp555 if (char* newData = static_cast<char*>(realloc(fData, newSize))) {
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DTemplateList.h355 = (item_t*)realloc(fItems, newSize * sizeof(item_t));
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DList.h350 = (item_t*)realloc(fItems, newSize * sizeof(item_t));
H A DDataContainer.cpp118 void* newBuffer = realloc(fSmallBuffer, newBufferSize);
/haiku/src/kits/interface/
H A DRegion.cpp459 clipping_rect* resizedData = (clipping_rect*)realloc(fData,
/haiku/src/apps/mail/
H A DWIndex.cpp272 uint8* tmpEntryList = (uint8 *)realloc(fEntryList, fBlockSize * fBlocks);
/haiku/src/system/kernel/vm/
H A DVMAddressSpaceLocking.cpp359 lock_item* items = (lock_item*)realloc(fItems,
/haiku/headers/cpp/
H A Dstl_alloc.h173 void* __result = realloc(__p, __new_sz);
220 __result = realloc(__p, __n);
571 return(realloc(__p, __new_sz));
/haiku/src/kits/mail/
H A Dmail_util.cpp507 char *temp = (char*)realloc(*bufp, 2*(*bufLen + 1));
841 char *temp = (char *)realloc(buf, len + 64);
925 char *temp = (char *)realloc(buf, len + 64);
1014 char *temp = (char *)realloc(buf, len + 64);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DDevice.cpp181 = (usb_interface_info*)realloc(interfaceList->alt,
241 realloc(currentInterface->endpoint,
295 usb_descriptor** newGenerics = (usb_descriptor**)realloc(
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c283 current->variable = realloc(
/haiku/src/bin/unzip/
H A Dapi.c414 realloc(G.redirect_buffer, G.redirect_size + 1)) == NULL) {
/haiku/src/libs/glut/
H A DglutWindow.cpp34 gState.windowList = (GlutWindow **)realloc(gState.windowList,
/haiku/src/kits/media/
H A DRealtimeAlloc.cpp430 void* buffer = realloc(oldBuffer, newSize);
441 TRACE("realloc(%p, %lu) -> NULL\n", oldBuffer, newSize);
453 TRACE("realloc(%p, %lu) old buffer is large enough\n",
471 TRACE("realloc(%p, %lu) -> %p\n", oldBuffer, newSize, newBuffer);
/haiku/headers/private/userlandfs/shared/
H A DVector.h725 Value* newItems = (Value*)realloc(fItems, newSize * sizeof(Value));
/haiku/src/system/boot/loader/
H A Dheap.cpp505 realloc(void* oldBuffer, size_t newSize) function
508 TRACE("realloc(%p, %lu) -> NULL\n", oldBuffer, newSize);
521 panic("realloc(%p, %zu): unknown allocation!\n", oldBuffer,
531 TRACE("realloc(%p, %lu) old buffer is large enough\n",
546 TRACE("realloc(%p, %lu) -> %p\n", oldBuffer, newSize, newBuffer);

Completed in 138 milliseconds

1234567