Lines Matching refs:unlikely
36 if (unlikely(ticker_tick(&tcache->gc_ticker))) { in tcache_event()
53 if (unlikely(!tcache_success)) { in tcache_alloc_small()
56 if (unlikely(arena == NULL)) { in tcache_alloc_small()
72 if (config_prof || (slow_path && config_fill) || unlikely(zero)) { in tcache_alloc_small()
79 if (unlikely(opt_junk_alloc)) { in tcache_alloc_small()
82 } else if (unlikely(opt_zero)) { in tcache_alloc_small()
87 if (slow_path && config_fill && unlikely(opt_junk_alloc)) { in tcache_alloc_small()
116 if (unlikely(!tcache_success)) { in tcache_alloc_large()
122 if (unlikely(arena == NULL)) { in tcache_alloc_large()
135 unlikely(zero)) { in tcache_alloc_large()
142 if (unlikely(opt_junk_alloc)) { in tcache_alloc_large()
145 } else if (unlikely(opt_zero)) { in tcache_alloc_large()
175 if (slow_path && config_fill && unlikely(opt_junk_free)) { in tcache_dalloc_small()
181 if (unlikely(bin->ncached == bin_info->ncached_max)) { in tcache_dalloc_small()
201 if (slow_path && config_fill && unlikely(opt_junk_free)) { in tcache_dalloc_large()
207 if (unlikely(bin->ncached == bin_info->ncached_max)) { in tcache_dalloc_large()
221 if (unlikely(elm->tcache == NULL)) { in tcaches_get()