| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/amazon/ |
| Makefile | 2 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v2-evp.dtb 3 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v3-evp.dtb
|
| /src/sys/dev/pci/ixgbe/ |
| ixgbe_netbsd.h | 60 #define IXGBE_EVC_LOAD(evp) \ 61 atomic_load_relaxed(&((evp)->ev_count)) 62 #define IXGBE_EVC_STORE(evp, val) \ 63 atomic_store_relaxed(&((evp)->ev_count), (val)) 64 #define IXGBE_EVC_ADD(evp, val) \ 65 atomic_store_relaxed(&((evp)->ev_count), \ 66 atomic_load_relaxed(&((evp)->ev_count)) + (val)) 68 #define IXGBE_EVC_LOAD(evp) ((evp)->ev_count)) 69 #define IXGBE_EVC_STORE(evp, val) ((evp)->ev_count = (val) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| pkcs12.h | 50 #include <hcrypto/evp.h>
|
| /src/lib/libc/stdio/ |
| makebuf.c | 66 char evb[64], *evp; local 74 if ((evp = getenv(evb)) == NULL && (evp = getenv("STDBUF")) == NULL) 77 switch (*evp) { 80 evp++; 85 evp++; 90 evp++; 95 if (!isdigit((unsigned char)*evp)) 98 s = strtoi(evp, NULL, 0, 0, 1024 * 1024, &e);
|
| /src/external/bsd/nvi/dist/ip/ |
| ip_read.c | 128 ip_event(SCR *sp, EVENT *evp, u_int32_t flags, int ms) 130 return ip_wevent(sp->wp, sp, evp, flags, ms); 143 ip_wevent(WIN *wp, SCR *sp, EVENT *evp, u_int32_t flags, int ms) 151 evp->e_event = E_TIMEOUT; 168 if (!termread && ipp->iblen >= IPO_CODE_LEN && ip_trans(sp, ipp, evp)) 185 evp->e_csp = ipp->tbuf; 186 evp->e_len = nr; 187 evp->e_event = E_STRING; 188 } else if (!ip_trans(sp, ipp, evp)) 192 evp->e_event = E_EOF [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/pem/ |
| pem_x509.c | 13 #include <openssl/evp.h>
|
| pem_xaux.c | 13 #include <openssl/evp.h>
|
| /src/crypto/external/apache2/openssl/dist/test/helpers/ |
| predefined_dhparams.h | 10 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl/dist/crypto/pem/ |
| pem_x509.c | 13 #include <openssl/evp.h>
|
| pem_xaux.c | 13 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl/dist/test/helpers/ |
| predefined_dhparams.h | 10 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/pem/ |
| pem_x509.c | 13 #include <openssl/evp.h>
|
| pem_xaux.c | 13 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| 15-test_mp_rsa.t | 46 # evp 50 my $evp = shift; 55 my $name = ($evp ? "evp" : "") . "${bits}p${primes}"; 57 if ($evp) { 68 if ($evp) {
|
| /src/crypto/external/apache2/openssl/dist/crypto/rand/ |
| rand_local.h | 14 #include <openssl/evp.h>
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| build_wincrypt_test.c | 39 #include <openssl/evp.h>
|
| evp_byname_test.c | 14 #include <openssl/evp.h>
|
| evp_pkey_ctx_new_from_name.c | 3 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl/dist/crypto/rand/ |
| rand_local.h | 14 # include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| evp_byname_test.c | 14 #include <openssl/evp.h>
|
| evp_pkey_ctx_new_from_name.c | 3 #include <openssl/evp.h>
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/cmac/ |
| cm_ameth.c | 12 #include <openssl/evp.h>
|
| /src/external/bsd/libfido2/dist/examples/ |
| extern.h | 12 #include <openssl/evp.h>
|
| /src/external/bsd/nvi/dist/common/ |
| key.c | 351 EVENT *evp; local 380 for (evp = wp->i_event + wp->i_next; nitems--; ++evp) { 382 *evp = *p_evp++; 384 evp->e_event = E_CHARACTER; 385 evp->e_c = *p_s++; 386 evp->e_value = KEY_VAL(sp, evp->e_c); 387 FL_INIT(evp->e_flags, flags); 401 EVENT *evp; local 525 EVENT *evp, ev; local [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| cipher.c | 94 EVP_CIPHER_CTX *evp; member in struct:sshcipher_ctx 96 struct aesctr_ctx ac_ctx; /* XXX union with evp? */ 313 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) { 317 if (EVP_CipherInit(cc->evp, type, NULL, (const u_char *)iv, 323 EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED, 328 klen = EVP_CIPHER_CTX_key_length(cc->evp); 330 if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) { 337 if (EVP_CipherInit_ex(cc->evp, NULL, NULL, __UNCONST(key), NULL, -1) == 0) { 350 EVP_CIPHER_CTX_free(cc->evp); 396 if (EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN [all...] |