Lines Matching refs:mask
538 * Calculate number of 1 bits in mask542 mvOnes(unsigned long mask)546 y = (mask >> 1) &033333333333;547 y = mask - y - ((y >> 1) & 033333333333);552 * Calculate the number of shifts till we hit the mask555 mvShifts(unsigned long mask)559 if (mask) {560 while(!(mask&0x1)) {561 mask = mask >> 1;