/external/jemalloc/include/jemalloc/internal/ |
D | tcache.h | 180 size_t size, szind_t ind, bool zero, bool slow_path); 182 size_t size, szind_t ind, bool zero, bool slow_path); 184 szind_t binind, bool slow_path); 186 size_t size, bool slow_path); 296 szind_t binind, bool zero, bool slow_path) in tcache_alloc_small() argument 324 if (config_prof || (slow_path && config_fill) || unlikely(zero)) { in tcache_alloc_small() 330 if (slow_path && config_fill) { in tcache_alloc_small() 338 if (slow_path && config_fill && unlikely(opt_junk_alloc)) { in tcache_alloc_small() 355 szind_t binind, bool zero, bool slow_path) in tcache_alloc_large() argument 381 if (config_prof || (slow_path && config_fill) || in tcache_alloc_large() [all …]
|
D | jemalloc_internal.h | 994 tcache_t *tcache, bool is_metadata, arena_t *arena, bool slow_path); 996 bool slow_path); 1006 bool slow_path); 1008 void iqalloc(tsd_t *tsd, void *ptr, tcache_t *tcache, bool slow_path); 1010 bool slow_path); 1012 bool slow_path); 1053 bool is_metadata, arena_t *arena, bool slow_path) in iallocztm() argument 1061 ret = arena_malloc(tsdn, arena, size, ind, zero, tcache, slow_path); in iallocztm() 1070 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) in ialloc() argument 1074 false, NULL, slow_path)); in ialloc() [all …]
|
D | jemalloc_internal.h.in | 994 tcache_t *tcache, bool is_metadata, arena_t *arena, bool slow_path); 996 bool slow_path); 1006 bool slow_path); 1008 void iqalloc(tsd_t *tsd, void *ptr, tcache_t *tcache, bool slow_path); 1010 bool slow_path); 1012 bool slow_path); 1053 bool is_metadata, arena_t *arena, bool slow_path) argument 1061 ret = arena_malloc(tsdn, arena, size, ind, zero, tcache, slow_path); 1070 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) argument 1074 false, NULL, slow_path)); [all …]
|
D | arena.h | 701 bool zero, tcache_t *tcache, bool slow_path); 704 void arena_dalloc(tsdn_t *tsdn, void *ptr, tcache_t *tcache, bool slow_path); 706 bool slow_path); 1346 tcache_t *tcache, bool slow_path) in arena_malloc() argument 1355 tcache, size, ind, zero, slow_path)); in arena_malloc() 1359 tcache, size, ind, zero, slow_path)); in arena_malloc() 1431 arena_dalloc(tsdn_t *tsdn, void *ptr, tcache_t *tcache, bool slow_path) in arena_dalloc() argument 1462 binind, slow_path); in arena_dalloc() 1478 size - large_pad, slow_path); in arena_dalloc() 1491 bool slow_path) in arena_sdalloc() argument [all …]
|
/external/jemalloc/src/ |
D | jemalloc.c | 1538 prof_tctx_t *tctx, bool slow_path) argument 1546 p = ialloc(tsd, LARGE_MINCLASS, ind_large, zero, slow_path); 1551 p = ialloc(tsd, usize, ind, zero, slow_path); 1557 ialloc_prof(tsd_t *tsd, size_t usize, szind_t ind, bool zero, bool slow_path) argument 1564 p = ialloc_prof_sample(tsd, usize, ind, zero, tctx, slow_path); 1566 p = ialloc(tsd, usize, ind, zero, slow_path); 1584 bool slow_path) argument 1589 if (slow_path && unlikely(malloc_init())) { 1602 if (config_stats || (config_prof && opt_prof) || (slow_path && 1609 return (ialloc_prof(tsd, *usize, ind, zero, slow_path)); [all …]
|
/external/v8/src/builtins/ |
D | builtins-regexp.cc | 1326 Label fast_path(this), slow_path(this); in TF_BUILTIN() local 1328 &slow_path); in TF_BUILTIN() 1341 Bind(&slow_path); in TF_BUILTIN() 1736 Label fast_path(this), slow_path(this); in TF_BUILTIN() local 1738 &slow_path); in TF_BUILTIN() 1743 Bind(&slow_path); in TF_BUILTIN() 1862 Label fast_path(this), slow_path(this); in TF_BUILTIN() local 1864 &slow_path); in TF_BUILTIN() 1869 Bind(&slow_path); in TF_BUILTIN()
|