nv/codegen: Delete periodicMask32

Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24791>
This commit is contained in:
M Henning
2023-08-19 12:48:02 -04:00
parent eae6800ec3
commit bf48f7ca97
-7
View File
@@ -553,13 +553,6 @@ public:
void andNot(const BitSet&);
// bits = (bits | setMask) & ~clrMask
inline void periodicMask32(uint32_t setMask, uint32_t clrMask)
{
for (unsigned int i = 0; i < (size + 31) / 32; ++i)
data[i] = (data[i] | setMask) & ~clrMask;
}
unsigned int popCount() const;
void print() const;