| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
| H A D | blake2b-ref.c | 139 memset(P->reserved, 0, sizeof(P->reserved)); in blake2b_init() 140 memset(P->salt, 0, sizeof(P->salt)); in blake2b_init() 141 memset(P->personal, 0, sizeof(P->personal)); in blake2b_init() 162 memset(P->reserved, 0, sizeof(P->reserved)); in blake2b_init_salt_personal() 166 memset(P->salt, 0, sizeof(P->salt)); in blake2b_init_salt_personal() 171 memset(P->personal, 0, sizeof(P->personal)); in blake2b_init_salt_personal() 196 memset(P->reserved, 0, sizeof(P->reserved)); in blake2b_init_key() 197 memset(P->salt, 0, sizeof(P->salt)); in blake2b_init_key() 198 memset(P->personal, 0, sizeof(P->personal)); in blake2b_init_key() 234 memset(P->reserved, 0, sizeof(P->reserved)); in blake2b_init_key_salt_personal() [all …]
|
| /f-stack/freebsd/contrib/libb2/ |
| H A D | blake2b-ref.c | 93 P->fanout = fanout; in blake2b_param_set_fanout() 99 P->depth = depth; in blake2b_param_set_max_depth() 186 blake2b_param P[1]; in blake2b_init() local 191 P->key_length = 0; in blake2b_init() 198 memset( P->reserved, 0, sizeof( P->reserved ) ); in blake2b_init() 199 memset( P->salt, 0, sizeof( P->salt ) ); in blake2b_init() 200 memset( P->personal, 0, sizeof( P->personal ) ); in blake2b_init() 207 blake2b_param P[1]; in blake2b_init_key() local 221 memset( P->reserved, 0, sizeof( P->reserved ) ); in blake2b_init_key() 222 memset( P->salt, 0, sizeof( P->salt ) ); in blake2b_init_key() [all …]
|
| H A D | blake2s-ref.c | 86 P->fanout = fanout; in blake2s_param_set_fanout() 92 P->depth = depth; in blake2s_param_set_max_depth() 179 blake2s_param P[1]; in blake2s_init() local 185 P->key_length = 0; in blake2s_init() 186 P->fanout = 1; in blake2s_init() 187 P->depth = 1; in blake2s_init() 193 memset( P->salt, 0, sizeof( P->salt ) ); in blake2s_init() 194 memset( P->personal, 0, sizeof( P->personal ) ); in blake2s_init() 200 blake2s_param P[1]; in blake2s_init_key() local 215 memset( P->salt, 0, sizeof( P->salt ) ); in blake2s_init_key() [all …]
|
| H A D | blake2bp.c | 30 blake2b_param P[1]; in blake2bp_init_leaf() local 34 P->depth = 2; in blake2bp_init_leaf() 37 P->node_depth = 0; in blake2bp_init_leaf() 39 memset( P->reserved, 0, sizeof( P->reserved ) ); in blake2bp_init_leaf() 40 memset( P->salt, 0, sizeof( P->salt ) ); in blake2bp_init_leaf() 41 memset( P->personal, 0, sizeof( P->personal ) ); in blake2bp_init_leaf() 53 P->depth = 2; in blake2bp_init_root() 56 P->node_depth = 1; in blake2bp_init_root() 58 memset( P->reserved, 0, sizeof( P->reserved ) ); in blake2bp_init_root() 59 memset( P->salt, 0, sizeof( P->salt ) ); in blake2bp_init_root() [all …]
|
| H A D | blake2sp.c | 29 blake2s_param P[1]; in blake2sp_init_leaf() local 33 P->depth = 2; in blake2sp_init_leaf() 34 P->leaf_length = 0; in blake2sp_init_leaf() 36 P->node_depth = 0; in blake2sp_init_leaf() 38 memset( P->salt, 0, sizeof( P->salt ) ); in blake2sp_init_leaf() 39 memset( P->personal, 0, sizeof( P->personal ) ); in blake2sp_init_leaf() 47 blake2s_param P[1]; in blake2sp_init_root() local 51 P->depth = 2; in blake2sp_init_root() 54 P->node_depth = 1; in blake2sp_init_root() 56 memset( P->salt, 0, sizeof( P->salt ) ); in blake2sp_init_root() [all …]
|
| H A D | blake2s.c | 117 P->digest_length = digest_length; in blake2s_param_set_digest_length() 123 P->fanout = fanout; in blake2s_param_set_fanout() 129 P->depth = depth; in blake2s_param_set_max_depth() 135 P->leaf_length = leaf_length; in blake2s_param_set_leaf_length() 147 P->node_depth = node_depth; in blake2s_param_set_node_depth() 153 P->inner_length = inner_length; in blake2s_param_set_inner_length() 206 p = ( uint8_t * )( P ); in blake2s_init_param() 212 S->outlen = P->digest_length; in blake2s_init_param() 222 const blake2s_param P = in blake2s_init() local 235 return blake2s_init_param( S, &P ); in blake2s_init() [all …]
|
| H A D | blake2b.c | 129 P->digest_length = digest_length; in blake2b_param_set_digest_length() 135 P->fanout = fanout; in blake2b_param_set_fanout() 141 P->depth = depth; in blake2b_param_set_max_depth() 147 P->leaf_length = leaf_length; in blake2b_param_set_leaf_length() 153 P->node_offset = node_offset; in blake2b_param_set_node_offset() 159 P->node_depth = node_depth; in blake2b_param_set_node_depth() 165 P->inner_length = inner_length; in blake2b_param_set_inner_length() 219 p = ( uint8_t * )( P ); in blake2b_init_param() 225 S->outlen = P->digest_length; in blake2b_init_param() 236 const blake2b_param P = in blake2b_init() local [all …]
|
| H A D | blake2-dispatch.c | 160 int blake2b_init_param_ref( blake2b_state *S, const blake2b_param *P ); 169 int blake2b_init_param_sse2( blake2b_state *S, const blake2b_param *P ); 190 int blake2b_init_param_avx( blake2b_state *S, const blake2b_param *P ); 197 int blake2b_init_param_xop( blake2b_state *S, const blake2b_param *P ); 206 int blake2s_init_param_ref( blake2s_state *S, const blake2s_param *P ); 236 int blake2s_init_param_avx( blake2s_state *S, const blake2s_param *P ); 243 int blake2s_init_param_xop( blake2s_state *S, const blake2s_param *P ); 461 return blake2b_init_param_ptr( S, P ); in blake2b_init_param_dispatch() 494 return blake2b_init_param_ptr( S, P ); in blake2b_init_param() 527 return blake2s_init_param_ptr( S, P ); in blake2s_init_param_dispatch() [all …]
|
| /f-stack/dpdk/lib/librte_acl/ |
| H A D | acl_vect.h | 44 #define ACL_TR_CALC_ADDR(P, S, \ argument 62 r = _##P##_srli_epi32(in, 30); \ 63 r = _##P##_add_epi8(r, range_base); \ 64 t = _##P##_srli_epi32(in, 24); \ 65 r = _##P##_shuffle_epi8(tr_hi, r); \ 67 dfa_ofs = _##P##_sub_epi32(t, r); \ 70 t = _##P##_cmpgt_epi8(in, tr_hi); \ 71 t = _##P##_sign_epi8(t, t); \ 72 t = _##P##_maddubs_epi16(t, t); \ 73 quad_ofs = _##P##_madd_epi16(t, ones_16); \ [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | rtprio.h | 57 #define RTP_PRIO_BASE(P) PRI_BASE(P) argument 58 #define RTP_PRIO_IS_REALTIME(P) PRI_IS_REALTIME(P) argument 59 #define RTP_PRIO_NEED_RR(P) PRI_NEED_RR(P) argument
|
| H A D | priority.h | 59 #define PRI_BASE(P) ((P) & ~PRI_FIFO_BIT) argument 60 #define PRI_IS_REALTIME(P) (PRI_BASE(P) == PRI_REALTIME) argument 61 #define PRI_NEED_RR(P) ((P) != PRI_FIFO) argument
|
| /f-stack/freebsd/netgraph/atm/uni/ |
| H A D | ng_uni_cust.h | 66 #define INS_FREE(P) ng_uni_free(UNIMEM_INS, P, __FILE__, __LINE__) argument 69 #define UNI_FREE(P) ng_uni_free(UNIMEM_ALL, P, __FILE__, __LINE__) argument 72 #define SIG_FREE(P) ng_uni_free(UNIMEM_SIG, P, __FILE__, __LINE__) argument 75 #define CALL_FREE(P) ng_uni_free(UNIMEM_CALL, P, __FILE__, __LINE__) argument 78 #define PARTY_FREE(P) ng_uni_free(UNIMEM_PARTY, P, __FILE__, __LINE__) argument
|
| /f-stack/dpdk/drivers/net/ixgbe/base/ |
| H A D | ixgbe_type.h | 2874 #define IXGBE_PVFCTRL(P) (0x00300 + (4 * (P))) argument 2880 #define IXGBE_PVTEICR(P) (0x00B00 + (4 * (P))) argument 2886 #define IXGBE_PVTEITR(P) (((P) < 24) ? (0x00820 + ((P) * 4)) : \ argument 2892 #define IXGBE_PVFRDBAL(P) ((P < 64) ? (0x01000 + (0x40 * (P))) \ argument 2894 #define IXGBE_PVFRDBAH(P) ((P < 64) ? (0x01004 + (0x40 * (P))) \ argument 2896 #define IXGBE_PVFRDLEN(P) ((P < 64) ? (0x01008 + (0x40 * (P))) \ argument 2898 #define IXGBE_PVFRDH(P) ((P < 64) ? (0x01010 + (0x40 * (P))) \ argument 2900 #define IXGBE_PVFRDT(P) ((P < 64) ? (0x01018 + (0x40 * (P))) \ argument 2902 #define IXGBE_PVFRXDCTL(P) ((P < 64) ? (0x01028 + (0x40 * (P))) \ argument 2904 #define IXGBE_PVFSRRCTL(P) ((P < 64) ? (0x01014 + (0x40 * (P))) \ argument [all …]
|
| /f-stack/dpdk/doc/guides/nics/features/ |
| H A D | ixgbe_vf.ini | 22 CRC offload = P 23 VLAN offload = P 24 QinQ offload = P 25 L3 checksum offload = P 26 L4 checksum offload = P 27 Inner L3 checksum = P 28 Inner L4 checksum = P
|
| H A D | ixgbe.ini | 33 CRC offload = P 34 VLAN offload = P 35 QinQ offload = P 36 L3 checksum offload = P 37 L4 checksum offload = P 38 MACsec offload = P 39 Inner L3 checksum = P 40 Inner L4 checksum = P
|
| H A D | txgbe.ini | 30 CRC offload = P 31 VLAN offload = P 32 QinQ offload = P 33 L3 checksum offload = P 34 L4 checksum offload = P 35 Inner L3 checksum = P 36 Inner L4 checksum = P
|
| H A D | i40e_vf.ini | 10 Fast mbuf free = P 25 QinQ offload = P 26 L3 checksum offload = P 27 L4 checksum offload = P 28 Inner L3 checksum = P 29 Inner L4 checksum = P
|
| H A D | ice.ini | 11 Fast mbuf free = P 28 QinQ offload = P 29 L3 checksum offload = P 30 L4 checksum offload = P 31 Inner L3 checksum = P 32 Inner L4 checksum = P
|
| H A D | i40e.ini | 11 Fast mbuf free = P 34 QinQ offload = P 35 L3 checksum offload = P 36 L4 checksum offload = P 37 Inner L3 checksum = P 38 Inner L4 checksum = P
|
| H A D | ice_dcf.ini | 10 RSS hash = P 13 L3 checksum offload = P 14 L4 checksum offload = P
|
| H A D | virtio.ini | 7 Speed capabilities = P 12 Scattered Rx = P 20 Extended stats = P
|
| /f-stack/freebsd/contrib/ngatm/netnatm/api/ |
| H A D | ccpriv.h | 136 #define cc_port_log(P, FMT, ARGS...) do { \ argument 138 (P), (P)->param.port , ## ARGS); \ 141 #define cc_port_log(P, FMT, ...) do { \ argument 143 (P), (P)->param.port, __VA_ARGS__); \ 148 #define cc_port_log(P, FMT, ARGS...) do { } while (0) argument 150 #define cc_port_log(P, FMT, ...) do { } while (0) argument 388 #define cc_party_log(P, FMT, ARGS...) do { \ argument 390 __FUNCTION__, (P)->conn, (P) , ## ARGS); \ 393 #define cc_party_log(P, FMT, ...) do { \ argument 395 __func__, (P)->conn, (P), __VA_ARGS__); \ [all …]
|
| /f-stack/tools/compat/include/sys/ |
| H A D | priority.h | 57 #define PRI_BASE(P) ((P) & ~PRI_FIFO_BIT) argument 58 #define PRI_IS_REALTIME(P) (PRI_BASE(P) == PRI_REALTIME) argument 59 #define PRI_NEED_RR(P) ((P) != PRI_FIFO) argument
|
| /f-stack/freebsd/kern/ |
| H A D | ksched.c | 96 #define p4prio_to_rtpprio(P) (RTP_PRIO_MAX - (P)) argument 97 #define rtpprio_to_p4prio(P) (RTP_PRIO_MAX - (P)) argument 99 #define p4prio_to_tsprio(P) ((PRI_MAX_TIMESHARE - PRI_MIN_TIMESHARE) - (P)) argument 100 #define tsprio_to_p4prio(P) ((PRI_MAX_TIMESHARE - PRI_MIN_TIMESHARE) - (P)) argument
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_scalarmult/ed25519/ref10/ |
| H A D | scalarmult_ed25519_ref10.c | 37 ge25519_p3 P; in crypto_scalarmult_ed25519() local 41 ge25519_frombytes(&P, p) != 0 || ge25519_is_on_main_subgroup(&P) == 0) { in crypto_scalarmult_ed25519() 48 ge25519_scalarmult(&Q, t, &P); in crypto_scalarmult_ed25519()
|