Searched refs:bcmp (Results 1 - 25 of 377) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dbcmp.c30 bcmp(char *s1, char *s2, int len) function
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dbcmp.c50 bcmp(char *s1, char *s2, int len) function
/illumos-gate/usr/src/common/util/
H A Dbcmp.c47 bcmp(const void *s1, const void *s2, size_t len) function
/illumos-gate/usr/src/ucbhead/
H A Dstrings.h59 extern int bcmp(const void *, const void *, size_t);
/illumos-gate/usr/src/stand/lib/sa/
H A Dstrings.h44 extern int bcmp(const void *, const void *, size_t);
H A Dstrings.c37 bcmp(const void *s1, const void *s2, size_t len) function
/illumos-gate/usr/src/uts/sun4/os/
H A Dbcmp.c47 bcmp(const void *s1_arg, const void *s2_arg, size_t len) function
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dbcmp.c31 static char sccsid[] = "@(#)bcmp.c 8.1 (Berkeley) 6/4/93";
39 * bcmp -- vax cmpc3 instruction
42 bcmp(const void *b1, const void *b2, size_t length) function
/illumos-gate/usr/src/head/
H A Dstrings.h43 extern int bcmp(const void *, const void *, size_t);
/illumos-gate/usr/src/boot/include/
H A Dstrings.h42 int bcmp(const void *, const void *, size_t) __pure; /* LEGACY */
/illumos-gate/usr/src/common/net/wanboot/crypt/
H A Daes_test.c98 if (bcmp(work, cipher, AES_BLOCK_SIZE) != 0) {
103 if (bcmp(work, plain, AES_BLOCK_SIZE) != 0) {
H A Dsha1_test.c107 if (bcmp(digest, rdigest, 20) != 0) {
H A Ddes3_test.c143 if (bcmp(work, cipher, DES3_BLOCK_SIZE) != 0) {
150 if (bcmp(work, plain, DES3_BLOCK_SIZE) != 0) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/talk/
H A Dget_addrs.c46 #define bcmp(a, b, c) memcmp((a), (b), (c)) macro
83 if (bcmp((char *)&rem_machine_name, (char *)&my_machine_name,
/illumos-gate/usr/src/cmd/mdb/common/libstand/sys/
H A Dsalib.h41 extern int bcmp(const void *, const void *, size_t);
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dutil.h42 #define bcmp(b1, b2, len) (memcmp((b1), (b2), (len)) != 0) macro
H A Dgpt.c104 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0) {
126 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0)
140 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0)
156 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0)
195 if (bcmp(hdr->hdr_sig, GPT_HDR_SIG, sizeof(hdr->hdr_sig)) != 0 ||
/illumos-gate/usr/src/uts/common/io/scsi/adapters/scsi_vhci/fops/
H A Dsym.c96 if (bcmp(&stdinq->inq_pid[9], "SUN", 3) == 0) {
103 if (bcmp(&stdinq->inq_vid[0], "ATA ", 8) == 0) {
/illumos-gate/usr/src/boot/lib/libstand/
H A Dether.c116 if (bcmp(d->myea, eh->ether_dhost, 6) != 0 &&
117 bcmp(bcea, eh->ether_dhost, 6) != 0) {
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsigning.c237 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
249 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0)
252 if (bcmp(sigbuf, sigloc, SMBSIGLEN) == 0) {
/illumos-gate/usr/src/cmd/format/
H A Dmisc.h47 #ifndef bcmp
48 #define bcmp(p1, p2, n) memcmp((p1), (p2), (n)) macro
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_tran.c100 return (bcmp(a1, a2, l1));
/illumos-gate/usr/src/uts/common/zmod/
H A Dzmod_subr.c78 return (bcmp(s1, s2, len));
/illumos-gate/usr/src/uts/common/sys/
H A Dpathconf.h120 #define PCCMP(p1, p2) bcmp((char *)p1, (char *)p2, PCSIZ)
/illumos-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_health.c294 if (((bcmp(ip->ifaddr.buf, addr->buf, addr->len) == 0) &&
295 (bcmp(ip->r_ifaddr.buf, r_addr->buf, r_addr->len) == 0)) ||
296 ((bcmp(ip->r_ifaddr.buf, addr->buf, addr->len) == 0) &&
297 (bcmp(ip->ifaddr.buf, r_addr->buf, r_addr->len) == 0))) {
337 if (((bcmp(ip->ifaddr.buf, addr->buf, addr->len) == 0) &&
338 (bcmp(ip->r_ifaddr.buf, r_addr->buf, r_addr->len) == 0)) ||
339 ((bcmp(ip->r_ifaddr.buf, addr->buf, addr->len) == 0) &&
340 (bcmp(ip->ifaddr.buf, r_addr->buf, r_addr->len) == 0))) {
492 if ((bcmp(ip->ifaddr.buf, addr->buf, addr->len) == 0) &&
493 (bcmp(i
[all...]

Completed in 146 milliseconds

1234567891011>>