/ndk/tests/device/test-stlport_static-exception/jni/ |
D | badalloc1.cpp | 63 extern "C" void *realloc (void *p, size_t size) in realloc() function
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | badalloc1.cpp | 63 extern "C" void *realloc (void *p, size_t size) in realloc() function
|
/ndk/sources/host-tools/nawk-20071023/ |
D | b.c | 351 setvec = (int *) realloc(setvec, maxsetvec * sizeof(int)); in cfoll() 352 tmpset = (int *) realloc(tmpset, maxsetvec * sizeof(int)); in cfoll() 392 setvec = (int *) realloc(setvec, maxsetvec * sizeof(int)); in first() 393 tmpset = (int *) realloc(tmpset, maxsetvec * sizeof(int)); in first() 858 setvec = (int *) realloc(setvec, maxsetvec * sizeof(int)); in cgoto() 859 tmpset = (int *) realloc(tmpset, maxsetvec * sizeof(int)); in cgoto() 880 setvec = (int *) realloc(setvec, maxsetvec * sizeof(int)); in cgoto() 881 tmpset = (int *) realloc(setvec, maxsetvec * sizeof(int)); in cgoto()
|
D | lib.c | 398 fldtab = (Cell **) realloc(fldtab, s); in growfldtab()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | ios.cpp | 179 long* iarray = static_cast<long*>(realloc(__iarray_, newsize)); in iword() 208 void** parray = static_cast<void**>(realloc(__parray_, newsize)); in pword() 239 event_callback* fns = static_cast<event_callback*>(realloc(__fn_, newesize)); in register_callback() 244 int* indxs = static_cast<int *>(realloc(__index_, newisize)); in register_callback()
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | glob.c | 150 extern char *malloc (), *realloc (); 203 return (char *) realloc (p, n); 205 # define realloc my_realloc macro 812 = (char **) realloc (pglob->gl_pathv, 931 = (char **) realloc (pglob->gl_pathv, 986 new_pathv = (char **) realloc (pglob->gl_pathv, 1034 char *new = realloc (pglob->gl_pathv[i], len); 1377 = (char **) realloc (pglob->gl_pathv,
|
/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_line_reader.cpp | 102 buff_ = static_cast<char*>(::realloc(old_buff, new_capacity)); in GetNextLine()
|
D | crazy_linker_util.cpp | 91 ptr_ = reinterpret_cast<char*>(realloc(old_ptr, new_capacity + 1)); in Reserve()
|
D | crazy_linker_util.h | 237 items_ = reinterpret_cast<T*>(realloc(items_, new_capacity * sizeof(T))); in Reserve()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdlib | 51 void* realloc(void* ptr, size_t size); 125 using ::realloc;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cstdlib.h | 75 using _STLP_VENDOR_CSTD::realloc;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdlib_h.pass.cpp | 59 static_assert((std::is_same<decltype(realloc(0,0)), void*>::value), ""); in main()
|
/ndk/sources/android/support/tests/minitest/ |
D | minitest.cc | 118 str_ = reinterpret_cast<char*>(::realloc(str_, new_capacity + 1)); in Reserve()
|
/ndk/sources/cxx-stl/system/include/ |
D | cstdlib | 94 using ::realloc;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/ |
D | cstdlib.pass.cpp | 59 static_assert((std::is_same<decltype(std::realloc(0,0)), void*>::value), ""); in main()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstdlib | 94 using ::realloc;
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | regcomp.c | 1039 ptr = (cset *)realloc((char *)p->g->sets, nc * sizeof(cset)); in allocset() 1044 ptr = (uch *)realloc((char *)p->g->setbits, nbytes); in allocset() 1172 np = realloc(cs->multis, cs->smultis); in mcadd() 1379 sp = (sop *)realloc(p->strip, size*sizeof(sop)); in enlarge() 1395 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop)); in stripsnug()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL) in vasprintf()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | ios.cpp | 100 = __STATIC_CAST(PODType*,realloc(__array, new_N * sizeof(PODType))); in _Stl_expand_array()
|
D | allocators.cpp | 1083 return realloc(__p, __new_sz); in reallocate()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | fallback_malloc.ipp | 20 // No support for realloc.
|
/ndk/sources/host-tools/make-3.81/ |
D | make.h | 231 extern char *realloc PARAMS ((char *, int));
|
D | misc.c | 357 result = ptr ? realloc (ptr, size) : malloc (size); in xrealloc()
|
/ndk/sources/host-tools/make-3.81/w32/subproc/ |
D | sub_proc.c | 626 pproc->outp = realloc(pproc->outp, bufsize); in proc_stdout_thread() 657 pproc->errp = realloc(pproc->errp, bufsize); in proc_stderr_thread()
|
/ndk/sources/android/crazy_linker/tests/ |
D | test_util.h | 103 str_ = reinterpret_cast<char*>(realloc(str_, len + 1)); in Resize()
|