Home
last modified time | relevance | path

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

/external/jemalloc_new/include/jemalloc/internal/
Djemalloc_internal_inlines_c.h61 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) { in ialloc() function
/external/jemalloc/src/
Djemalloc.c1546 p = ialloc(tsd, LARGE_MINCLASS, ind_large, zero, slow_path);
1551 p = ialloc(tsd, usize, ind, zero, slow_path);
1566 p = ialloc(tsd, usize, ind, zero, slow_path);
1611 return (ialloc(tsd, size, ind, zero, slow_path));
2271 return (ialloc(tsd, size, ind, false, slow_path));
/external/jemalloc/include/jemalloc/internal/
Dprivate_symbols.txt293 ialloc
Djemalloc_internal.h995 void *ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero,
1070 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) in ialloc() function
Dprivate_namespace.h293 #define ialloc JEMALLOC_N(ialloc) macro
Dprivate_unnamespace.h293 #undef ialloc
Djemalloc_internal.h.in995 void *ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero,
1070 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) function
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c3997 static void** ialloc(mstate m, in ialloc() function
4405 return ialloc(gm, n_elements, &sz, 3, chunks); in dlindependent_calloc()
4410 return ialloc(gm, n_elements, sizes, 0, chunks); in dlindependent_comalloc()
4819 return ialloc(ms, n_elements, &sz, 3, chunks); in mspace_independent_calloc()
4829 return ialloc(ms, n_elements, sizes, 0, chunks); in mspace_independent_comalloc()
/external/libffi/src/
Ddlmalloc.c3992 static void** ialloc(mstate m, in ialloc() function
4400 return ialloc(gm, n_elements, &sz, 3, chunks); in dlindependent_calloc()
4405 return ialloc(gm, n_elements, sizes, 0, chunks); in dlindependent_comalloc()
4814 return ialloc(ms, n_elements, &sz, 3, chunks); in mspace_independent_calloc()
4824 return ialloc(ms, n_elements, sizes, 0, chunks); in mspace_independent_comalloc()
/external/dlmalloc/
Dmalloc.c5000 static void** ialloc(mstate m, in ialloc() function
5344 return ialloc(gm, n_elements, &sz, 3, chunks); in dlindependent_calloc()
5349 return ialloc(gm, n_elements, sizes, 0, chunks); in dlindependent_comalloc()
5869 return ialloc(ms, n_elements, &sz, 3, chunks); in mspace_independent_calloc()
5879 return ialloc(ms, n_elements, sizes, 0, chunks); in mspace_independent_comalloc()
/external/ltp/testcases/kernel/fs/doio/
Dgrowfiles.c3032 if (ialloc(fd, size, IA_CONT, &avl) == -1) { in pre_alloc()