Searched refs:realloc (Results 51 - 75 of 165) sorted by path

1234567

/haiku/src/kits/support/
H A DList.cpp495 = (void**)realloc(fObjectList, newSize * sizeof(void*));
/haiku/src/libs/bsd/
H A Dfgetln.c54 char *newBuffer = realloc(sBuffer, sBufferSize + LINE_LENGTH);
H A Dstringlist.c74 string = realloc(sl->sl_str, sl->sl_max * sizeof(char *));
/haiku/src/libs/glut/
H A DglutMenu.cpp60 realloc(menuList, menuListSize * sizeof(GlutMenu *));
H A DglutWindow.cpp34 gState.windowList = (GlutWindow **)realloc(gState.windowList,
/haiku/src/libs/icon/flat_icon/
H A DLittleEndianBuffer.cpp291 fBuffer = (uint8*)realloc((void*)fBuffer, size);
/haiku/src/libs/iconv/
H A Dlocalcharset.c187 res_ptr = (char *) realloc (res_ptr, res_size + 1);
/haiku/src/libs/mapm/
H A Dm_apm_lc.h292 #define MAPM_REALLOC realloc
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc231 p1 = (buf_char *) realloc (data, s1 + size2() + k);
/haiku/src/libs/util/
H A Dfparseln.c146 if ((cp = realloc(buf, len + s + 1)) == NULL) {
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp360 Key* newKeys = (Key*)realloc((void*)fKeys, newCapacity * sizeof(Key));
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.h366 uint8 *newBuffer = (uint8*)realloc(fBuffer, fWriteIndex + extraSize);
/haiku/src/servers/midi/
H A DPortDrivers.cpp111 sysexBuf = (uint8*) realloc(sysexBuf, sysexAlloc);
/haiku/src/system/boot/loader/file_systems/amiga_ffs/
H A DVolume.cpp72 char *newBuffer = (char *)realloc(buffer, blockSize);
/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,
H A Dvasprintf.c67 /* Only use realloc if the size we need is of the same order of
72 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
83 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.h437 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t)))
H A Dregexec.c1357 new_array = realloc (fs->stack, (sizeof (struct re_fail_stack_ent_t)
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dvfscanf.c860 newstr = (char *) realloc (*strptr, strsize * 2);
865 newstr = (char *) realloc (*strptr,
908 str = (char *) realloc (*strptr, 2 * strsize);
913 str = (char *) realloc (*strptr, strsize + 1);
956 newstr = (char *) realloc (*strptr, strleng + n + 1);
980 char *cp = (char *) realloc (*strptr, str - *strptr);
1025 wstr = (wchar_t *) realloc (*strptr,
1032 wstr = (wchar_t *) realloc (*strptr,
1095 wstr = (wchar_t *) realloc (*strptr,
1101 wstr = (wchar_t *) realloc (*strpt
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp-impl.h89 void *realloc (void *, size_t);
106 void *realloc ();
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/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) :
/haiku/src/system/libroot/posix/malloc_debug/
H A Dmalloc_debug_api.h19 void* (*realloc)(void* address, size_t newSize); member in struct:heap_implementation
/haiku/src/tests/add-ons/media/media-add-ons/mixer/
H A Dmain.cpp41 fData = (float*)realloc(fData, newSize * sizeof(float));

Completed in 211 milliseconds

1234567