Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c59042 ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry))
59052 struct RowSetEntry { struct
59054 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ argument
59055 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ argument
59066 struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */
59077 struct RowSetEntry *pEntry; /* List of entries using pRight */
59078 struct RowSetEntry *pLast; /* Last entry on the pEntry list */
59079 struct RowSetEntry *pFresh; /* Source of new entry objects */
59080 struct RowSetEntry *pForest; /* List of binary trees of entries */
59105 p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p);
[all …]