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

1234567

/haiku/headers/cpp/
H A Dpthread_alloc329 return(realloc(__p, __new_sz));
H A Dstl_alloc.h173 void* __result = realloc(__p, __new_sz);
220 __result = realloc(__p, __n);
571 return(realloc(__p, __new_sz));
/haiku/headers/private/app/
H A DSimpleMallocIO.h63 fBuffer = (char *)realloc(fBuffer, size);
/haiku/headers/private/fs_shell/
H A DStack.h47 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/headers/private/interface/
H A DTextViewSupportBuffer.h72 fBuffer = (T*)realloc((void*)fBuffer, fBufferCount);
106 fBuffer = (T*)realloc(fBuffer, fBufferCount);
/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 DStack.h46 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/headers/private/media/
H A DTList.h48 items = (value **)realloc(items, sizeof(value *) * item_max);
H A DTMap.h50 items = (ent **)realloc(items, sizeof(ent *) * item_max);
H A DTStack.h31 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequestMemberArray.h106 = (Member*)realloc(fElements, capacity * sizeof(Member));
/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/nfs/
H A DRPCPendingCalls.c172 pool->fPool=(sem_id *)realloc(pool->fPool,pool->fPoolSize*sizeof(sem_id));
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DXDR.cpp326 void* ptr = realloc(fBuffer, new_size);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c283 current->variable = realloc(
H A Dunistr.c1099 tc = realloc(ucs, ucs_len);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DList.h327 = (item_t*)realloc(fItems, newSize * sizeof(item_t));
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DRequestPortPool.cpp55 PortAcquirationInfo* ports = (PortAcquirationInfo*)realloc(fPorts,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_opt.c57 newargv = realloc(args->argv, (args->argc + 2) * sizeof(char *));
119 newopts = realloc(*opts, oldlen + 1 + strlen(opt) + 1);
/haiku/src/add-ons/kernel/network/stack/
H A Dsimple_net_buffer.cpp197 buffer->data = (uint8*)realloc(from->data, offset);
328 uint8* newData = (uint8*)realloc(buffer->data, buffer->size + size);
372 buffer->data = (uint8*)realloc(buffer->data, buffer->size);
402 buffer->data = (uint8*)realloc(buffer->data, newSize);
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DPacket.cpp81 fBuffer = realloc(fBuffer, fBufferSizeMax);
/haiku/src/add-ons/translators/psd/
H A DDataArray.cpp29 uint8 *newData = (uint8*)realloc(fData, blocks * fBlockSize);
/haiku/src/add-ons/translators/rtf/
H A DStack.h45 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
/haiku/src/add-ons/translators/wonderbrush/support/
H A Dbitmap_compression.cpp42 void* tmpBuffer = realloc(*buffer, *size);

Completed in 199 milliseconds

1234567