Home
last modified time | relevance | path

Searched refs:b2 (Results 1 – 5 of 5) sorted by relevance

/xnu-8796.121.2/EXTERNAL_HEADERS/corecrypto/
H A Dccn.h147 #define CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \ argument
149 CCN64_C(b7,b6,b5,b4,b3,b2,b1,b0),\
152 #define CCN200_C(d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \ argument
153 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
156 #define CCN224_C(d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a… argument
157 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
160 #define CCN232_C(d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a… argument
161 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
164 #define CCN256_C(d7,d6,d5,d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a… argument
165 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
[all …]
/xnu-8796.121.2/osfmk/kern/
H A Dmemset_s.c69 timingsafe_bcmp(const void *b1, const void *b2, size_t n) in timingsafe_bcmp() argument
71 const unsigned char *p1 = b1, *p2 = b2; in timingsafe_bcmp()
/xnu-8796.121.2/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c511 struct _bucket *b1, *b2; in cuckoo_hashtable_find_with_hash() local
521 b2 = __alt_bucket(h, hash); in cuckoo_hashtable_find_with_hash()
522 if ((node = __find_in_bucket(h, b2, key, hash)) != NULL) { in cuckoo_hashtable_find_with_hash()
923 struct _bucket *b1, *b2; in cuckoo_add_no_expand() local
933 b2 = __alt_bucket(h, hash); in cuckoo_add_no_expand()
934 if ((ret = __add_to_bucket(h, b2, node, hash)) == 0) { in cuckoo_add_no_expand()
998 struct _bucket *b1, *b2; in cuckoo_hashtable_del() local
1008 b2 = __alt_bucket(h, hash); in cuckoo_hashtable_del()
1009 if ((ret = __del_from_bucket(h, b2, node, hash)) == 0) { in cuckoo_hashtable_del()
/xnu-8796.121.2/osfmk/libsa/
H A Dstring.h160 extern int timingsafe_bcmp(const void *b1 __sized_by(n), const void *b2 __sized_by(n), size_t n);
/xnu-8796.121.2/bsd/nfs/gss/
H A Dgss_krb5_mech.c846 ssize_t b1, s1, b2, s2; in rr13() local
862 b2 = (b1 + 1) % bytes; in rr13()
863 buf[i] = 0xff & ((tmp[b1] << s1) | (tmp[b2] >> s2)); in rr13()