OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_heapinfo
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl2/libmalloc/dist/
malloc.c
40
malloc_info *
_heapinfo
;
variable
100
_heapinfo
= (malloc_info *) align (heapsize * sizeof (malloc_info));
101
if (
_heapinfo
== NULL)
103
memset (
_heapinfo
, 0, heapsize * sizeof (malloc_info));
104
_heapinfo
[0].free.size = 0;
105
_heapinfo
[0].free.next =
_heapinfo
[0].free.prev = 0;
107
_heapbase = (char *)
_heapinfo
;
109
/* Account for the
_heapinfo
block itself in the statistics. */
144
memcpy (newinfo,
_heapinfo
, heapsize * sizeof (malloc_info))
[
all
...]
gmalloc.c
174
extern malloc_info *
_heapinfo
;
386
malloc_info *
_heapinfo
;
variable
446
_heapinfo
= (malloc_info *) align (heapsize * sizeof (malloc_info));
447
if (
_heapinfo
== NULL)
449
memset (
_heapinfo
, 0, heapsize * sizeof (malloc_info));
450
_heapinfo
[0].free.size = 0;
451
_heapinfo
[0].free.next =
_heapinfo
[0].free.prev = 0;
453
_heapbase = (char *)
_heapinfo
;
455
/* Account for the
_heapinfo
block itself in the statistics. *
[
all
...]
Completed in 46 milliseconds
Indexes created Mon May 04 00:23:20 UTC 2026