OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:malloc_cache
(Results
1 - 2
of
2
) sorted by relevancy
/src/lib/libc/stdlib/
malloc.c
224
static size_t
malloc_cache
= 16;
variable in typeref:typename:size_t
492
case '>':
malloc_cache
<<= 1; break;
493
case '<':
malloc_cache
>>= 1; break;
547
if (!
malloc_cache
)
548
malloc_cache
++;
550
malloc_cache
<<= malloc_pageshift;
1011
pf->size >
malloc_cache
&& /* ..and the cache is full, */
1019
pf->end = (char *)pf->page +
malloc_cache
;
1020
pf->size =
malloc_cache
;
malloc.c
224
static size_t
malloc_cache
= 16;
variable in typeref:typename:size_t
492
case '>':
malloc_cache
<<= 1; break;
493
case '<':
malloc_cache
>>= 1; break;
547
if (!
malloc_cache
)
548
malloc_cache
++;
550
malloc_cache
<<= malloc_pageshift;
1011
pf->size >
malloc_cache
&& /* ..and the cache is full, */
1019
pf->end = (char *)pf->page +
malloc_cache
;
1020
pf->size =
malloc_cache
;
Completed in 76 milliseconds
Indexes created Mon Sep 22 13:09:51 GMT 2025