Searched refs:realloc (Results 26 - 50 of 165) sorted by relevance

1234567

/haiku/src/kits/interface/textview_support/
H A DInlineInput.cpp159 void *newData = realloc(fClauses, (fNumClauses + 1) * sizeof(clause));
/haiku/src/system/libroot/posix/glibc/libio/
H A Diogetdelim.c36 NULL), pointing to *N characters of space. It is realloc'ed as
98 new_lineptr = (char *) realloc (*lineptr, needed);
H A Dmemstream.c163 *mp->bufloc = (char *) realloc (fp->_IO_write_base,
211 *mp->bufloc = (char *) realloc (fp->_wide_data->_IO_write_base,
/haiku/src/system/boot/loader/file_systems/amiga_ffs/
H A DVolume.cpp72 char *newBuffer = (char *)realloc(buffer, blockSize);
/haiku/headers/private/media/
H A DTList.h48 items = (value **)realloc(items, sizeof(value *) * item_max);
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DJoystickProtocolHandler.cpp55 HIDReportItem **newButtons = (HIDReportItem **)realloc(fButtons,
73 HIDReportItem **newHats = (HIDReportItem **)realloc(fHats,
96 HIDReportItem **newAxis = (HIDReportItem **)realloc(fAxis,
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetservent_r.c185 q = realloc(sd->aliases, sd->maxaliases * sizeof(*q));
270 void *tmp = realloc(sd->cdb_buf, len);
318 q = realloc(sd->aliases, sd->maxaliases * sizeof(*q));
H A Dgetprotoent_r.c141 q = realloc(q,
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequestMemberArray.h106 = (Member*)realloc(fElements, capacity * sizeof(Member));
/haiku/src/libs/mapm/
H A Dm_apm_lc.h292 #define MAPM_REALLOC realloc
/haiku/src/bin/
H A Dlogger.cpp180 buffer = (char *)realloc(buffer, newLength + 1);
H A Dwatch.c162 command = realloc(command, command_length + s + 2); /* space and \0 */
/haiku/src/system/boot/loader/
H A DPathBlocklist.cpp94 path = (char*)realloc(fPath, capacity);
/haiku/src/add-ons/kernel/file_systems/nfs/
H A DXDROutPacket.c45 packet->fBuffer=(uint8 *)realloc(packet->fBuffer,packet->fSize);
H A DRPCPendingCalls.c172 pool->fPool=(sem_id *)realloc(pool->fPool,pool->fPoolSize*sizeof(sem_id));
/haiku/src/apps/processcontroller/
H A DThreadBarMenu.cpp98 fThreadsRec = (ThreadRec*) realloc(fThreadsRec, sizeof(ThreadRec)*fThreadsRecCount);
/haiku/src/system/kernel/util/
H A DBitmap.cpp52 void* bits = realloc(fBits, sizeof(addr_t) * count);
/haiku/src/libs/compat/freebsd_iflib/
H A Dnv_impl.h58 #define nv_realloc(buf, size) realloc((buf), (size), M_NVLIST, \
74 #define nv_realloc(buf, size) realloc((buf), (size))
/haiku/src/system/libroot/posix/malloc_debug/
H A Dmalloc_debug_api.cpp270 realloc(void* address, size_t newSize) function
272 return sCurrentHeap->realloc(address, newSize);
/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/libs/icon/flat_icon/
H A DLittleEndianBuffer.cpp291 fBuffer = (uint8*)realloc((void*)fBuffer, size);
/haiku/src/libs/util/
H A Dfparseln.c146 if ((cp = realloc(buf, len + s + 1)) == NULL) {
/haiku/src/servers/midi/
H A DPortDrivers.cpp111 sysexBuf = (uint8*) realloc(sysexBuf, sysexAlloc);
/haiku/src/bin/multiuser/
H A Duseradd.cpp162 buffer = (char*)realloc(buffer, bufferSize);
/haiku/src/add-ons/translators/psd/
H A DDataArray.cpp29 uint8 *newData = (uint8*)realloc(fData, blocks * fBlockSize);

Completed in 209 milliseconds

1234567