Lines Matching defs:wsize
67 #define wsize sizeof(word)
68 #define wmask (wsize - 1)
110 if ((u ^ (unsigned long)dst) & wmask || length < wsize)
113 t = wsize - (size_t)(u & wmask);
120 t = length / wsize;
121 TLOOP(*(word *)(void *)dst = *(const word *)(const void *)src; src += wsize; dst += wsize);
128 * (t&wmask) bytes to align, not wsize-(t&wmask).
136 if ((u ^ (unsigned long)dst) & wmask || length <= wsize)
143 t = length / wsize;
144 TLOOP(src -= wsize; dst -= wsize; *(word *)(void *)dst = *(const word *)(const void *)src);