HomeSort by relevance Sort by last modified time
    Searched refs:old_ptr (Results 1 - 21 of 21) sorted by null

  /external/jemalloc/include/jemalloc/internal/
valgrind.h 39 #define JEMALLOC_VALGRIND_REALLOC_MOVED_no(ptr, old_ptr) \
41 #define JEMALLOC_VALGRIND_REALLOC_MOVED_maybe(ptr, old_ptr) \
42 ((ptr) != (old_ptr))
47 #define JEMALLOC_VALGRIND_REALLOC_OLD_PTR_NULL_no(old_ptr) \
49 #define JEMALLOC_VALGRIND_REALLOC_OLD_PTR_NULL_maybe(old_ptr) \
50 (old_ptr == NULL)
52 old_ptr, old_usize, old_rzsize, old_ptr_null, zero) do { \
57 old_ptr)) { \
67 old_ptr_null(old_ptr)) { \
68 valgrind_freelike_block(old_ptr, \
    [all...]
prof.h 337 const void *old_ptr, prof_tctx_t *tctx);
345 prof_tctx_t *tctx, bool prof_active, bool updated, const void *old_ptr,
421 prof_tctx_reset(tsdn_t *tsdn, const void *ptr, size_t usize, const void *old_ptr,
428 arena_prof_tctx_reset(tsdn, ptr, usize, old_ptr, old_tctx);
498 bool prof_active, bool updated, const void *old_ptr, size_t old_usize,
527 prof_tctx_reset(tsd_tsdn(tsd), ptr, usize, old_ptr, old_tctx); local
arena.h 697 const void *old_ptr, prof_tctx_t *old_tctx);
    [all...]
  /external/syslinux/gpxe/src/interface/efi/
efi_umalloc.c 37 * @v old_ptr Memory previously allocated by umalloc(), or UNULL
44 static userptr_t efi_urealloc ( userptr_t old_ptr, size_t new_size ) {
78 if ( old_ptr && ( old_ptr != UNOWHERE ) ) {
79 copy_from_user ( &old_size, old_ptr, -EFI_PAGE_SIZE,
81 memcpy_user ( new_ptr, 0, old_ptr, 0,
84 phys_addr = user_to_phys ( old_ptr, -EFI_PAGE_SIZE );
  /external/syslinux/gpxe/src/include/
stdlib.h 26 extern void * realloc ( void *old_ptr, size_t new_size );
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_debug.h 61 void *old_ptr, size_t old_size, size_t new_size );
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_memory.c 223 void *old_ptr, size_t old_size, size_t new_size )
229 if (!old_ptr)
233 debug_free( file, line, function, old_ptr );
237 old_hdr = header_from_data(old_ptr);
241 old_ptr);
250 old_ptr);
282 memcpy( new_ptr, old_ptr, old_size < new_size ? old_size : new_size );
  /external/syslinux/gpxe/src/core/
malloc.c 236 * @v old_ptr Memory previously allocated by malloc(), or NULL
242 * If @c old_ptr is non-NULL, then the contents of the newly allocated
253 void * realloc ( void *old_ptr, size_t new_size ) {
279 if ( old_ptr && ( old_ptr != NOWHERE ) ) {
280 old_block = container_of ( old_ptr, struct autosized_block,
285 memcpy ( new_ptr, old_ptr,
  /frameworks/base/libs/androidfw/include/androidfw/
Util.h 84 pointer old_ptr = ptr_; local
86 std::free(reinterpret_cast<void*>(old_ptr));
  /external/swiftshader/third_party/stlport-cpp11-extension/
memory 285 T* old_ptr = mPtr;
287 if (old_ptr != NULL && mPtr != old_ptr) {
288 get_deleter()(old_ptr);
  /external/libchrome/base/memory/
ref_counted.h 492 T* old_ptr = ptr_; local
494 if (old_ptr)
495 Release(old_ptr);
  /external/jemalloc/src/
jemalloc.c     [all...]
  /art/runtime/mirror/
object_reference.h 142 bool CasWeakRelaxed(MirrorType* old_ptr, MirrorType* new_ptr)
  /external/webrtc/webrtc/base/
scoped_ptr.h 257 T* old_ptr = data_.ptr; local
259 return old_ptr;
  /external/compiler-rt/lib/asan/
asan_allocator.cc 539 void *Reallocate(void *old_ptr, uptr new_size, BufferedStackTrace *stack) {
540 CHECK(old_ptr && new_size);
541 uptr p = reinterpret_cast<uptr>(old_ptr);
553 ReportInvalidFree(old_ptr, chunk_state, stack);
558 REAL(memcpy)(new_ptr, old_ptr, memcpy_size);
559 Deallocate(old_ptr, 0, stack, FROM_MALLOC);
  /external/clang/test/Sema/
builtins.c 46 void *old_ptr = __sync_val_compare_and_swap((void**)0, 0, 0); local
  /external/syslinux/com32/lib/libpng/
pngwutil.c 252 png_charpp old_ptr; local
254 old_ptr = comp->output_ptr;
258 png_memcpy(comp->output_ptr, old_ptr, old_max
260 png_free(png_ptr, old_ptr);
303 png_charpp old_ptr; local
305 old_ptr = comp->output_ptr;
310 png_memcpy(comp->output_ptr, old_ptr,
312 png_free(png_ptr, old_ptr);
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1238 void *old_ptr; local
1253 old_ptr = p->g->setbits;
1255 free(old_ptr);
1258 if (old_ptr != p->g->setbits) {
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
coffcode.h 4703 alent *old_ptr = func_table[i]; local
    [all...]
  /external/libpng/
pngrutil.c 694 png_bytep old_ptr = png_ptr->read_buffer; local
698 text = old_ptr; /* freed below */
    [all...]
  /external/pdfium/third_party/libpng16/
pngrutil.c 683 png_bytep old_ptr = png_ptr->read_buffer; local
687 text = old_ptr; /* freed below */
    [all...]

Completed in 716 milliseconds