Home
last modified time | relevance | path

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

/external/icu/icu4c/source/tools/tzcode/
DMakefile.in36 OBJECTS= zic.o localtime.o asctime.o scheck.o ialloc.o
/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/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/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/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.c3022 if (ialloc(fd, size, IA_CONT, &avl) == -1) { in pre_alloc()