HomeSort by: relevance | last modified time | path
    Searched defs:memcmp (Results 1 - 13 of 13) sorted by relevancy

  /src/common/lib/libc/arch/i386/string/small/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.2 2014/03/22 19:38:46 jakllsch Exp $ */
32 RCSID("$NetBSD: memcmp.S,v 1.2 2014/03/22 19:38:46 jakllsch Exp $")
34 ENTRY(memcmp) function
51 END(memcmp)
  /src/lib/libc/arch/vax/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.4 2011/01/25 02:38:15 matt Exp $ */
31 /* int memcmp(s1, s2, n) */
36 RCSID("$NetBSD: memcmp.S,v 1.4 2011/01/25 02:38:15 matt Exp $")
39 ENTRY(memcmp, 0) function
70 END(memcmp)
  /src/lib/libc/string/
Lint_memcmp.c 12 memcmp(const void *b1, const void *b2, size_t len) function in typeref:typename:int
  /src/common/lib/libc/arch/arm/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.5 2015/03/26 13:34:51 justin Exp $ */
67 RCSID("$NetBSD: memcmp.S,v 1.5 2015/03/26 13:34:51 justin Exp $")
69 ENTRY(memcmp) function
152 * faster than a byte-wise memcmp.
181 END(memcmp)
184 STRONG_ALIAS(__aeabi_memcmp, memcmp)
  /src/common/lib/libc/string/
memcmp.c 1 /* $NetBSD: memcmp.c,v 1.8 2020/01/29 09:18:26 ad Exp $ */
67 static char sccsid[] = "@(#)memcmp.c 8.1 (Berkeley) 6/4/93";
69 __RCSID("$NetBSD: memcmp.c,v 1.8 2020/01/29 09:18:26 ad Exp $");
82 #undef memcmp
87 memcmp(const void *s1, const void *s2, size_t n) function in typeref:typename:int
128 __strong_alias(__aeabi_memcmp, memcmp)
  /src/common/lib/libc/arch/aarch64/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.3 2018/07/09 06:07:06 ryo Exp $ */
34 RCSID("$NetBSD: memcmp.S,v 1.3 2018/07/09 06:07:06 ryo Exp $")
36 ENTRY(memcmp) function
194 END(memcmp)
  /src/common/lib/libc/arch/m68k/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.5 2013/09/07 19:06:29 chs Exp $ */
42 RCSID("$NetBSD: memcmp.S,v 1.5 2013/09/07 19:06:29 chs Exp $")
46 /* memcmp(s1, s2, n) */
66 ENTRY(memcmp) function
117 END(memcmp)
  /src/common/lib/libc/arch/or1k/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.1 2014/09/03 19:34:25 matt Exp $ */
35 * int memcmp(const char *s1, const char *s2, size_t n);
54 /* LINTSTUB: Func: void *memcmp(const void *, const void *, size_t) */
55 ENTRY(memcmp) function
213 END(memcmp)
  /src/common/lib/libc/arch/powerpc/string/
memcmp.S 1 /* $NetBSD: memcmp.S,v 1.4 2013/07/04 20:57:59 matt Exp $ */
3 /* stropt/memcmp.S, pl_string_common, pl_linux 10/11/04 11:45:35
5 * Optimized memcmp implementation for IBM PowerPC 405/440.
42 * int memcmp(const char *s1, const char *s2, int n)
56 /* LINTSTUB: Func: void *memcmp(const void *, const void *, size_t) */
57 ENTRY(memcmp) function
270 END(memcmp)
  /src/sys/arch/vax/boot/common/
str.S 67 ENTRY(memcmp, 0) function
  /src/sys/arch/vax/include/
macros.h 122 /* XXX - the return syntax of memcmp is wrong */
124 memcmp(const void *b1, const void *b2, size_t len) function in typeref:typename:int
  /src/sys/external/bsd/acpica/dist/utilities/
utclib.c 179 * FUNCTION: memcmp
207 * FUNCTION: memcmp
220 memcmp ( function in typeref:typename:ACPI_MODULE_NAME ("")int
776 if (memcmp (String1, String2, Length) == 0)
  /src/sys/lib/libkern/
libkern.h 321 int memcmp(const void *, const void *, size_t);
329 #define memcmp(a, b, l) kasan_memcmp(a, b, l) macro
336 #define memcmp(a, b, l) kcsan_memcmp(a, b, l) macro
343 #define memcmp(a, b, l) kmsan_memcmp(a, b, l) macro
347 #define memcmp(a, b, l) __builtin_memcmp(a, b, l) macro

Completed in 23 milliseconds