Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c230 #define FTS5_DATA_PAGE_B 31 /* Max page number of 2147483648 */ macro
233 ((i64)(segid) << (FTS5_DATA_PAGE_B+FTS5_DATA_HEIGHT_B+FTS5_DATA_DLI_B)) + \
234 ((i64)(dlidx) << (FTS5_DATA_PAGE_B + FTS5_DATA_HEIGHT_B)) + \
235 ((i64)(height) << (FTS5_DATA_PAGE_B)) + \
6329 *piPgno = (int)(iRowid & (((i64)1 << FTS5_DATA_PAGE_B) - 1)); in fts5DecodeRowid()
6330 iRowid >>= FTS5_DATA_PAGE_B; in fts5DecodeRowid()