| /netbsd-src/external/bsd/nvi/dist/ip/ |
| H A D | ip_read.c | 128 ip_event(SCR *sp, EVENT *evp, u_int32_t flags, int ms) in ip_event() argument 130 return ip_wevent(sp->wp, sp, evp, flags, ms); in ip_event() 143 ip_wevent(WIN *wp, SCR *sp, EVENT *evp, u_int32_t flags, int ms) in ip_wevent() argument 151 evp->e_event = E_TIMEOUT; in ip_wevent() 168 if (!termread && ipp->iblen >= IPO_CODE_LEN && ip_trans(sp, ipp, evp)) in ip_wevent() 185 evp->e_csp = ipp->tbuf; in ip_wevent() 186 evp->e_len = nr; in ip_wevent() 187 evp->e_event = E_STRING; in ip_wevent() 188 } else if (!ip_trans(sp, ipp, evp)) in ip_wevent() 192 evp->e_event = E_EOF; in ip_wevent() [all …]
|
| /netbsd-src/sys/dev/pci/ixgbe/ |
| H A D | ixgbe_netbsd.h | 60 #define IXGBE_EVC_LOAD(evp) \ argument 61 atomic_load_relaxed(&((evp)->ev_count)) 62 #define IXGBE_EVC_STORE(evp, val) \ argument 63 atomic_store_relaxed(&((evp)->ev_count), (val)) 64 #define IXGBE_EVC_ADD(evp, val) \ argument 65 atomic_store_relaxed(&((evp)->ev_count), \ 66 atomic_load_relaxed(&((evp)->ev_count)) + (val)) 68 #define IXGBE_EVC_LOAD(evp) ((evp)->ev_count)) argument 69 #define IXGBE_EVC_STORE(evp, val) ((evp)->ev_count = (val)) argument 70 #define IXGBE_EVC_ADD(evp, val) ((evp)->ev_count += (val)) argument
|
| /netbsd-src/external/bsd/nvi/dist/common/ |
| H A D | key.c | 351 EVENT *evp; in v_event_push() local 380 for (evp = wp->i_event + wp->i_next; nitems--; ++evp) { in v_event_push() 382 *evp = *p_evp++; in v_event_push() 384 evp->e_event = E_CHARACTER; in v_event_push() 385 evp->e_c = *p_s++; in v_event_push() 386 evp->e_value = KEY_VAL(sp, evp->e_c); in v_event_push() 387 FL_INIT(evp->e_flags, flags); in v_event_push() 401 EVENT *evp; in v_event_append() local 411 evp = wp->i_event + wp->i_next + wp->i_cnt; in v_event_append() 416 for (s = argp->e_csp; nevents--; ++evp) { in v_event_append() [all …]
|
| /netbsd-src/lib/libc/stdio/ |
| H A D | makebuf.c | 66 char evb[64], *evp; in __senvbuf() local 74 if ((evp = getenv(evb)) == NULL && (evp = getenv("STDBUF")) == NULL) in __senvbuf() 77 switch (*evp) { in __senvbuf() 80 evp++; in __senvbuf() 85 evp++; in __senvbuf() 90 evp++; in __senvbuf() 95 if (!isdigit((unsigned char)*evp)) in __senvbuf() 98 s = strtoi(evp, NULL, 0, 0, 1024 * 1024, &e); in __senvbuf()
|
| /netbsd-src/external/bsd/nvi/dist/cl/ |
| H A D | cl_read.c | 58 cl_event(SCR *sp, EVENT *evp, u_int32_t flags, int ms) in cl_event() argument 76 evp->e_event = E_INTERRUPT; in cl_event() 78 evp->e_event = E_TIMEOUT; in cl_event() 83 evp->e_event = E_SIGHUP; in cl_event() 87 evp->e_event = E_SIGTERM; in cl_event() 96 evp->e_event = E_WRESIZE; in cl_event() 119 evp->e_csp = __UNCONST(wp); in cl_event() 120 evp->e_len = wlen; in cl_event() 121 evp->e_event = E_STRING; in cl_event() 134 evp->e_event = E_ERR; in cl_event() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| H A D | Makefile.am | 41 evp.h \ 42 evp-hcrypto.h \ 43 evp-cc.h \ 44 evp-openssl.h \ 45 evp-pkcs11.h \ 127 evp.c \ 128 evp.h \ 129 evp-hcrypto.c \ 130 evp-cc.c \ 131 evp-openssl.c \ [all …]
|
| H A D | NTMakefile | 71 $(HCRYPTOINCLUDEDIR)\evp.h \ 72 $(HCRYPTOINCLUDEDIR)\evp-hcrypto.h \ 73 $(HCRYPTOINCLUDEDIR)\evp-cc.h \ 74 $(HCRYPTOINCLUDEDIR)\evp-openssl.h \ 75 $(HCRYPTOINCLUDEDIR)\evp-pkcs11.h \ 76 $(HCRYPTOINCLUDEDIR)\evp-wincng.h \ 77 $(HCRYPTOINCLUDEDIR)\evp-w32.h \ 116 $(OBJ)\evp.obj \ 117 $(OBJ)\evp-hcrypto.obj \ 118 $(OBJ)\evp-cc.obj \ [all …]
|
| /netbsd-src/external/cddl/osnet/sys/kern/ |
| H A D | sysevent.c | 71 sysevent_free(sysevent_t *evp) in sysevent_free() argument 73 struct sysevent *ev = (struct sysevent *)evp; in sysevent_free() 75 ASSERT(evp != NULL); in sysevent_free() 143 sysevent_attach_attributes(sysevent_t *evp, sysevent_attr_list_t *ev_attr_list) in sysevent_attach_attributes() argument 145 struct sysevent *ev = (struct sysevent *)evp; in sysevent_attach_attributes() 155 sysevent_detach_attributes(sysevent_t *evp) in sysevent_detach_attributes() argument 157 struct sysevent *ev = (struct sysevent *)evp; in sysevent_detach_attributes() 165 log_sysevent(sysevent_t *evp, int flag, sysevent_id_t *eid) in log_sysevent() argument 170 struct sysevent *ev = (struct sysevent *)evp; in log_sysevent() 176 ASSERT(evp != NULL); in log_sysevent()
|
| /netbsd-src/share/examples/rump/btplay/ |
| H A D | btplay.c | 72 hci_event_hdr_t *evp; in main() local 119 evp = (void *)msg; in main() 138 if (evp->event != HCI_EVENT_COMMAND_COMPL) in main() 146 if (evp->event == HCI_EVENT_INQUIRY_COMPL) in main() 148 if (evp->event == HCI_EVENT_INQUIRY_RESULT) { in main() 183 if (evp->event != HCI_EVENT_REMOTE_NAME_REQ_COMPL) in main() 186 nresp = (void *)(evp+1); in main()
|
| /netbsd-src/sys/arch/xen/xen/ |
| H A D | evtchn.c | 1180 struct evtsource *evp = evtsource[i]; in event_get_handler() local 1182 if (strcmp(evp->ev_intrname, intrid) == 0) in event_get_handler() 1183 return evp; in event_get_handler() 1193 struct evtsource *evp; in xen_intr_get_count() local 1197 evp = event_get_handler(intrid); in xen_intr_get_count() 1198 if (evp != NULL && cpu_idx == cpu_index(evp->ev_cpu)) in xen_intr_get_count() 1199 count = evp->ev_evcnt.ev_count; in xen_intr_get_count() 1209 struct evtsource *evp; in xen_intr_get_assigned() local 1215 evp = event_get_handler(intrid); in xen_intr_get_assigned() 1216 if (evp != NULL) in xen_intr_get_assigned() [all …]
|
| /netbsd-src/external/bsd/nvi/dist/vi/ |
| H A D | v_event.c | 200 v_erepaint(SCR *sp, EVENT *evp) in v_erepaint() argument 204 for (; evp->e_flno <= evp->e_tlno; ++evp->e_flno) { in v_erepaint() 205 smp = HMAP + evp->e_flno - 1; in v_erepaint() 218 v_sel_end(SCR *sp, EVENT *evp) in v_sel_end() argument 223 smp = HMAP + evp->e_lno; in v_sel_end() 232 vs_colpos(sp, smp->lno, evp->e_cno + (smp->soff - 1) * sp->cols); in v_sel_end() 241 v_sel_start(SCR *sp, EVENT *evp) in v_sel_start() argument 246 smp = HMAP + evp->e_lno; in v_sel_start() 255 vs_colpos(sp, smp->lno, evp->e_cno + (smp->soff - 1) * sp->cols); in v_sel_start()
|
| H A D | v_txt.c | 259 EVENT ev, *evp = NULL; /* Current event. */ in v_txt() local 488 evp = &ev; in v_txt() 489 next: if (v_event_get(sp, evp, 0, ec_flags)) in v_txt() 511 switch (evp->e_event) { in v_txt() 539 v_event_err(sp, evp); in v_txt() 550 if (rcol == 0 && !LF_ISSET(TXT_REPLAY) && evp->e_c == '\0') { in v_txt() 572 O_STR(sp, O_CEDIT)[0] == evp->e_c) in v_txt() 575 O_STR(sp, O_FILEC)[0] == evp->e_c) in v_txt() 590 if (FL_ISSET(evp->e_flags, CH_ABBREVIATED)) { in v_txt() 607 vip->rep[rcol++] = *evp; in v_txt() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| H A D | 15-test_mp_rsa.t | 50 my $evp = shift; 55 my $name = ($evp ? "evp" : "") . "${bits}p${primes}"; 57 if ($evp) { 68 if ($evp) {
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| H A D | tsan_rtl_report.cpp | 472 for (Event *evp = &part->events[0]; evp < end; evp++) { in TraceReplay() local 473 Event *evp0 = evp; in TraceReplay() 474 if (!evp->is_access && !evp->is_func) { in TraceReplay() 475 switch (evp->type) { in TraceReplay() 477 auto *ev = reinterpret_cast<EventTime *>(evp); in TraceReplay() 492 evp++; in TraceReplay() 572 [&](Sid ev_sid, Epoch ev_epoch, Event *evp) { in RestoreStack() argument 574 if (evp->is_access) { in RestoreStack() 575 if (evp->is_func == 0 && evp->type == EventType::kAccessExt && in RestoreStack() 576 evp->_ == 0) // NopEvent in RestoreStack() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/ |
| H A D | fips.module.sources | 192 crypto/evp/asymcipher.c 193 crypto/evp/dh_support.c 194 crypto/evp/digest.c 195 crypto/evp/ec_support.c 196 crypto/evp/evp_enc.c 197 crypto/evp/evp_fetch.c 198 crypto/evp/evp_lib.c 199 crypto/evp/evp_local.h 200 crypto/evp/evp_rand.c 201 crypto/evp/evp_utils.c [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/include/hcrypto/ |
| H A D | Makefile.am | 15 evp.h \ 16 evp-hcrypto.h \ 17 evp-cc.h \
|
| /netbsd-src/crypto/external/bsd/openssl.old/lib/libcrypto/ |
| H A D | evp.inc | 1 # $NetBSD: evp.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $ 5 # SRCS extracted from src/crypto/dist/openssl/crypto/evp/Makefile 8 .PATH: ${OPENSSLSRC}/crypto/evp 78 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/evp
|
| /netbsd-src/lib/librumpuser/ |
| H A D | rumpuser_dl.c | 363 struct evcnt *const *evp, *const *evp_end; in process_object() local 388 evp = dlsym(handle, "__start_link_set_evcnts"); in process_object() 390 if (evp && evp_end) { in process_object() 391 for (; evp < evp_end; evp++) in process_object() 392 doevcntattach(*evp); in process_object() 393 assert(evp == evp_end); in process_object()
|
| /netbsd-src/tests/crypto/libcrypto/ |
| H A D | t_ciphers.sh | 59 atf_test_case evp 67 for i in $(atf_get_srcdir)/evp*.txt; do 117 atf_add_test_case evp
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/perlasm/ |
| H A D | sparcv9_modes.pl | 54 $::code.=<<___ if (!$::evp); 66 $::code.=<<___ if ($::evp); 126 $::code.=<<___ if ($::evp); 132 $::code.=<<___ if (!$::evp); 161 $::code.=<<___ if ($::evp); 167 $::code.=<<___ if (!$::evp); 238 $::code.=<<___ if ($::evp); 244 $::code.=<<___ if (!$::evp); 272 $::code.=<<___ if (!$::evp); 284 $::code.=<<___ if ($::evp); [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/perlasm/ |
| H A D | sparcv9_modes.pl | 54 $::code.=<<___ if (!$::evp); 66 $::code.=<<___ if ($::evp); 126 $::code.=<<___ if ($::evp); 132 $::code.=<<___ if (!$::evp); 161 $::code.=<<___ if ($::evp); 167 $::code.=<<___ if (!$::evp); 238 $::code.=<<___ if ($::evp); 244 $::code.=<<___ if (!$::evp); 272 $::code.=<<___ if (!$::evp); 284 $::code.=<<___ if ($::evp); [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
| H A D | 15-test_mp_rsa.t | 53 my $evp = shift; 58 my $name = ($evp ? "evp" : "") . "${bits}p${primes}"; 60 if ($evp) {
|
| /netbsd-src/crypto/dist/ipsec-tools/src/racoon/ |
| H A D | crypto_openssl.c | 865 EVP_PKEY *evp; local 872 evp = X509_get_pubkey(x509); 873 if (! evp) { 879 res = eay_rsa_verify(source, sig, __UNCONST(EVP_PKEY_get0_RSA(evp))); 881 EVP_PKEY_free(evp); 909 EVP_PKEY *evp = NULL; local 920 evp = PEM_read_PrivateKey(fp, NULL, NULL, NULL); 924 if (evp == NULL) 927 pkeylen = i2d_PrivateKey(evp, NULL); 934 pkeylen = i2d_PrivateKey(evp, &bp); [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/amazon/ |
| H A D | Makefile | 2 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v2-evp.dtb 3 dtb-$(CONFIG_ARCH_ALPINE) += alpine-v3-evp.dtb
|
| /netbsd-src/crypto/external/bsd/openssl/lib/libcrypto/ |
| H A D | evp.inc | 1 # $NetBSD: evp.inc,v 1.11 2023/05/06 17:07:23 christos Exp $ 3 .PATH: ${OPENSSLSRC}/crypto/evp 90 CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/evp ${EVPCPPFLAGS}
|