HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 451 - 475 of 1945) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/codesighs/
msmap2tsv.c 150 ** mSymbolCapacity The number of symbols we can hold (before realloc).
488 moved = realloc((*outDB)->mSymbols, sizeof(SymDB_Symbol) * ((*outDB)->mSymbolCapacity + SYMDB_SYMBOL_GROWBY));
545 moved = realloc(dbSymbol->mSections, sizeof(SymDB_Section) * (dbSymbol->mSectionCount + 1));
591 moved = realloc(dbSection->mSizes, sizeof(SymDB_Size) * (dbSection->mSizeCount + 1));
617 moved = realloc(dbSize->mObjects, sizeof(char*) * (dbSize->mObjectCount + 1));
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.cpp 234 extern "C" void* realloc(void* oldMem, size_t bytes) { function
235 return __libc_malloc_dispatch->realloc(oldMem, bytes);
312 InitMallocFunction<MallocDebugRealloc>(malloc_impl_handler, &table->realloc, prefix, "realloc");
469 (gMallocUse.realloc == NULL) ||
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 65 {LibFunc::realloc, ReallocLike, 2, 1, -1},
147 /// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
155 /// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
158 // it's safe to consider realloc as noalias since accessing the original
186 /// reallocates memory (such as realloc).
  /external/bison/lib/
printf-parse.c 62 /* malloc(), realloc(), free(). */
116 ? realloc (a->arg, memory_size) \
593 ? realloc (d->dir, memory_size)
  /external/chromium_org/net/third_party/nss/ssl/
ssl3gthr.c 118 if (err) { /* realloc has set error code to no mem. */
186 if (err) { /* realloc has set error code to no mem. */
242 if (err) { /* realloc has set error code to no mem. */
  /external/chromium_org/third_party/freetype/include/freetype/internal/
psaux.h 113 /* (alloc/realloc). */
420 /* memory :: The object used for memory operations (alloc/realloc). */
740 /* realloc). */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ralloc.h 113 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
164 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
203 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
  /external/chromium_org/third_party/tcmalloc/vendor/doc/
heapprofile.html 30 <code>malloc</code>, <code>calloc</code>, <code>realloc</code>, or,
114 to <code>malloc</code>, <code>calloc</code>, <code>realloc</code>,
130 <code>malloc</code>, <code>calloc</code>, <code>realloc</code>,
  /external/freetype/include/freetype/internal/
psaux.h 116 /* (alloc/realloc). */
424 /* memory :: The object used for memory operations (alloc/realloc). */
744 /* realloc). */
    [all...]
  /external/mesa3d/src/glsl/
ralloc.h 113 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
164 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
203 * Similar to \c realloc. Unlike C89, passing 0 for \p size does not free the
  /ndk/sources/host-tools/sed-4.2.1/m4/
gnulib-comp.m4 99 gl_STDLIB_MODULE_INDICATOR([realloc-posix])
314 lib/realloc.c
414 m4/realloc.m4
  /system/core/toolbox/grep/
util.c 415 * Safe realloc() for internal use.
421 if ((ptr = realloc(ptr, size)) == NULL)
422 err(2, "realloc");
  /system/media/audio_utils/
tinysndfile.c 29 uint8_t *temp; // realloc buffer used for shrinking 16 bits to 8 bits and byte-swapping
402 handle->temp = realloc(handle->temp, desiredBytes);
411 handle->temp = realloc(handle->temp, desiredBytes);
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 407 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB ) function
413 if (complain_about_silly_args(new_szB, "realloc"))
430 /* can not realloc a range that was allocated with new or new [] */
540 // malloc_list. If this realloc() did not increase the memory size, we
542 // because shrinking a block with realloc() is (presumably) much rarer
560 and not used for, handling of the normal libc realloc()
  /art/runtime/
indirect_reference_table.cc 104 table_ = reinterpret_cast<const mirror::Object**>(realloc(table_, newSize * sizeof(const mirror::Object*)));
105 slot_data_ = reinterpret_cast<IndirectRefSlot*>(realloc(slot_data_,
  /dalvik/vm/
BitVector.cpp 91 pBits->storage = (u4*)realloc(pBits->storage,
114 pBits->storage = (u4*)realloc(pBits->storage, newSize * sizeof(u4));
  /external/chromium/third_party/libevent/
devpoll.c 198 fds = realloc(devpollop->fds, nfds * sizeof(struct evdevpoll));
200 event_warn("realloc");
signal.c 159 p = realloc(sig->sh_old, new_max * sizeof(*sig->sh_old));
161 event_warn("realloc");
  /external/chromium_org/base/process/
memory_unittest.cc 226 TEST_F(OutOfMemoryDeathTest, Realloc) {
229 value_ = realloc(NULL, test_size_);
  /external/chromium_org/base/
security_unittest.cc 124 HideValueFromCompiler(realloc(orig_ptr, kTooBigAllocSize))));
126 // If realloc() did not succeed, we need to free orig_ptr.
  /external/chromium_org/third_party/angle_dx11/samples/translator/
translator.cpp 160 buffer = (char*) realloc(buffer, bufferLen * sizeof(char));
169 buffer = (char*) realloc(buffer, bufferLen * sizeof(char));
  /external/chromium_org/third_party/icu/source/test/cintltst/
cmsgtst.c 126 result=(UChar*)realloc(result,sizeof(UChar) * resultlength);
291 result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
322 result=(UChar*)realloc(result, sizeof(UChar) * (resultlength+1));
347 result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
418 result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
512 result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
605 result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
    [all...]
  /external/chromium_org/third_party/libevent/
devpoll.c 198 fds = realloc(devpollop->fds, nfds * sizeof(struct evdevpoll));
200 event_warn("realloc");
signal.c 159 p = realloc(sig->sh_old, new_max * sizeof(*sig->sh_old));
161 event_warn("realloc");
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 118 INTERCEPTOR(void *, realloc, void *ptr, size_t size) {
338 asan_zone.realloc = &mz_realloc;

Completed in 1462 milliseconds

<<11121314151617181920>>