Searched refs:BMS (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dresolve.c372 testcase( n==BMS-1 );
373 if( n>=BMS ){
374 n = BMS-1;
419 testcase( iCol==BMS );
420 testcase( iCol==BMS-1 );
421 pItem->colUsed |= ((Bitmask)1)<<(iCol>=BMS ? BMS-1 : iCol);
H A Dwhere.c191 int ix[BMS]; /* Cursor assigned to each bit */
1841 Bitmask cMask = iCol>=BMS ? ((Bitmask)1)<<(BMS-1) : ((Bitmask)1)<<iCol;
1842 testcase( iCol==BMS );
1843 testcase( iCol==BMS-1 );
1861 extraCols = pSrc->colUsed & (~idxCols | (((Bitmask)1)<<(BMS-1)));
1862 mxBitCol = (pTable->nCol >= BMS-1) ? BMS-1 : pTable->nCol;
1863 testcase( pTable->nCol==BMS-1 );
1864 testcase( pTable->nCol==BMS
[all...]
H A DsqliteInt.h1810 ** The number of bits in a Bitmask. "BMS" means "BitMask Size".
1812 #define BMS ((int)(sizeof(Bitmask)*8)) macro
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10155 ** The number of bits in a Bitmask. "BMS" means "BitMask Size".
10157 #define BMS ((int)(sizeof(Bitmask)*8)) macro
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11531 ** The number of bits in a Bitmask. "BMS" means "BitMask Size".
11533 #define BMS ((int)(sizeof(Bitmask)*8)) macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11531 ** The number of bits in a Bitmask. "BMS" means "BitMask Size".
11533 #define BMS ((int)(sizeof(Bitmask)*8)) macro
[all...]

Completed in 5361 milliseconds