Lines Matching defs:mask
578 mask = 0;
763 i->mask = mask;
789 Instruction::defCount(unsigned int mask, bool singleFile) const
794 unsigned int d = ffs(mask);
799 mask &= ~(1 << i);
802 for (n = 0, i = 0; this->defExists(i); ++i, mask >>= 1)
803 n += mask & 1;
808 Instruction::srcCount(unsigned int mask, bool singleFile) const
813 unsigned int s = ffs(mask);
818 mask &= ~(1 << i);
821 for (n = 0, i = 0; this->srcExists(i); ++i, mask >>= 1)
822 n += mask & 1;