| /src/external/bsd/nsd/dist/compat/ |
| memcmp.h | 2 * memcmp.h: undef memcmp for compat. 11 #ifdef memcmp 13 # undef memcmp macro
|
| memcmp.c | 2 * memcmp.c: memcmp compat implementation. 11 int memcmp(const void *x, const void *y, size_t n); 13 int memcmp(const void *x, const void *y, size_t n) function
|
| /src/external/bsd/unbound/dist/compat/ |
| memcmp.h | 2 * memcmp.h: undef memcmp for compat. 11 #ifdef memcmp 13 # undef memcmp macro
|
| memcmp.c | 2 * memcmp.c: memcmp compat implementation. 11 int memcmp(const void *x, const void *y, size_t n); 13 int memcmp(const void *x, const void *y, size_t n) function
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const void *str1, const void *str2, size_t count) function
|
| vsnprintf.c | 114 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0); 118 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0); 122 VERIFY (status==8 && memcmp (buf, "foobar:\0XXXXXX\0", 15) == 0); 126 VERIFY (status==8 && memcmp (buf, "foobar\0XXXXXXX\0", 15) == 0); 130 VERIFY (status==8 && memcmp (buf, "fooba\0XXXXXXXX\0", 15) == 0); 134 VERIFY (status==8 && memcmp (buf, "f\0XXXXXXXXXXXX\0", 15) == 0); 138 VERIFY (status==8 && memcmp (buf, "\0XXXXXXXXXXXXX\0", 15) == 0); 142 VERIFY (status==8 && memcmp (buf, "XXXXXXXXXXXXXX\0", 15) == 0);
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const void *str1, const void *str2, size_t count) function
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const void *str1, const void *str2, size_t count) function
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const PTR str1, const PTR str2, size_t count) function
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const void *str1, const void *str2, size_t count) function
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| bcmp.c | 20 extern int memcmp(const void *, const void *, size_t); 25 return memcmp (s1, s2, count);
|
| memcmp.c | 0 /* memcmp -- compare two memory regions. 6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @ 23 memcmp (const void *str1, const void *str2, size_t count) function
|
| /src/lib/libc/string/ |
| Lint_memcmp.c | 12 memcmp(const void *b1, const void *b2, size_t len) function
|
| /src/external/gpl2/lvm2/dist/lib/device/ |
| dev-swap.c | 30 if (memcmp(buf, "SWAP-SPACE", 10) == 0 || 31 memcmp(buf, "SWAPSPACE2", 10) == 0) 34 if (memcmp(buf, "S1SUSPEND", 9) == 0 || 35 memcmp(buf, "S2SUSPEND", 9) == 0 || 36 memcmp(buf, "ULSUSPEND", 9) == 0 || 37 memcmp(buf, "\xed\xc3\x02\xe9\x98\x56\xe5\x0c", 8) == 0)
|
| /src/usr.sbin/mopd/common/ |
| cmp.c | 42 return(memcmp(addr1, addr2, 6));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/ |
| aeabi_memcmp.S | 1 //===-- aeabi_memcmp.S - EABI memcmp implementation -----------------------===// 12 // void __aeabi_memcmp(void *dest, void *src, size_t n) { memcmp(dest, src, n); } 16 b memcmp
|
| /src/external/mit/libuv/dist/test/ |
| test-strscpy.c | 37 ASSERT_OK(memcmp(d, "x\0\0", sizeof(d))); 41 ASSERT_OK(memcmp(d, "xy\0", sizeof(d))); 44 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); 47 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); 50 ASSERT_OK(memcmp(d, "xyz", sizeof(d)));
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| memcmp.c | 5 memcmp (const void *str1, const void *str2, size_t count) function
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| memcmp.c | 5 memcmp (const void *str1, const void *str2, size_t count) function
|
| /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)
|