2 * Copyright (c) 2012 Ed Schouten <ed@FreeBSD.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/libkern/memcchr.c,v 1.1 2012/01/01 20:26:11 ed Exp $
30 #include <sys/cdefs.h>
32 #include <sys/libkern.h>
33 #include <sys/limits.h>
34 #include <sys/param.h>
37 * memcchr(): find first character in buffer not matching `c'.
39 * This function performs the complement of memchr(). To provide decent
40 * performance, this function compares data from the buffer one word at
43 * This code is inspired by libc's strlen(), written by Xin Li.
46 #if LONG_BIT != 32 && LONG_BIT != 64
47 #error Unsupported word size
50 #define LONGPTR_MASK (sizeof(long) - 1)
54 if (*p != (unsigned char)c) \
60 memcchr(const void *begin
, int c
, size_t n
)
62 const unsigned long *lp
;
63 const unsigned char *p
, *end
;
66 /* Four or eight repetitions of `c'. */
67 word
= (unsigned char)c
;
74 /* Don't perform memory I/O when passing a zero-length buffer. */
79 * First determine whether there is a character unequal to `c'
80 * in the first word. As this word may contain bytes before
81 * `begin', we may execute this loop spuriously.
83 lp
= (const unsigned long *)((uintptr_t)begin
& ~LONGPTR_MASK
);
84 end
= (const unsigned char *)begin
+ n
;
86 for (p
= begin
; p
< (const unsigned char *)lp
;)
89 /* Now compare the data one word at a time. */
90 for (; (const unsigned char *)lp
< end
; lp
++) {
92 p
= (const unsigned char *)lp
;
110 * If the end of the buffer is not word aligned, the previous
111 * loops may obtain an address that's beyond the end of the
115 return (__DECONST(void *, p
));