Searched refs:memcmp (Results 1 - 25 of 873) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dbcmp.c20 extern int memcmp(const void *, const void *, size_t);
25 return memcmp (s1, s2, count);
H A Dmemcmp.c0 /* memcmp -- compare two memory regions.
6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
22 memcmp (const PTR str1, const PTR str2, size_t count) function
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dbcmp.c20 extern int memcmp(const void *, const void *, size_t);
25 return memcmp (s1, s2, count);
H A Dmemcmp.c0 /* memcmp -- compare two memory regions.
6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
22 memcmp (const PTR str1, const PTR str2, size_t count) function
H A Dvsnprintf.c113 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
117 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
121 VERIFY (status==8 && memcmp (buf, "foobar:\0XXXXXX\0", 15) == 0);
125 VERIFY (status==8 && memcmp (buf, "foobar\0XXXXXXX\0", 15) == 0);
129 VERIFY (status==8 && memcmp (buf, "fooba\0XXXXXXXX\0", 15) == 0);
133 VERIFY (status==8 && memcmp (buf, "f\0XXXXXXXXXXXX\0", 15) == 0);
137 VERIFY (status==8 && memcmp (buf, "\0XXXXXXXXXXXXX\0", 15) == 0);
141 VERIFY (status==8 && memcmp (buf, "XXXXXXXXXXXXXX\0", 15) == 0);
/freebsd-9.3-release/contrib/compiler-rt/lib/arm/
H A Daeabi_memcmp.S1 //===-- aeabi_memcmp.S - EABI memcmp implementation -----------------------===//
12 // void __aeabi_memcmp(void *dest, void *src, size_t n) { memcmp(dest, src, n); }
16 b memcmp
/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-nan.c58 * so we need to initialize the memory for the memcmp()
72 assert(memcmp(&af[0], &af[1], sizeof(float)) == 0);
73 assert(memcmp(&af[1], &af[2], sizeof(float)) == 0);
77 assert(memcmp(&af[2], &af[3], sizeof(float)) == 0);
85 assert(memcmp(&ad[0], &ad[1], sizeof(double)) == 0);
86 assert(memcmp(&ad[1], &ad[2], sizeof(double)) == 0);
90 assert(memcmp(&ad[2], &ad[3], sizeof(double)) == 0);
98 assert(memcmp(&ald[0], &ald[1], sizeof(long double)) == 0);
99 assert(memcmp(&ald[1], &ald[2], sizeof(long double)) == 0);
103 assert(memcmp(
[all...]
/freebsd-9.3-release/contrib/gcc/config/
H A Dmemcmp.c5 memcmp (const void *str1, const void *str2, size_t count) function
/freebsd-9.3-release/usr.sbin/bluetooth/sdpd/
H A Dprovider.h55 (memcmp(b, NG_HCI_BDADDR_ANY, sizeof(bdaddr_t)) == 0 || \
56 memcmp(&(p)->bdaddr, NG_HCI_BDADDR_ANY, sizeof(bdaddr_t)) == 0 || \
57 memcmp(&(p)->bdaddr, b, sizeof(bdaddr_t)) == 0)
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dder_cmp.c41 return memcmp(p->components,
52 return memcmp(p->data, q->data, p->length);
62 i = memcmp(p->data, q->data, p->length / 8);
84 return memcmp(p->data, q->data, p->length);
92 return memcmp(p->data, q->data, q->length * sizeof(q->data[0]));
101 return memcmp(p->data, q->data, q->length * sizeof(q->data[0]));
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_string.h51 extern int memcmp ();
H A Di386ly-tdep.c45 if (memcmp (opcode, call_inst, 7) == 0)
/freebsd-9.3-release/lib/libc/string/
H A Dmemcmp.c34 static char sccsid[] = "@(#)memcmp.c 8.1 (Berkeley) 6/4/93";
45 memcmp(const void *s1, const void *s2, size_t n) function
/freebsd-9.3-release/lib/libc/uuid/
H A Duuid_equal.c54 return ((memcmp(a, b, sizeof(uuid_t))) ? 0 : 1);
/freebsd-9.3-release/sys/libkern/
H A Dmemcmp.c42 memcmp(const void *s1, const void *s2, size_t n) function
/freebsd-9.3-release/contrib/opie/
H A Dopietest.c44 if (memcmp(&key, testout, sizeof(testout)))
61 if (memcmp(buffer, testout, sizeof(testout)))
78 if (memcmp(buffer, testout, sizeof(testout)))
93 if (memcmp(&key, testout, sizeof(testout)))
109 if (memcmp(buffer, testout, sizeof(testout)))
136 if (memcmp(&testin_aligned, testout, sizeof(struct opie_otpkey)))
152 if (memcmp(&testin_aligned, testout, sizeof(struct opie_otpkey)))
175 if (memcmp(&opie_otpkey, testout, sizeof(struct opie_otpkey)))
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-cip.c76 if (memcmp(rfcllc, p, sizeof(rfcllc))==0 && caplen < RFC1483LLC_LEN) {
84 if (memcmp(rfcllc, p, sizeof(rfcllc)) == 0) {
/freebsd-9.3-release/lib/libc/amd64/string/
H A Dmemcmp.S11 RCSID("$NetBSD: memcmp.S,v 1.2 2003/07/26 19:24:39 salo Exp $")
14 ENTRY(memcmp) function
42 END(memcmp)
/freebsd-9.3-release/lib/libc/i386/string/
H A Dmemcmp.S35 * memcmp (void *b1, void *b2, size_t len)
41 ENTRY(memcmp) function
76 END(memcmp)
/freebsd-9.3-release/sys/boot/common/
H A Dutil.h38 int memcmp(const void *b1, const void *b2, size_t len);
42 #define bcmp(b1, b2, len) (memcmp((b1), (b2), (len)) != 0)
/freebsd-9.3-release/libexec/bootpd/tools/bootptest/
H A Dbootptest.h14 #define bcmp(a,b,c) memcmp(a,b,c)
/freebsd-9.3-release/tools/regression/netinet6/icmp6_filter/
H A Dicmp6_filter.c73 if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
90 if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
107 if (memcmp(&ic6f, &ic6f_blockall, sizeof(ic6f)) != 0)
124 if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/krb5/
H A Dunwrap.c71 if (memcmp (p, "\x00\x00", 2) != 0)
74 if (memcmp (p, "\x00\x00", 2) == 0) {
76 } else if (memcmp (p, "\xFF\xFF", 2) == 0) {
83 if (memcmp (p, "\xff\xff", 2) != 0)
125 if (memcmp (p - 8, hash, 8) != 0)
144 cmp = memcmp(&seq[4], "\xff\xff\xff\xff", 4);
146 cmp = memcmp(&seq[4], "\x00\x00\x00\x00", 4);
207 if (memcmp (p, "\x04\x00", 2) != 0) /* HMAC SHA1 DES3_KD */
210 if (memcmp (p, "\x02\x00", 2) == 0) {
212 } else if (memcmp (
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_read_format_ar.c61 assert(0 == memcmp(buff, "55667788", 8));
71 assert(0 == memcmp(buff, "3333", 4));
81 assert(0 == memcmp(buff, "987654321", 9));
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dregion.c40 if ((result = memcmp(r1->base, r2->base, l)) != 0)

Completed in 617 milliseconds

1234567891011>>