Home
last modified time | relevance | path

Searched refs:oldmem (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1499 static Void_t* realloc_check(Void_t* oldmem, size_t bytes,
2756 if (bytes == 0 && oldmem != NULL) { public_fREe(oldmem); return 0; } in public_rEALLOc()
2760 if (oldmem == 0) return public_mALLOc(arena_list, bytes); in public_rEALLOc()
2762 oldp = mem2chunk(oldmem); in public_rEALLOc()
2772 newp = _int_realloc(ar_ptr, oldmem, bytes); in public_rEALLOc()
3524 _int_realloc(mstate av, Void_t* oldmem, size_t bytes) in _int_realloc() argument
3551 _int_free(av, oldmem); in _int_realloc()
3557 if (oldmem == 0) return _int_malloc(av, bytes); in _int_realloc()
3561 oldp = mem2chunk(oldmem); in _int_realloc()
3623 s = (INTERNAL_SIZE_T*)(oldmem); in _int_realloc()
[all …]