Searched refs:realloc (Results 1 - 25 of 955) sorted by relevance

1234567891011>>

/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Drealloc.c35 #undef realloc macro
45 return realloc(ptr, size);
H A Derealloc.c42 * Like realloc but never fails.
48 void *tmp = realloc (ptr, sz);
51 errx (1, "realloc %lu failed", (unsigned long)sz);
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Drealloc.c1 /* Work around bug on some systems where realloc (NULL, 0) fails.
23 #undef realloc macro
28 char *realloc ();
43 return realloc (p, n);
H A Dxmalloc.c29 void *realloc ();
55 "you must run the autoconf test for a properly working realloc --see realloc.m4"
96 p = realloc (p, n);
/macosx-10.10/gpatch-3/patch/
H A Drealloc.c1 /* Work around bug on some systems where realloc (NULL, 0) fails.
23 #undef realloc macro
28 char *realloc ();
43 return realloc (p, n);
H A Dxmalloc.c29 void *realloc ();
55 "you must run the autoconf test for a properly working realloc --see realloc.m4"
96 p = realloc (p, n);
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dansi_stdlib.h45 extern PTR_T realloc ();
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dansi_stdlib.h45 extern PTR_T realloc ();
/macosx-10.10/xnu-2782.1.97/osfmk/libsa/
H A Dstdlib.h75 extern void *realloc(void *, size_t);
/macosx-10.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Dreallocf.c37 nptr = realloc(ptr, size);
41 * in effect, realloc(ptr, 0) frees the memory and returns NULL.
43 * realloc(ptr, 0) can't fail when ptr != NULL.
/macosx-10.10/procmail-14/procmail/src/
H A Dshell.h7 #define realloc(p,n) trealloc(p,(size_t)(n)) macro
H A Decommon.c27 { if(old=realloc(old,len))
/macosx-10.10/uucp-11/uucp/lib/
H A Dxreall.c3 realloc can't handle a NULL first argument, so we check for that
19 pret = realloc (p, c);
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dalloc.cpp65 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
70 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
105 void *DefaultAllocator::realloc(void *addr, size_t newSize) throw(std::bad_alloc) function in class:DefaultAllocator
107 if (void *result = ::realloc(addr, newSize))
118 void *SensitiveAllocator::realloc(void *addr, size_t newSize) throw(std::bad_alloc) function in class:SensitiveAllocator
123 return DefaultAllocator::realloc(addr, newSize);
H A Dtrackingallocator.cpp59 void *TrackingAllocator::realloc(void *inAddress, size_t inNewSize) throw(std::bad_alloc) function in class:TrackingAllocator
61 void *anAddress = subAllocator.realloc(inAddress, inNewSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dalloc.cpp65 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
70 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
105 void *DefaultAllocator::realloc(void *addr, size_t newSize) throw(std::bad_alloc) function in class:DefaultAllocator
107 if (void *result = ::realloc(addr, newSize))
118 void *SensitiveAllocator::realloc(void *addr, size_t newSize) throw(std::bad_alloc) function in class:SensitiveAllocator
123 return DefaultAllocator::realloc(addr, newSize);
H A Dtrackingallocator.cpp59 void *TrackingAllocator::realloc(void *inAddress, size_t inNewSize) throw(std::bad_alloc) function in class:TrackingAllocator
61 void *anAddress = subAllocator.realloc(inAddress, inNewSize);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_plugin/
H A DDLsession.cpp56 void *DLPluginSession::realloc(void *addr, size_t size) throw(std::bad_alloc) function in class:DLPluginSession
57 { return PluginSession::realloc(addr, size); }
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_plugin/lib/
H A DDLsession.cpp56 void *DLPluginSession::realloc(void *addr, size_t size) throw(std::bad_alloc) function in class:DLPluginSession
57 { return PluginSession::realloc(addr, size); }
/macosx-10.10/swig-12/Lib/
H A Dcmalloc.i17 %realloc(TYPE [, NAME = TYPE])
61 %define %realloc(TYPE,NAME...)
70 return (TYPE *) realloc(ptr, nitems*sizeof(TYPE));
72 return (TYPE *) realloc(ptr, nitems);
103 %realloc(TYPE,NAME)
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/expat/xmltok/
H A Dxmldef.h42 #define realloc(x, y) HeapReAlloc(GetProcessHeap(), 0, x, y) macro
58 #define realloc(x, y) PR_Realloc((x), (y)) macro
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A Darraymem.h20 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DSmallVector.cpp34 NewElts = realloc(this->BeginX, NewCapacityInBytes);
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Ddoalloc.c34 * Wrapper for malloc/realloc. Standard implementations allow realloc with
37 * Also if realloc fails, we discard the old memory to avoid leaks.
50 if ((newp = realloc(oldp, amount)) == 0) {
/macosx-10.10/smb-759.0/lib/librpc/
H A Dmemory.cpp58 buf = ::realloc(buf, nbytes);

Completed in 189 milliseconds

1234567891011>>