Home | History | Annotate | Download | only in dist

Lines Matching full:bms

9286 ** The number of bits in a Bitmask.  "BMS" means "BitMask Size".
9288 #define BMS ((int)(sizeof(Bitmask)*8))
59670 testcase( n==BMS-1 );
59671 if( n>=BMS ){
59672 n = BMS-1;
59717 pItem->colUsed |= ((Bitmask)1)<<(iCol>=BMS ? BMS-1 : iCol);
86928 int ix[BMS]; /* Cursor assigned to each bit */
89166 if( x<BMS-1 ){
90181 SQLITE_API char sqlite3_query_plan[BMS*2*40]; /* Text of the join */
90321 if( pTabList->nSrc>BMS ){
90322 sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS);
90636 if( !pWInfo->okOnePass && pTab->nCol<BMS ){