OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tbin
(Results
1 - 2
of
2
) sorted by null
/external/jemalloc/src/
tcache.c
31
tcache_bin_t *
tbin
= &tcache->tbins[binind];
local
34
if (
tbin
->low_water > 0) {
39
tcache_bin_flush_small(
tbin
, binind,
tbin
->ncached -
40
tbin
->low_water + (
tbin
->low_water >> 2), tcache);
42
tcache_bin_flush_large(
tbin
, binind,
tbin
->ncached -
43
tbin
->low_water + (
tbin
->low_water >> 2), tcache)
364
tcache_bin_t *
tbin
= &tcache->
tbin
s[i];
local
377
tcache_bin_t *
tbin
= &tcache->
tbin
s[i];
local
453
tcache_bin_t *
tbin
= &tcache->
tbin
s[i];
local
462
tcache_bin_t *
tbin
= &tcache->
tbin
s[i];
local
[
all
...]
/external/jemalloc/include/jemalloc/internal/
tcache.h
105
void *tcache_alloc_small_hard(tcache_t *tcache, tcache_bin_t *
tbin
,
107
void tcache_bin_flush_small(tcache_bin_t *
tbin
, size_t binind, unsigned rem,
109
void tcache_bin_flush_large(tcache_bin_t *
tbin
, size_t binind, unsigned rem,
134
void *tcache_alloc_easy(tcache_bin_t *
tbin
);
244
tcache_alloc_easy(tcache_bin_t *
tbin
)
248
if (
tbin
->ncached == 0) {
249
tbin
->low_water = -1;
252
tbin
->ncached--;
253
if ((int)
tbin
->ncached <
tbin
->low_water
264
tcache_bin_t *
tbin
;
local
[
all
...]
Completed in 28 milliseconds