Lines Matching defs:mask
402 int mask = 1;
403 while (power_exponent >= mask) mask <<= 1;
405 // The mask is now pointing to the bit above the most significant 1-bit of
408 mask >>= 2;
413 while (mask != 0 && this_value <= max_32bits) {
417 if ((power_exponent & mask) != 0) {
427 mask >>= 1;
435 while (mask != 0) {
437 if ((power_exponent & mask) != 0) {
440 mask >>= 1;