Lines Matching defs:mask
193 // The arguments x and y represent the mask and value. If y is 0, x is the
194 // mask. Otherwise, y is the mask, and x is the value to compare against a
431 // positions before making the mask/value.
436 // "otherwise" or absent case. Optimise this into an instruction mask and
442 // Construct the instruction mask and value from the pattern.
481 // has a corresponding mask and value for the pattern.
540 uint32_t mask = 0, value = 0;
543 mask = (mask << 1) | ((sym == PatternSymbol::kSymbolX) ? 0 : 1);
546 return std::make_pair(mask, value);
583 uint32_t mask = 0;
585 mask |= 1 << bit;
587 return mask;