| /f-stack/freebsd/crypto/openssl/aarch64/ |
| H A D | ghashv8-armx.S | 14 ext v3.16b,v17.16b,v17.16b,#8 20 and v18.16b,v18.16b,v16.16b 22 ext v18.16b,v18.16b,v18.16b,#8 23 and v16.16b,v16.16b,v17.16b 31 eor v16.16b,v16.16b,v20.16b 36 eor v18.16b,v0.16b,v2.16b 37 eor v1.16b,v1.16b,v17.16b 38 eor v1.16b,v1.16b,v18.16b 43 eor v0.16b,v1.16b,v18.16b 47 eor v18.16b,v18.16b,v2.16b [all …]
|
| H A D | aesv8-armx.S | 36 eor v0.16b,v0.16b,v0.16b 47 tbl v6.16b,{v3.16b},v2.16b 53 eor v3.16b,v3.16b,v5.16b 55 eor v3.16b,v3.16b,v5.16b 57 eor v6.16b,v6.16b,v1.16b 58 eor v3.16b,v3.16b,v5.16b 60 eor v3.16b,v3.16b,v6.16b 70 eor v3.16b,v3.16b,v5.16b 72 eor v3.16b,v3.16b,v5.16b 74 eor v6.16b,v6.16b,v1.16b [all …]
|
| H A D | vpaes-armv8.S | 247 eor v12.16b, v12.16b, v16.16b 251 eor v8.16b, v8.16b, v12.16b 256 tbl v11.16b, {v8.16b}, v1.16b 258 eor v10.16b, v10.16b, v13.16b 260 tbl v8.16b, {v8.16b}, v4.16b 262 eor v11.16b, v11.16b, v10.16b 276 and v9.16b, v8.16b, v17.16b 281 eor v9.16b, v9.16b, v8.16b 295 eor v10.16b, v10.16b, v9.16b 297 eor v11.16b, v11.16b, v8.16b [all …]
|
| H A D | chacha-armv8.S | 395 eor v3.16b,v3.16b,v0.16b 397 eor v7.16b,v7.16b,v4.16b 413 eor v20.16b,v1.16b,v2.16b 415 eor v21.16b,v5.16b,v6.16b 437 eor v20.16b,v3.16b,v0.16b 439 eor v21.16b,v7.16b,v4.16b 461 eor v20.16b,v1.16b,v2.16b 497 eor v3.16b,v3.16b,v0.16b 499 eor v7.16b,v7.16b,v4.16b 773 st1 {v0.16b,v1.16b,v2.16b,v3.16b},[sp] [all …]
|
| H A D | sha512-armv8.S | 1111 ld1 {v20.16b,v21.16b,v22.16b,v23.16b},[x1],#64 1132 orr v27.16b,v1.16b,v1.16b 1133 orr v28.16b,v2.16b,v2.16b 1134 orr v29.16b,v3.16b,v3.16b 1139 ext v5.16b,v2.16b,v3.16b,#8 1140 ext v6.16b,v1.16b,v2.16b,#8 1151 ext v5.16b,v4.16b,v2.16b,#8 1152 ext v6.16b,v0.16b,v4.16b,#8 1163 ext v5.16b,v1.16b,v4.16b,#8 1164 ext v6.16b,v3.16b,v1.16b,#8 [all …]
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/test/include/test/ |
| H A D | test.h | 5 t b_ = (b); \ 20 #define assert_ptr_eq(a, b, ...) assert_cmp(void *, a, b, ==, \ argument 22 #define assert_ptr_ne(a, b, ...) assert_cmp(void *, a, b, !=, \ argument 57 #define assert_ld_eq(a, b, ...) assert_cmp(long, a, b, ==, \ argument 59 #define assert_ld_ne(a, b, ...) assert_cmp(long, a, b, !=, \ argument 61 #define assert_ld_lt(a, b, ...) assert_cmp(long, a, b, <, \ argument 63 #define assert_ld_le(a, b, ...) assert_cmp(long, a, b, <=, \ argument 65 #define assert_ld_ge(a, b, ...) assert_cmp(long, a, b, >=, \ argument 67 #define assert_ld_gt(a, b, ...) assert_cmp(long, a, b, >, \ argument 256 __func__, __FILE__, __LINE__, #a, #b, a, b); \ [all …]
|
| /f-stack/freebsd/libkern/ |
| H A D | jenkins_hash.c | 94 b -= a; b ^= rot(a, 6); a += c; \ 95 c -= b; c ^= rot(b, 8); b += a; \ 97 b -= a; b ^= rot(a,19); a += c; \ 98 c -= b; c ^= rot(b, 4); b += a; \ 128 c ^= b; c -= rot(b,14); \ 130 b ^= a; b -= rot(a,25); \ 131 c ^= b; c -= rot(b,16); \ 133 b ^= a; b -= rot(a,14); \ 134 c ^= b; c -= rot(b,24); \ 164 b += k[1]; in jenkins_hash32() [all …]
|
| /f-stack/tools/compat/include/netinet/ |
| H A D | tcp_seq.h | 42 #define SEQ_LT(a,b) ((int)((a)-(b)) < 0) argument 43 #define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0) argument 44 #define SEQ_GT(a,b) ((int)((a)-(b)) > 0) argument 45 #define SEQ_GEQ(a,b) ((int)((a)-(b)) >= 0) argument 47 #define SEQ_MIN(a, b) ((SEQ_LT(a, b)) ? (a) : (b)) argument 48 #define SEQ_MAX(a, b) ((SEQ_GT(a, b)) ? (a) : (b)) argument 50 #define WIN_LT(a,b) (ntohs(a) < ntohs(b)) argument 52 #define WIN_GT(a,b) (ntohs(a) > ntohs(b)) argument 55 #define WIN_MIN(a, b) ((WIN_LT(a, b)) ? (a) : (b)) argument 56 #define WIN_MAX(a, b) ((WIN_GT(a, b)) ? (a) : (b)) argument [all …]
|
| /f-stack/freebsd/netinet/ |
| H A D | tcp_seq.h | 42 #define SEQ_LT(a,b) ((int)((a)-(b)) < 0) argument 43 #define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0) argument 44 #define SEQ_GT(a,b) ((int)((a)-(b)) > 0) argument 45 #define SEQ_GEQ(a,b) ((int)((a)-(b)) >= 0) argument 47 #define SEQ_MIN(a, b) ((SEQ_LT(a, b)) ? (a) : (b)) argument 48 #define SEQ_MAX(a, b) ((SEQ_GT(a, b)) ? (a) : (b)) argument 50 #define WIN_LT(a,b) (ntohs(a) < ntohs(b)) argument 52 #define WIN_GT(a,b) (ntohs(a) > ntohs(b)) argument 55 #define WIN_MIN(a, b) ((WIN_LT(a, b)) ? (a) : (b)) argument 56 #define WIN_MAX(a, b) ((WIN_GT(a, b)) ? (a) : (b)) argument [all …]
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lua_bit.c | 52 UBits b; member 60 UBits b; in barg() local 69 b = (UBits)(bn.b >> 32); in barg() 71 b = (UBits)bn.b; in barg() 77 b = bn.b; in barg() 106 #define bshl(b, n) (b << n) argument 107 #define bshr(b, n) (b >> n) argument 108 #define bsar(b, n) ((SBits)b >> n) argument 109 #define brol(b, n) ((b << n) | (b >> (32-n))) argument 110 #define bror(b, n) ((b << (32-n)) | (b >> n)) argument [all …]
|
| /f-stack/freebsd/contrib/openzfs/contrib/pyzfs/libzfs_core/test/ |
| H A D | test_nvlist.py | 88 props = {b"key": b"value"} 348 props = {b"key": {b"key": {}}} 368 props = {b"key": [b"value", b"value2"]} 542 props = {b"key": [{b"key": 1}, {b"key": None}, {b"key": {}}]} 593 b"key1": b"str", 616 b"skey71": b"a", 617 b"skey72": b"b", 620 b"skey71": b"c", 621 b"skey72": b"d", 624 b"skey71": b"e", [all …]
|
| H A D | test_libzfs_core.py | 277 FILESYSTEMS = [b'fs1', b'fs2', b'fs1/fs'] 481 props = {b"foo": b"bar"} 1042 b'fs1@snap1', b'fs1@snap2', b'fs2@snap1']] 1044 b'fs1#bmark1', b'fs1#bmark2', b'fs2#bmark1']] 1276 for b in b'bmark', b'bmark1', b'bmark2': 1284 for b in b'bmark', b'bmark1', b'bmark2': 1301 for b in (b'bmark', ): 2854 b"ns:prop": b"val" 2897 b"ns:prop": b"val" 4109 SNAPSHOTS = [b'snap', b'snap1', b'snap2'] [all …]
|
| /f-stack/freebsd/opencrypto/ |
| H A D | rmd160.c | 176 b = state[1]; in RMD160Transform() 182 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform() 183 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform() 184 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform() 185 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform() 186 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform() 187 R(a, b, c, d, e, F0, K0, 8, 5); in RMD160Transform() 188 R(e, a, b, c, d, F0, K0, 7, 6); in RMD160Transform() 189 R(d, e, a, b, c, F0, K0, 9, 7); in RMD160Transform() 270 b = state[1]; in RMD160Transform() [all …]
|
| /f-stack/dpdk/lib/librte_reorder/ |
| H A D | rte_reorder.c | 91 strlcpy(b->name, name, sizeof(b->name)); in rte_reorder_init() 93 b->order_buf.size = b->ready_buf.size = size; in rte_reorder_init() 94 b->order_buf.mask = b->ready_buf.mask = size - 1; in rte_reorder_init() 95 b->ready_buf.entries = (void *)&b[1]; in rte_reorder_init() 96 b->order_buf.entries = RTE_PTR_ADD(&b[1], in rte_reorder_init() 99 return b; in rte_reorder_init() 156 b = NULL; in rte_reorder_create() 174 return b; in rte_reorder_create() 185 rte_reorder_init(b, b->memsize, name, b->order_buf.size); in rte_reorder_reset() 232 rte_free(b); in rte_reorder_free() [all …]
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
| H A D | blake2b-compress-avx2.h | 30 #define ADD(a, b) _mm256_add_epi64(a, b) argument 31 #define SUB(a, b) _mm256_sub_epi64(a, b) argument 33 #define XOR(a, b) _mm256_xor_si256(a, b) argument 34 #define AND(a, b) _mm256_and_si256(a, b) argument 35 #define OR(a, b) _mm256_or_si256(a, b) argument 49 b = XOR(b, c); \ 50 b = ROT24(b); \ 60 b = XOR(b, c); \ 61 b = ROT63(b); \ 68 b = _mm256_permute4x64_epi64(b, _MM_SHUFFLE(0, 3, 2, 1)); \ [all …]
|
| /f-stack/freebsd/netgraph/bluetooth/hci/ |
| H A D | ng_hci_var.h | 83 #define NG_HCI_BUFF_CMD_SET(b, v) (b).cmd_free = (v) argument 84 #define NG_HCI_BUFF_CMD_GET(b, v) (v) = (b).cmd_free argument 85 #define NG_HCI_BUFF_CMD_USE(b, v) (b).cmd_free -= (v) argument 87 #define NG_HCI_BUFF_ACL_USE(b, v) (b).acl_free -= (v) argument 91 if ((b).acl_free > (b).acl_pkts) \ 92 (b).acl_free = (b).acl_pkts; \ 96 #define NG_HCI_BUFF_ACL_SIZE(b, v) (v) = (b).acl_size argument 104 #define NG_HCI_BUFF_SCO_USE(b, v) (b).sco_free -= (v) argument 108 if ((b).sco_free > (b).sco_pkts) \ 109 (b).sco_free = (b).sco_pkts; \ [all …]
|
| /f-stack/dpdk/app/test/ |
| H A D | test_reorder.c | 30 .b = NULL 49 TEST_ASSERT_EQUAL(b, test_params->b, in test_reorder_create() 67 b = rte_reorder_init(b, size, "PKT1", REORDER_BUFFER_SIZE); in test_reorder_init() 72 b = rte_reorder_init(b, size, "PKT1", REORDER_BUFFER_SIZE); in test_reorder_init() 75 rte_free(b); in test_reorder_init() 79 b = rte_reorder_init(b, size, "PKT1", REORDER_BUFFER_SIZE_INVALID); in test_reorder_init() 83 b = rte_reorder_init(b, size, NULL, REORDER_BUFFER_SIZE); in test_reorder_init() 86 rte_free(b); in test_reorder_init() 98 TEST_ASSERT_EQUAL(b, test_params->b, in test_reorder_find_existing() 209 rte_reorder_free(b); in test_reorder_insert() [all …]
|
| /f-stack/dpdk/drivers/net/bnxt/tf_core/ |
| H A D | lookup3.h | 62 (b) -= (a); (b) ^= rot((a), 6); (a) += c; \ 63 (c) -= (b); (c) ^= rot((b), 8); (b) += a; \ 65 (b) -= (a); (b) ^= rot((a), 19); (a) += c; \ 66 (c) -= (b); (c) ^= rot((b), 4); (b) += a; \ 95 (c) ^= (b); (c) -= rot((b), 14); \ 97 (b) ^= (a); (b) -= rot((a), 25); \ 98 (c) ^= (b); (c) -= rot((b), 16); \ 100 (b) ^= (a); (b) -= rot((a), 14); \ 101 (c) ^= (b); (c) -= rot((b), 24); \ 129 b = a; in hashword() [all …]
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | sha1.c | 81 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); in SHA1Transform() 82 R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); in SHA1Transform() 83 R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform() 84 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); in SHA1Transform() 85 R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); in SHA1Transform() 86 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform() 87 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27); in SHA1Transform() 88 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in SHA1Transform() 89 R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35); in SHA1Transform() 90 R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39); in SHA1Transform() [all …]
|
| /f-stack/freebsd/kern/ |
| H A D | md5c.c | 110 #define FF(a, b, c, d, x, s, ac) { \ argument 113 (a) += (b); \ 115 #define GG(a, b, c, d, x, s, ac) { \ argument 118 (a) += (b); \ 120 #define HH(a, b, c, d, x, s, ac) { \ argument 123 (a) += (b); \ 125 #define II(a, b, c, d, x, s, ac) { \ argument 128 (a) += (b); \ 248 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ 249 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ [all …]
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_sha1.c | 23 ctx->b = 0xefcdab89; in ngx_sha1_init() 99 result[4] = (u_char) (ctx->b >> 24); in ngx_sha1_final() 101 result[6] = (u_char) (ctx->b >> 8); in ngx_sha1_final() 102 result[7] = (u_char) ctx->b; in ngx_sha1_final() 126 #define F1(b, c, d) (((b) & (c)) | ((~(b)) & (d))) argument 127 #define F2(b, c, d) ((b) ^ (c) ^ (d)) argument 128 #define F3(b, c, d) (((b) & (c)) | ((b) & (d)) | ((c) & (d))) argument 168 b = ctx->b; in ngx_sha1_body() 175 saved_b = b; in ngx_sha1_body() 278 b += saved_b; in ngx_sha1_body() [all …]
|
| H A D | ngx_md5.c | 22 ctx->b = 0xefcdab89; in ngx_md5_init() 97 result[4] = (u_char) ctx->b; in ngx_md5_final() 98 result[5] = (u_char) (ctx->b >> 8); in ngx_md5_final() 99 result[6] = (u_char) (ctx->b >> 16); in ngx_md5_final() 100 result[7] = (u_char) (ctx->b >> 24); in ngx_md5_final() 134 (a) += (b) 172 uint32_t a, b, c, d; in ngx_md5_body() local 182 b = ctx->b; in ngx_md5_body() 188 saved_b = b; in ngx_md5_body() 269 b += saved_b; in ngx_md5_body() [all …]
|
| /f-stack/freebsd/contrib/dpdk_rte_lpm/ |
| H A D | rte_jhash.h | 44 b -= a; b ^= rot(a, 6); a += c; \ 45 c -= b; c ^= rot(b, 8); b += a; \ 47 b -= a; b ^= rot(a, 19); a += c; \ 48 c -= b; c ^= rot(b, 4); b += a; \ 52 c ^= b; c -= rot(b, 14); \ 54 b ^= a; b -= rot(a, 25); \ 55 c ^= b; c -= rot(b, 16); \ 57 b ^= a; b -= rot(a, 14); \ 58 c ^= b; c -= rot(b, 24); \ 135 *pb = b; in __rte_jhash_2hashes() [all …]
|
| /f-stack/dpdk/lib/librte_hash/ |
| H A D | rte_jhash.h | 50 b -= a; b ^= rot(a, 6); a += c; \ 51 c -= b; c ^= rot(b, 8); b += a; \ 53 b -= a; b ^= rot(a, 19); a += c; \ 54 c -= b; c ^= rot(b, 4); b += a; \ 58 c ^= b; c -= rot(b, 14); \ 60 b ^= a; b -= rot(a, 25); \ 61 c ^= b; c -= rot(b, 16); \ 63 b ^= a; b -= rot(a, 14); \ 64 c ^= b; c -= rot(b, 24); \ 141 *pb = b; in __rte_jhash_2hashes() [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | libkern.h | 91 static __inline int imax(int a, int b) { return (a > b ? a : b); } in imax() argument 92 static __inline int imin(int a, int b) { return (a < b ? a : b); } in imin() argument 93 static __inline long lmax(long a, long b) { return (a > b ? a : b); } in lmax() argument 94 static __inline long lmin(long a, long b) { return (a < b ? a : b); } in lmin() argument 95 static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); } in max() argument 96 static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); } in min() argument 97 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax() argument 106 return (a > b ? a : b); in ummax() 111 return (a < b ? a : b); in ummin() 113 static __inline off_t omax(off_t a, off_t b) { return (a > b ? a : b); } in omax() argument [all …]
|