Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c58993 ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry))
59003 struct RowSetEntry { struct
59005 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ argument
59006 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ argument
59017 struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */
59028 struct RowSetEntry *pEntry; /* List of entries using pRight */
59029 struct RowSetEntry *pLast; /* Last entry on the pEntry list */
59030 struct RowSetEntry *pFresh; /* Source of new entry objects */
59031 struct RowSetEntry *pForest; /* List of binary trees of entries */
59056 p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p);
[all …]