| /netbsd-src/external/ibm-public/postfix/dist/src/util/ |
| H A D | ip_match.c | 362 int oval; /* octet value */ in ip_match_next_token() local 375 #define IP_MATCH_RETURN_TOK_VAL(next, type, oval) do { \ in ip_match_next_token() argument 376 *poval = (oval); IP_MATCH_RETURN_TOK((next), type); \ in ip_match_next_token() 386 oval = *cp - '0'; in ip_match_next_token() 389 oval *= 10; in ip_match_next_token() 390 oval += *cp - '0'; in ip_match_next_token() 391 if (oval > 255) in ip_match_next_token() 394 IP_MATCH_RETURN_TOK_VAL(cp, type, oval); in ip_match_next_token() 443 int oval; in ip_match_parse() local 497 switch (token_type = ip_match_next_token(&cp, &saved_cp, &oval)) { in ip_match_parse() [all …]
|
| H A D | unescape.c | 74 int oval; in unescape() local 116 for (oval = ch - '0', i = 0; in unescape() 119 oval = (oval << 3) | (ch - '0'); in unescape() 121 ch = oval; in unescape()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| H A D | evp_cnf.c | 26 CONF_VALUE *oval; in alg_module_init() local 37 oval = sk_CONF_VALUE_value(sktmp, i); in alg_module_init() 38 if (strcmp(oval->name, "fips_mode") == 0) { in alg_module_init() 42 if (!X509V3_get_value_bool(oval, &m)) in alg_module_init() 54 } else if (strcmp(oval->name, "default_properties") == 0) { in alg_module_init() 56 oval->value, 0, 0)) { in alg_module_init() 62 "name=%s, value=%s", oval->name, oval->value); in alg_module_init()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| H A D | evp_cnf.c | 24 CONF_VALUE *oval; in alg_module_init() local 32 oval = sk_CONF_VALUE_value(sktmp, i); in alg_module_init() 33 if (strcmp(oval->name, "fips_mode") == 0) { in alg_module_init() 35 if (!X509V3_get_value_bool(oval, &m)) { in alg_module_init() 45 ERR_add_error_data(4, "name=", oval->name, in alg_module_init() 46 ", value=", oval->value); in alg_module_init()
|
| /netbsd-src/sys/net/npf/ |
| H A D | npf_portmap.c | 314 uint64_t bval, b, oval, nval; in bitmap_set() local 379 oval = bm1->bits1[i]; in bitmap_set() 380 if (oval & b) { in bitmap_set() 383 nval = oval | b; in bitmap_set() 384 if (__npf_atomic_cas_64(&bm1->bits1[i], oval, nval) != oval) { in bitmap_set() 394 uint64_t bval, b, oval, nval; in bitmap_clr() local 419 oval = bm1->bits1[i]; in bitmap_clr() 420 if ((oval & b) == 0) { in bitmap_clr() 423 nval = oval & ~b; in bitmap_clr() 424 if (__npf_atomic_cas_64(&bm1->bits1[i], oval, nval) != oval) { in bitmap_clr()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| H A D | asn_moid.c | 28 CONF_VALUE *oval; in oid_module_init() local 36 oval = sk_CONF_VALUE_value(sktmp, i); in oid_module_init() 37 if (!do_create(oval->value, oval->name)) { in oid_module_init()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| H A D | asn_moid.c | 28 CONF_VALUE *oval; in oid_module_init() local 36 oval = sk_CONF_VALUE_value(sktmp, i); in oid_module_init() 37 if (!do_create(oval->value, oval->name)) { in oid_module_init()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/postconf/ |
| H A D | postconf.c | 761 int oval; in pcf_check_exclusive_options() local 764 for (op = pcf_incompat_options; (oval = *op) != 0; op++) { in pcf_check_exclusive_options() 765 oval &= optval; in pcf_check_exclusive_options() 766 for (mask = ~0U; (mask & oval) != 0; mask >>= 1) { in pcf_check_exclusive_options() 767 if ((mask & oval) != oval) in pcf_check_exclusive_options() 769 str_name_mask(myname, pcf_compat_names, oval)); in pcf_check_exclusive_options()
|
| /netbsd-src/sys/dev/i2c/ |
| H A D | fan53555.c | 168 uint8_t val, oval; in fan53555_set_voltage() local 174 oval = I2C_READ(sc, sc->sc_runtime_reg); in fan53555_set_voltage() 175 cur_uvol = __SHIFTOUT(oval, VSEL_NSEL) * sc->sc_step + sc->sc_base; in fan53555_set_voltage() 178 val = oval & ~VSEL_NSEL; in fan53555_set_voltage()
|
| H A D | sy8106a.c | 137 uint8_t val, oval; in sy8106a_set_voltage() local 143 oval = I2C_READ(sc, VOUT1_SEL); in sy8106a_set_voltage() 144 cur_uvol = __SHIFTOUT(oval, SEL_VOLTAGE) * SEL_VOLTAGE_STEP + in sy8106a_set_voltage()
|
| /netbsd-src/external/gpl2/texinfo/dist/info/ |
| H A D | infokey.c | 434 char oval = 0; in compile() local 550 oval = c - '0'; in compile() 595 oval = oval * 8 + c - '0'; in compile() 607 if (oval) in compile() 608 To_seq (oval); in compile()
|
| /netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/ |
| H A D | dt_handle.c | 416 uint64_t oval = *((uint64_t *)oaddr); in dt_handle_status() local 418 if (nval == oval) in dt_handle_status() 432 (u_longlong_t)(nval - oval), in dt_handle_status() 433 _dt_droptab[i].dtdrt_str, (nval - oval > 1) ? "s" : "", in dt_handle_status() 439 drop.dtdda_drops = nval - oval; in dt_handle_status()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| H A D | dispatcher.c | 900 struct itimerval *oval) in _setitimer() argument 920 ret = CALL_REAL (setitimer)(which, nval, oval); in _setitimer() 921 if (oval == NULL) in _setitimer() 924 period = (oval->it_interval.tv_sec * MICROSEC) + in _setitimer() 925 oval->it_interval.tv_usec; in _setitimer() 933 if (oval == NULL) in _setitimer() 937 getitimer (which, oval); /* return current itimer setting */ in _setitimer() 938 period = (oval->it_interval.tv_sec * MICROSEC) + in _setitimer() 939 oval->it_interval.tv_usec; in _setitimer()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
| H A D | dispatcher.c | 952 struct itimerval *oval) in DCL_TIMER_CREATE() 972 ret = CALL_REAL (setitimer)(which, nval, oval); in DCL_TIMER_CREATE() 973 if (oval == NULL) in DCL_TIMER_CREATE() 976 period = (oval->it_interval.tv_sec * MICROSEC) + in DCL_TIMER_CREATE() 977 oval->it_interval.tv_usec; in DCL_TIMER_CREATE() 985 if (oval == NULL) in DCL_TIMER_CREATE() 989 getitimer (which, oval); /* return current itimer setting */ in DCL_TIMER_CREATE() 990 period = (oval->it_interval.tv_sec * MICROSEC) + in DCL_TIMER_CREATE() 991 oval->it_interval.tv_usec; in DCL_TIMER_CREATE()
|
| /netbsd-src/tests/kernel/threadpool_tester/ |
| H A D | threadpool_tester.c | 350 unsigned int oval, nval; in threadpool_tester_job() local 355 oval = ctx->ctx_value; in threadpool_tester_job() 356 nval = oval + 1; /* always reference oval and nval */ in threadpool_tester_job() 360 TP_LOG(("%s: %u -> %u\n", __func__, oval, nval)); in threadpool_tester_job()
|
| /netbsd-src/tests/modules/threadpool_tester/ |
| H A D | threadpool_tester.c | 350 unsigned int oval, nval; in threadpool_tester_job() local 355 oval = ctx->ctx_value; in threadpool_tester_job() 356 nval = oval + 1; /* always reference oval and nval */ in threadpool_tester_job() 360 TP_LOG(("%s: %u -> %u\n", __func__, oval, nval)); in threadpool_tester_job()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/master/ |
| H A D | dgram_server.c | 336 char *oval; in dgram_server_main() local 424 if ((err = split_nameval(oname_val, &oname, &oval)) != 0) in dgram_server_main() 426 mail_conf_update(oname, oval); in dgram_server_main()
|
| H A D | trigger_server.c | 443 char *oval; in trigger_server_main() local 531 if ((err = split_nameval(oname_val, &oname, &oval)) != 0) in trigger_server_main() 533 mail_conf_update(oname, oval); in trigger_server_main()
|
| H A D | single_server.c | 455 char *oval; in single_server_main() local 545 if ((err = split_nameval(oname_val, &oname, &oval)) != 0) in single_server_main() 547 mail_conf_update(oname, oval); in single_server_main()
|
| H A D | multi_server.c | 567 char *oval; in multi_server_main() local 655 if ((err = split_nameval(oname_val, &oname, &oval)) != 0) in multi_server_main() 657 mail_conf_update(oname, oval); in multi_server_main()
|
| H A D | event_server.c | 583 char *oval; in event_server_main() local 673 if ((err = split_nameval(oname_val, &oname, &oval)) != 0) in event_server_main() 675 mail_conf_update(oname, oval); in event_server_main()
|
| /netbsd-src/usr.bin/mkcsmapper/ |
| H A D | yacc.y | 229 u_int16_t oval = htons(val); in put16() local 230 memcpy((u_int16_t *)ptr + ofs, &oval, 2); in put16() 236 u_int32_t oval = htonl(val); in put32() local 237 memcpy((u_int32_t *)ptr + ofs, &oval, 4); in put32()
|
| /netbsd-src/usr.bin/radioctl/ |
| H A D | radioctl.c | 210 int oval; in do_ioctls() local 220 oval = o->option == OPTION_SEARCH ? OPTION_FREQUENCY : o->option; in do_ioctls() 222 printf("%s: ", varname[oval]); in do_ioctls()
|
| /netbsd-src/sys/compat/common/ |
| H A D | compat_util.h | 70 unsigned long oval; member
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/ |
| H A D | ldmain.c | 1027 bfd_vma oval; in multiple_definition() local 1036 oval = h->u.def.value; in multiple_definition() 1041 oval = 0; in multiple_definition() 1053 && nval == oval) in multiple_definition() 1075 nval = oval; in multiple_definition() 1085 einfo (_("; %D: first defined here"), obfd, osec, oval); in multiple_definition()
|