Lines Matching refs:btMask
423 U32 const btMask = (1 << btLog) - 1;
433 const U32 btLow = btMask >= curr ? 0 : curr - btMask;
434 U32* smallerPtr = bt + 2*(curr&btMask);
445 U32 predictedSmall = *(bt + 2*((curr-1)&btMask) + 0);
446 U32 predictedLarge = *(bt + 2*((curr-1)&btMask) + 1);
459 U32* const nextPtr = bt + 2*(matchIndex & btMask);
464 const U32* predictPtr = bt + 2*((matchIndex-1) & btMask); /* written this way, as bt is a roll buffer */
577 U32 const btMask= (1U << btLog) - 1;
583 U32 const btLow = (btMask >= curr) ? 0 : curr - btMask;
586 U32* smallerPtr = bt + 2*(curr&btMask);
587 U32* largerPtr = bt + 2*(curr&btMask) + 1;
690 U32* const nextPtr = bt + 2*(matchIndex & btMask);