Lines Matching refs:start
748 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes) in check_bytes8() argument
751 if (*start != value) in check_bytes8()
752 return (void *)start; in check_bytes8()
753 start++; in check_bytes8()
767 void *memchr_inv(const void *start, int c, size_t bytes) in memchr_inv() argument
774 return check_bytes8(start, value, bytes); in memchr_inv()
781 prefix = (unsigned long)start % 8; in memchr_inv()
786 r = check_bytes8(start, value, prefix); in memchr_inv()
789 start += prefix; in memchr_inv()
796 if (*(u64 *)start != value64) in memchr_inv()
797 return check_bytes8(start, value, 8); in memchr_inv()
798 start += 8; in memchr_inv()
802 return check_bytes8(start, value, bytes % 8); in memchr_inv()