Lines Matching refs:SrcBit
6156 constexpr SizeT SrcBit = 1 << 2;
6157 assert((Index0 & SrcBit) == (Index1 & SrcBit));
6158 assert((Index0 & SrcBit) == (Index2 & SrcBit));
6159 assert((Index0 & SrcBit) == (Index3 & SrcBit));
6160 (void)SrcBit;
6175 constexpr SizeT SrcBit = 1 << 2;
6176 assert((Index0 & SrcBit) == (Index1 & SrcBit) || (Index1 == IGNORE_INDEX));
6177 assert((Index2 & SrcBit) == (Index3 & SrcBit) || (Index3 == IGNORE_INDEX));
6178 (void)SrcBit;
6201 constexpr SizeT SrcBit = 1 << 2;
6202 const SizeT Index0Bits = ((Index0 & SrcBit) == 0) ? 0 : (1 << 0);
6203 const SizeT Index1Bits = ((Index1 & SrcBit) == 0) ? 0 : (1 << 1);
6204 const SizeT Index2Bits = ((Index2 & SrcBit) == 0) ? 0 : (1 << 2);
6205 const SizeT Index3Bits = ((Index3 & SrcBit) == 0) ? 0 : (1 << 3);