OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:psize_t
(Results
1 - 2
of
2
) sorted by null
/external/srec/portable/include/
pmalloc.h
37
typedef unsigned int
psize_t
;
typedef
40
#define DKoffsetof(T, member) ((_STD
psize_t
)&(((T *)0)->member))
61
psize_t
_Size; /* CELL_OFF <= SIZE_CELL <= _Size */
73
void *_Getmem(
psize_t
);
89
void _UPD_Altab(
psize_t
d_heap,
psize_t
d_alloc,
psize_t
d_free);
98
void PortMallocSetPoolSize(
psize_t
size);
99
psize_t
PortMallocGetPoolSize(void);
103
void *(PortMalloc)(
psize_t
size_arg)
[
all
...]
/external/srec/portable/src/
pmalloc.c
82
psize_t
_Size_block = {SIZE_BLOCK}; /* preferred _Getmem chunk */
106
static
psize_t
memSize = MEM_SIZE;
121
static
psize_t
numMemBins;
151
void *_Getmem(
psize_t
size)
215
/* PortMallocSetPoolSize(
psize_t
size ) : define size of memory pool.
217
void PortMallocSetPoolSize(
psize_t
size)
231
psize_t
PortMallocGetPoolSize(void)
253
psize_t
total_heap;
254
psize_t
total_alloc;
255
psize_t
total_free
[
all
...]
Completed in 348 milliseconds