Searched refs:oval (Results 1 - 25 of 38) sorted by relevance

12

/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Devp_cnf.c24 CONF_VALUE *oval; local
32 oval = sk_CONF_VALUE_value(sktmp, i);
33 if (strcmp(oval->name, "fips_mode") == 0) {
35 if (!X509V3_get_value_bool(oval, &m)) {
45 ERR_add_error_data(4, "name=", oval->name,
46 ", value=", oval->value);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/evp/
H A Devp_cnf.c26 CONF_VALUE *oval; local
37 oval = sk_CONF_VALUE_value(sktmp, i);
38 if (strcmp(oval->name, "fips_mode") == 0) {
42 if (!X509V3_get_value_bool(oval, &m))
54 } else if (strcmp(oval->name, "default_properties") == 0) {
56 oval->value, 0, 0)) {
62 "name=%s, value=%s", oval->name, oval->value);
/netbsd-current/sys/compat/common/
H A Dcompat_util.h70 unsigned long oval; member in struct:emul_flags_xtab
H A Dcompat_util.c96 if ((in & tab->omask) == tab->oval) {
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dip_match.c362 int oval; /* octet value */ local
375 #define IP_MATCH_RETURN_TOK_VAL(next, type, oval) do { \
376 *poval = (oval); IP_MATCH_RETURN_TOK((next), type); \
386 oval = *cp - '0';
389 oval *= 10;
390 oval += *cp - '0';
391 if (oval > 255)
394 IP_MATCH_RETURN_TOK_VAL(cp, type, oval);
443 int oval; local
497 switch (token_type = ip_match_next_token(&cp, &saved_cp, &oval)) {
[all...]
H A Dunescape.c74 int oval; local
116 for (oval = ch - '0', i = 0;
119 oval = (oval << 3) | (ch - '0');
121 ch = oval;
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dasn_moid.c28 CONF_VALUE *oval; local
36 oval = sk_CONF_VALUE_value(sktmp, i);
37 if (!do_create(oval->value, oval->name)) {
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_moid.c28 CONF_VALUE *oval; local
36 oval = sk_CONF_VALUE_value(sktmp, i);
37 if (!do_create(oval->value, oval->name)) {
/netbsd-current/external/ibm-public/postfix/dist/src/postconf/
H A Dpostconf.c761 int oval; local
764 for (op = pcf_incompat_options; (oval = *op) != 0; op++) {
765 oval &= optval;
766 for (mask = ~0U; (mask & oval) != 0; mask >>= 1) {
767 if ((mask & oval) != oval)
769 str_name_mask(myname, pcf_compat_names, oval));
/netbsd-current/sys/net/npf/
H A Dnpf_portmap.c314 uint64_t bval, b, oval, nval; local
379 oval = bm1->bits1[i];
380 if (oval & b) {
383 nval = oval | b;
384 if (__npf_atomic_cas_64(&bm1->bits1[i], oval, nval) != oval) {
394 uint64_t bval, b, oval, nval; local
419 oval = bm1->bits1[i];
420 if ((oval & b) == 0) {
423 nval = oval
[all...]
/netbsd-current/sys/dev/i2c/
H A Dfan53555.c168 uint8_t val, oval; local
174 oval = I2C_READ(sc, sc->sc_runtime_reg);
175 cur_uvol = __SHIFTOUT(oval, VSEL_NSEL) * sc->sc_step + sc->sc_base;
178 val = oval & ~VSEL_NSEL;
H A Dsy8106a.c137 uint8_t val, oval; local
143 oval = I2C_READ(sc, VOUT1_SEL);
144 cur_uvol = __SHIFTOUT(oval, SEL_VOLTAGE) * SEL_VOLTAGE_STEP +
/netbsd-current/external/gpl2/texinfo/dist/info/
H A Dinfokey.c436 char oval = 0;
552 oval = c - '0';
597 oval = oval * 8 + c - '0';
609 if (oval)
610 To_seq (oval);
434 char oval = 0; local
/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_handle.c416 uint64_t oval = *((uint64_t *)oaddr); local
418 if (nval == oval)
432 (u_longlong_t)(nval - oval),
433 _dt_droptab[i].dtdrt_str, (nval - oval > 1) ? "s" : "",
439 drop.dtdda_drops = nval - oval;
/netbsd-current/external/ibm-public/postfix/dist/src/master/
H A Ddgram_server.c336 char *oval; local
424 if ((err = split_nameval(oname_val, &oname, &oval)) != 0)
426 mail_conf_update(oname, oval);
H A Devent_server.c583 char *oval; local
673 if ((err = split_nameval(oname_val, &oname, &oval)) != 0)
675 mail_conf_update(oname, oval);
H A Dmulti_server.c567 char *oval; local
655 if ((err = split_nameval(oname_val, &oname, &oval)) != 0)
657 mail_conf_update(oname, oval);
H A Dsingle_server.c455 char *oval; local
545 if ((err = split_nameval(oname_val, &oname, &oval)) != 0)
547 mail_conf_update(oname, oval);
H A Dtrigger_server.c443 char *oval; local
531 if ((err = split_nameval(oname_val, &oname, &oval)) != 0)
533 mail_conf_update(oname, oval);
/netbsd-current/tests/kernel/threadpool_tester/
H A Dthreadpool_tester.c350 unsigned int oval, nval; local
355 oval = ctx->ctx_value;
356 nval = oval + 1; /* always reference oval and nval */
360 TP_LOG(("%s: %u -> %u\n", __func__, oval, nval));
/netbsd-current/tests/modules/threadpool_tester/
H A Dthreadpool_tester.c350 unsigned int oval, nval; local
355 oval = ctx->ctx_value;
356 nval = oval + 1; /* always reference oval and nval */
360 TP_LOG(("%s: %u -> %u\n", __func__, oval, nval));
/netbsd-current/external/gpl3/binutils/dist/gprofng/libcollector/
H A Ddispatcher.c900 struct itimerval *oval)
920 ret = CALL_REAL (setitimer)(which, nval, oval);
921 if (oval == NULL)
924 period = (oval->it_interval.tv_sec * MICROSEC) +
925 oval->it_interval.tv_usec;
926 TprintfT (DBG_LT2, "Real setitimer(%d) returned %d (oval=%dus)\n",
933 if (oval == NULL)
937 getitimer (which, oval); /* return current itimer setting */
938 period = (oval->it_interval.tv_sec * MICROSEC) +
939 oval
899 _setitimer(int which, const struct itimerval *nval, struct itimerval *oval) argument
[all...]
/netbsd-current/usr.bin/radioctl/
H A Dradioctl.c210 int oval; local
220 oval = o->option == OPTION_SEARCH ? OPTION_FREQUENCY : o->option;
222 printf("%s: ", varname[oval]);
/netbsd-current/usr.bin/mkcsmapper/
H A Dyacc.y229 u_int16_t oval = htons(val);
230 memcpy((u_int16_t *)ptr + ofs, &oval, 2);
236 u_int32_t oval = htonl(val);
237 memcpy((u_int32_t *)ptr + ofs, &oval, 4);
/netbsd-current/external/gpl3/binutils.old/dist/ld/
H A Dldmain.c956 bfd_vma oval;
965 oval = h->u.def.value;
970 oval = 0;
982 && nval == oval)
1004 nval = oval;
1010 einfo (_("; %D: first defined here"), obfd, osec, oval);
954 bfd_vma oval; local

Completed in 410 milliseconds

12