HomeSort by relevance Sort by last modified time
    Searched defs:RowSetEntry (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
rowset.c 75 ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry))
80 struct RowSetEntry {
82 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */
83 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */
87 ** RowSetEntry objects are allocated in large chunks (instances of the
94 struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */
105 struct RowSetEntry *pEntry; /* List of entries using pRight */
106 struct RowSetEntry *pLast; /* Last entry on the pEntry list */
107 struct RowSetEntry *pFresh; /* Source of new entry objects */
108 struct RowSetEntry *pTree; /* Binary tree of entries *
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 101 milliseconds