Searched refs:realloc (Results 126 - 150 of 165) sorted by relevance

1234567

/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Drunlist.c111 return realloc(rl, new_size);
839 rl2 = realloc(rl, rlsize);
1703 rl = realloc(*arl, new_size);
H A Dunistr.c1099 tc = realloc(ucs, ucs_len);
/haiku/src/bin/network/telnet/
H A Dtelnet.c1527 opt_reply = (unsigned char *)realloc(opt_reply, OPT_REPLY_SIZE);
1531 /*@*/ printf("env_opt_start: malloc()/realloc() failed!!!\n");
1578 opt_reply = (unsigned char *)realloc(opt_reply, len);
1580 /*@*/ printf("env_opt_add: realloc() failed!!!\n");
/haiku/src/build/libgnuregex/
H A Dregex.c181 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
222 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
939 /* Extend the buffer by twice its current size via realloc and
951 bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
1161 { /* If zero allocated, but buffer is non-null, try to realloc
1596 whole pattern moves because of realloc, they will still
/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp871 AttributeEntry **newEntries = (AttributeEntry **)realloc(fEntries,
972 uint8 *newData = (uint8 *)realloc(fData, size);
/haiku/src/system/kernel/
H A Dmodule.cpp849 module_path* stack = (module_path*)realloc(iterator->stack,
1944 image->path = (char*)realloc(pathBuffer.DetachBuffer(),
H A Dguarded_heap.cpp984 realloc(void* address, size_t newSize) function
H A Delf.cpp2568 stringTable = (char*)realloc((char*)image->debug_string_table,
2578 elf_sym* symbolTable = (elf_sym*)realloc(
/haiku/src/bin/unzip/
H A Dbeos.c762 if ((rootpath = (char *)realloc(tmproot, rootlen+1)) == NULL) {
/haiku/src/system/kernel/messaging/
H A DKMessage.cpp999 void* newBuffer = realloc(fBuffer, newCapacity);
/haiku/src/kits/game/
H A DWindowScreen.cpp515 void *newDebugList = realloc(fDebugThreads,
/haiku/src/kits/interface/
H A DRegionSupport.cpp123 (firstrect) = (clipping_rect *) realloc \
873 * nuke the realloc() at the end of this function eventually.
1065 // newReg->fData = (clipping_rect*) realloc ((char *) newReg->fData,
1073 // * No point in doing the extra work involved in an realloc if
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp697 char* n = (char*) realloc(*comment, comlen + 100);
/haiku/src/kits/app/
H A DMessage.cpp1591 uint8* newData = (uint8*)realloc(fData, size);
1615 uint8* newData = (uint8*)realloc(fData, size);
1696 field_header* newFields = (field_header*)realloc(fFields,
1771 field_header* newFields = (field_header*)realloc(fFields, size);
/haiku/src/libs/bsd/
H A Dfts.c132 nptr = realloc(ptr, size);
821 /* Did realloc() change the pointer? */
896 * If realloc() changed the address of the path, adjust the
1052 * 40 so don't realloc one entry at a time.
1134 * plus 256 bytes so don't realloc the path 2 bytes at a time.
1146 * When the path is realloc'd, have to fix all of the pointers in structures
/haiku/src/system/runtime_loader/
H A Delf.cpp428 // We realloc() everytime -- not particularly efficient, but good enough for
430 image_t** newArray = (image_t**)realloc(sPreloadedAddons,
/haiku/src/bin/network/telnetd/
H A Dsys_term.c1167 argv = (char **)realloc(argv, sizeof(*argv)*((long)(*argv) + 2));
/haiku/src/kits/support/
H A DString.cpp106 (int32*)realloc(fBuffer, fBufferSize * sizeof(int32));
2371 data = (char*)realloc(data, length + kPrivateDataOffset + 1);
/haiku/src/apps/mail/
H A DContent.cpp1040 char *result = (char *)realloc(fYankBuffer,
3104 char* result = (char *)realloc(target,
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp1089 uint8* data = (uint8*)realloc(fData, end);
1127 uint8* data = (uint8*)realloc(fData, size);
/haiku/src/apps/diskprobe/
H A DDataView.cpp232 fData = (uint8 *)realloc(fData, fDataSize);
/haiku/src/add-ons/kernel/network/stack/
H A Dinterfaces.cpp413 sockaddr* resized = (sockaddr*)realloc(address, size);
/haiku/src/bin/bfs_tools/lib/
H A DInode.cpp413 void *buffer = realloc(fAttributeBuffer, attribute->Size());
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dkernel_interface.cpp204 char* reallocated = (char*)realloc(mountpoint, strlen(mountpoint) + 1);
/haiku/src/system/libnetwork/netresolv/net/
H A Dgethnamaddr.c115 char **xptr = realloc(arr, (siz + 10) * sizeof(*arr)); \

Completed in 404 milliseconds

1234567