Lines Matching defs:bytes
172 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes)
174 while (bytes) {
178 bytes--;
187 * @bytes: The size of the area.
192 void *memchr_inv(const void *start, int c, size_t bytes)
198 if (bytes <= 16)
199 return check_bytes8(start, value, bytes);
215 bytes -= prefix;
218 words = bytes / 8;
227 return check_bytes8(start, value, bytes % 8);