Lines Matching defs:wmask
43 * SO THAT wmask BELOW IS ALL ONES
48 #define wmask (wsize - 1)
90 if ((t | (uintptr_t)dst) & wmask) {
95 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
98 t = wsize - (t & wmask);
107 t = length & wmask;
113 * (t&wmask) bytes to align, not wsize-(t&wmask).
118 if ((t | (uintptr_t)dst) & wmask) {
119 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize)
122 t &= wmask;
128 t = length & wmask;