Searched refs:ZeroByteMask (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp8672 uint32_t ZeroByteMask = 0; local
8673 if (!(C & 0x000000ff)) ZeroByteMask |= 0x000000ff;
8674 if (!(C & 0x0000ff00)) ZeroByteMask |= 0x0000ff00;
8675 if (!(C & 0x00ff0000)) ZeroByteMask |= 0x00ff0000;
8676 if (!(C & 0xff000000)) ZeroByteMask |= 0xff000000;
8677 uint32_t NonZeroByteMask = ~ZeroByteMask; // 0xff for any non-zero byte

Completed in 169 milliseconds