Searched refs:lval (Results 1 - 25 of 76) sorted by relevance

1234

/openbsd-current/lib/libcrypto/dh/
H A Ddh_pmeth.c156 long lval; local
162 lval = strtol(value, &ep, 10);
166 (lval == LONG_MAX || lval == LONG_MIN)) ||
167 (lval > INT_MAX || lval < INT_MIN))
169 len = lval;
173 lval = strtol(value, &ep, 10);
177 (lval == LONG_MAX || lval
[all...]
/openbsd-current/usr.sbin/acme-client/
H A Dcertproc.c42 long lval; local
52 if ((lval = readop(netsock, COMM_CSR_OP)) == 0)
54 else if (lval == CERT_REVOKE || lval == CERT_UPDATE)
55 op = lval;
H A Ddnsproc.c117 long lval; local
135 if ((lval = readop(nfd, COMM_DNS)) == 0)
137 else if (lval == DNS_LOOKUP)
138 op = lval;
H A Dchngproc.c36 long lval; local
58 if ((lval = readop(netsock, COMM_CHNG_OP)) == 0)
60 else if (lval == CHNG_SYN)
61 op = lval;
H A Dfileproc.c99 long lval; local
119 if ((lval = readop(certsock, COMM_CHAIN_OP)) == 0)
121 else if (lval == FILE_CREATE || lval == FILE_REMOVE)
122 op = lval;
H A Drevokeproc.c71 long lval; local
281 if ((lval = readop(fd, COMM_REVOKE_OP)) == 0)
283 else if (lval == REVOKE_CHECK)
284 op = lval;
H A Dnetproc.c128 long lval; local
134 else if ((lval = readop(fd, COMM_DNSLEN)) < 0)
137 sz = lval;
142 if ((lval = readop(fd, COMM_DNSF)) < 0)
144 else if (lval != 4 && lval != 6)
148 v[i].family = lval;
671 long lval; local
702 if ((lval = readop(afd, COMM_ACCT_STAT)) == 0) {
705 } else if (lval !
[all...]
H A Dacctproc.c452 long lval; local
522 if ((lval = readop(netsock, COMM_ACCT)) == 0)
524 else if (lval == ACCT_SIGN || lval == ACCT_KID_SIGN ||
525 lval == ACCT_THUMBPRINT)
526 op = lval;
/openbsd-current/gnu/gcc/intl/
H A Dplural.y69 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
260 yylex (lval, pexp)
261 YYSTYPE *lval;
294 lval->num = n;
303 lval->op = equal;
314 lval->op = not_equal;
331 lval->op = less_or_equal;
334 lval->op = less_than;
342 lval->op = greater_or_equal;
345 lval
[all...]
H A Dplural.c90 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
1372 yylex (lval, pexp)
1373 YYSTYPE *lval;
1406 lval->num = n;
1415 lval->op = equal;
1426 lval->op = not_equal;
1443 lval->op = less_or_equal;
1446 lval->op = less_than;
1454 lval->op = greater_or_equal;
1457 lval
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/intl/
H A Dplural.y73 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
264 yylex (lval, pexp)
265 YYSTYPE *lval;
298 lval->num = n;
307 lval->op = equal;
318 lval->op = not_equal;
335 lval->op = less_or_equal;
338 lval->op = less_than;
346 lval->op = greater_or_equal;
349 lval
[all...]
H A Dplural.c91 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
1180 yylex (lval, pexp)
1181 YYSTYPE *lval;
1214 lval->num = n;
1223 lval->op = equal;
1234 lval->op = not_equal;
1251 lval->op = less_or_equal;
1254 lval->op = less_than;
1262 lval->op = greater_or_equal;
1265 lval
[all...]
/openbsd-current/gnu/usr.bin/texinfo/intl/
H A Dplural.y57 static int yylex (YYSTYPE *lval, const char **pexp);
235 yylex (YYSTYPE *lval, const char **pexp)
267 lval->num = n;
276 lval->op = equal;
287 lval->op = not_equal;
304 lval->op = less_or_equal;
307 lval->op = less_than;
315 lval->op = greater_or_equal;
318 lval->op = greater_than;
323 lval
[all...]
H A Dplural.c78 static int yylex (YYSTYPE *lval, const char **pexp);
1347 yylex (YYSTYPE *lval, const char **pexp)
1379 lval->num = n;
1388 lval->op = equal;
1399 lval->op = not_equal;
1416 lval->op = less_or_equal;
1419 lval->op = less_than;
1427 lval->op = greater_or_equal;
1430 lval->op = greater_than;
1435 lval
1344 yylex(YYSTYPE *lval, const char **pexp) argument
[all...]
/openbsd-current/lib/libcrypto/dsa/
H A Ddsa_pmeth.c247 long lval; local
254 lval = strtol(value, &ep, 10);
258 (lval == LONG_MAX || lval == LONG_MIN)) ||
259 (lval > INT_MAX || lval < INT_MIN))
261 nbits = lval;
267 lval = strtol(value, &ep, 10);
271 (lval == LONG_MAX || lval
[all...]
/openbsd-current/usr.bin/vi/vi/
H A Dv_increment.c55 long change, ltmp, lval; local
187 if ((nret = nget_slong(&lval, t, NULL, 10)) != NUM_OK)
190 if (lval > 0 && ltmp > 0 && !NPFITS(LONG_MAX, lval, ltmp)) {
194 if (lval < 0 && ltmp < 0 && !NNFITS(LONG_MIN, lval, ltmp)) {
198 lval += ltmp;
200 if (lval == 0 && ntype == fmt[SDEC])
202 nlen = snprintf(nbuf, sizeof(nbuf), ntype, lval);
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Daassign.t485 # list and lval context: filling of missing elements, returning correct
494 sub lval {
497 is($x, $n >= 1 ? "assign1" : undef, "lval: X pre $n $desc");
498 is($y, $n >= 2 ? "assign2" : undef, "lval: Y pre $n $desc");
499 is($z, undef, "lval: Z pre $n $desc");
503 $_ = "lval$i";
506 is($x, "lval0", "lval: a post $n $desc");
507 is($y, "lval1", "lval: b post $n $desc");
508 is($z, "lval2", "lval: c post $n $desc");
510 lval(
[all...]
/openbsd-current/usr.sbin/gpioctl/
H A Dgpioctl.c73 long lval; local
124 lval = strtol(mask, &ep, 0);
127 if ((errno == ERANGE && (lval == LONG_MAX
128 || lval == LONG_MIN)) || lval > UINT_MAX)
130 ga_mask = lval;
132 lval = strtonum(flags, 0, UINT_MAX, &errstr);
135 ga_flags = lval;
/openbsd-current/sys/dev/fdt/
H A Dqccpu.c192 uint32_t lval; local
203 lval = (bus_space_read_4(iot, ioh, CPUF_DOMAIN_STATE)
205 return lval *XO_FREQ_HZ;
277 uint32_t lval; local
282 lval = (bus_space_read_4(iot, ioh, CPUF_DOMAIN_STATE)
284 sc->sc_hz_sensor[idx].value = 1000000ULL * lval * XO_FREQ_HZ;
/openbsd-current/lib/libm/src/
H A Dmath_private.h347 #define STRICT_ASSIGN(type, lval, rval) ((lval) = (rval))
349 #define STRICT_ASSIGN(type, lval, rval) do { \
353 (lval) = (rval); \
356 (lval) = __lval; \
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcvt3.C41 static void assign(void*& lval, void*& rval); // ERROR - candidates
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dada-exp.c277 LONGEST lval; member in union:YYSTYPE
1556 write_exp_elt_longcst (yyvsp[-1].lval);
1632 { yyval.lval = 0; }
1637 { yyval.lval = 1; }
1642 { yyval.lval = 1; }
1647 { yyval.lval = yyvsp[-2].lval + 1; }
1652 { yyval.lval = yyvsp[-4].lval + 1; }
1731 write_exp_elt_longcst ((LONGEST) yyvsp[0].lval);
[all...]
H A Dfindvar.c264 enum lval_type lval; local
271 frame_register (frame, regnum, &optim, &lval, &addr, &realnum, raw_buffer);
287 VALUE_LVAL (reg_val) = lval;
664 enum lval_type lval;
666 frame_register (frame, local_regnum, &optim, &lval, &addr,
677 if (lval == lval_register)
663 enum lval_type lval; local
/openbsd-current/usr.bin/snmp/
H A Dsnmpc.c789 long long lval; local
807 lval = strtonum(argv[1], 0, UINT32_MAX, &errstr);
810 ts.tv_sec = lval / 100;
811 ts.tv_nsec = (lval % 100) * 10000000;
1393 long long lval; local
1417 lval = strtoll(tmpstr, &endstr, 10);
1426 if (lval < 0)
1429 byte = lval / 8;
1436 str[byte] |= 0x80 >> (lval % 8);
1445 lval
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dhv.h518 #define hv_fetch_ent(hv, keysv, lval, hash) \
520 ((lval) ? HV_FETCH_LVALUE : 0), NULL, (hash)))
540 #define hv_fetch(hv, key, klen, lval) \
541 ((SV**) hv_common_key_len((hv), (key), (klen), (lval) \
555 #define hv_fetchs(hv, key, lval) \
556 hv_fetch((hv), ASSERT_IS_LITERAL(key), (sizeof(key)-1), (lval))
571 # define hv_fetchhek(hv, hek, lval) \
574 (lval) \

Completed in 333 milliseconds

1234