Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dbitvec.c104 BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */ member
143 return (p->u.aBitmap[i/BITVEC_SZELEM] & (1<<(i&(BITVEC_SZELEM-1))))!=0; in sqlite3BitvecTestNotNull()
185 p->u.aBitmap[i/BITVEC_SZELEM] |= 1 << (i&(BITVEC_SZELEM-1)); in sqlite3BitvecSet()
253 p->u.aBitmap[i/BITVEC_SZELEM] &= ~(1 << (i&(BITVEC_SZELEM-1))); in sqlite3BitvecClear()