Home
last modified time | relevance | path

Searched refs:MemBlockHdr (Results 1 – 3 of 3) sorted by relevance

/external/svox/pico/lib/
Dpicoos.c240 typedef struct mem_block_hdr * MemBlockHdr; typedef
243 MemBlockHdr next;
259 MemBlockHdr firstBlock, lastBlock; /* memory blockList */
/external/sqlite/dist/
Dsqlite3.c12706 struct MemBlockHdr { struct
12708 struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */ argument
12742 struct MemBlockHdr *pFirst;
12743 struct MemBlockHdr *pLast;
12802 static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){ in sqlite3MemsysGetHeader()
12803 struct MemBlockHdr *p; in sqlite3MemsysGetHeader()
12808 p = (struct MemBlockHdr*)pAllocation; in sqlite3MemsysGetHeader()
12827 struct MemBlockHdr *pHdr; in sqlite3MemSize()
12840 assert( (sizeof(struct MemBlockHdr)&7) == 0 ); in sqlite3MemInit()
12893 struct MemBlockHdr *pHdr; in sqlite3MemMalloc()
[all …]
Dsqlite3.c.orig12692 ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
12696 ** to back up from the allocation pointer to find the MemBlockHdr. The
12697 ** MemBlockHdr tells us the size of the allocation and the number of
12699 ** MemBlockHdr.
12701 struct MemBlockHdr {
12703 struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */
12737 struct MemBlockHdr *pFirst;
12738 struct MemBlockHdr *pLast;
12792 ** Given an allocation, find the MemBlockHdr for that allocation.
12797 static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){
[all …]