Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c57464 ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry))
57474 struct RowSetEntry { struct
57476 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ argument
57477 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ argument
57488 struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */
57499 struct RowSetEntry *pEntry; /* List of entries using pRight */
57500 struct RowSetEntry *pLast; /* Last entry on the pEntry list */
57501 struct RowSetEntry *pFresh; /* Source of new entry objects */
57502 struct RowSetEntry *pForest; /* List of binary trees of entries */
57527 p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p);
[all …]