Home
last modified time | relevance | path

Searched refs:cst (Results 1 – 25 of 56) sorted by relevance

123

/openbsd/gnu/gcc/gcc/
H A Ddouble-int.c91 snum = cst.low; in double_int_sext()
128 return cst.high == 0; in double_int_fits_in_uhwi_p()
136 if (cst.high == 0) in double_int_fits_in_shwi_p()
171 return cst.low; in double_int_to_uhwi()
298 cst = double_int_ext (cst, TYPE_PRECISION (type), TYPE_UNSIGNED (type)); in double_int_to_tree()
300 return build_int_cst_wide (type, cst.low, cst.high); in double_int_to_tree()
309 return cst.high < 0; in double_int_negative_p()
368 div_and_round_double (FLOOR_DIV_EXPR, true, cst->low, cst->high, base, 0, in double_int_split_digit()
370 cst->high = resh; in double_int_split_digit()
371 cst->low = resl; in double_int_split_digit()
[all …]
H A Ddouble-int.h67 shwi_to_double_int (HOST_WIDE_INT cst) in shwi_to_double_int() argument
71 r.low = (unsigned HOST_WIDE_INT) cst; in shwi_to_double_int()
72 r.high = cst < 0 ? -1 : 0; in shwi_to_double_int()
89 uhwi_to_double_int (unsigned HOST_WIDE_INT cst) in uhwi_to_double_int() argument
93 r.low = cst; in uhwi_to_double_int()
146 double_int_zero_p (double_int cst) in double_int_zero_p() argument
148 return cst.low == 0 && cst.high == 0; in double_int_zero_p()
154 double_int_one_p (double_int cst) in double_int_one_p() argument
156 return cst.low == 1 && cst.high == 0; in double_int_one_p()
162 double_int_minus_one_p (double_int cst) in double_int_minus_one_p() argument
[all …]
H A Dtree-object-size.c839 tree cst, basevar; in check_for_plus_in_loops_1() local
844 cst = op1; in check_for_plus_in_loops_1()
849 cst = op0; in check_for_plus_in_loops_1()
852 gcc_assert (TREE_CODE (cst) == INTEGER_CST); in check_for_plus_in_loops_1()
855 depth + !integer_zerop (cst)); in check_for_plus_in_loops_1()
915 tree cst, basevar; in check_for_plus_in_loops() local
920 cst = op1; in check_for_plus_in_loops()
925 cst = op0; in check_for_plus_in_loops()
928 gcc_assert (TREE_CODE (cst) == INTEGER_CST); in check_for_plus_in_loops()
930 if (integer_zerop (cst)) in check_for_plus_in_loops()
H A Dtree-chrec.c49 is_not_constant_evolution (tree cst) in is_not_constant_evolution() argument
51 return (TREE_CODE (cst) == POLYNOMIAL_CHREC); in is_not_constant_evolution()
60 tree cst) in chrec_fold_poly_cst() argument
63 gcc_assert (cst); in chrec_fold_poly_cst()
65 gcc_assert (!is_not_constant_evolution (cst)); in chrec_fold_poly_cst()
73 chrec_fold_plus (type, CHREC_LEFT (poly), cst), in chrec_fold_poly_cst()
79 chrec_fold_minus (type, CHREC_LEFT (poly), cst), in chrec_fold_poly_cst()
85 chrec_fold_multiply (type, CHREC_LEFT (poly), cst), in chrec_fold_poly_cst()
86 chrec_fold_multiply (type, CHREC_RIGHT (poly), cst)); in chrec_fold_poly_cst()
H A Dtree-ssa-loop-niter.c1559 double_int bnd, max, mmax, cst; in derive_constant_upper_bound() local
1612 cst = tree_to_double_int (op1); in derive_constant_upper_bound()
1613 cst = double_int_sext (cst, TYPE_PRECISION (type)); in derive_constant_upper_bound()
1615 cst = double_int_neg (cst); in derive_constant_upper_bound()
1619 if (double_int_negative_p (cst)) in derive_constant_upper_bound()
1621 cst = double_int_neg (cst); in derive_constant_upper_bound()
1623 if (double_int_negative_p (cst)) in derive_constant_upper_bound()
1633 return double_int_add (bnd, cst); in derive_constant_upper_bound()
1650 if (double_int_ucmp (bnd, cst) < 0) in derive_constant_upper_bound()
1655 op0, double_int_to_tree (type, cst))) in derive_constant_upper_bound()
[all …]
H A Dtreestruct.def32 DEFTREESTRUCT(TS_INT_CST, "integer cst")
33 DEFTREESTRUCT(TS_REAL_CST, "real cst")
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Dh8300-dis.c105 int *cst, *len;
127 *cst *= 2;
130 *cst *= 4;
140 *cst *= 2;
143 *cst *= 4;
159 *cst = (short) *cst; /* sign extend */
168 *cst = 0;
290 outfn (stream, "@@%d (0x%x)", cst, cst);
307 (short) cst,
314 (char) cst,
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dh8300-dis.c92 int *cst, in extract_immediate() argument
116 *cst *= 2; in extract_immediate()
119 *cst *= 4; in extract_immediate()
130 *cst *= 2; in extract_immediate()
133 *cst *= 4; in extract_immediate()
149 *cst = (short) *cst; /* Sign extend. */ in extract_immediate()
158 *cst = 0; in extract_immediate()
188 int cst, in print_one_arg() argument
267 outfn (stream, "@@%d (0x%x)", cst, cst); in print_one_arg()
291 (char) cst, in print_one_arg()
[all …]
/openbsd/gnu/gcc/gcc/cp/
H A Dexpr.c41 cplus_expand_constant (tree cst) in cplus_expand_constant() argument
43 switch (TREE_CODE (cst)) in cplus_expand_constant()
47 tree type = TREE_TYPE (cst); in cplus_expand_constant()
51 member = PTRMEM_CST_MEMBER (cst); in cplus_expand_constant()
56 cst = byte_position (member); in cplus_expand_constant()
65 cst = size_binop (PLUS_EXPR, cst, byte_position (member)); in cplus_expand_constant()
67 cst = fold (build_nop (type, cst)); in cplus_expand_constant()
74 expand_ptrmemfunc_cst (cst, &delta, &pfn); in cplus_expand_constant()
75 cst = build_ptrmemfunc1 (type, delta, pfn); in cplus_expand_constant()
85 return cst; in cplus_expand_constant()
/openbsd/gnu/usr.bin/gcc/gcc/cp/
H A Dexpr.c39 cplus_expand_constant (cst) in cplus_expand_constant() argument
40 tree cst; in cplus_expand_constant()
42 switch (TREE_CODE (cst))
46 tree type = TREE_TYPE (cst);
50 member = PTRMEM_CST_MEMBER (cst);
56 cst = fold (build1 (NOP_EXPR, type, offset));
63 expand_ptrmemfunc_cst (cst, &delta, &pfn);
64 cst = build_ptrmemfunc1 (type, delta, pfn);
74 return cst;
H A Dmangle.c1120 write_integer_cst (cst) in write_integer_cst() argument
1121 tree cst; in write_integer_cst()
1123 int sign = tree_int_cst_sgn (cst);
1125 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1149 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1151 n = build_int_2 (TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1179 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
/openbsd/sbin/isakmpd/
H A Disakmp_fld.fld39 NEXT_PAYLOAD cst 1 isakmp_payload_cst
41 EXCH_TYPE cst 1 ike_exch_cst,isakmp_exch_cst
49 NEXT_PAYLOAD cst 1 isakmp_payload_cst
70 PROTO cst 1 isakmp_proto_cst,ipsec_proto_cst
98 ENCODING cst 1 isakmp_certenc_cst
104 TYPE cst 1 isakmp_certenc_cst
125 DOI cst 4 isakmp_doi_cst,ipsec_doi_cst
126 PROTO cst 1 isakmp_proto_cst
128 MSG_TYPE cst 2 isakmp_notify_cst,ipsec_notify_cst
134 DOI cst 4 isakmp_doi_cst,ipsec_doi_cst
[all …]
H A Dgenconstants.sh77 ' <$1.cst >$base.h
112 ' <$1.cst >$base.c
H A DMakefile69 exchange_num.c exchange_num.h: genconstants.sh exchange_num.cst
75 ipsec_num.c ipsec_num.h: genconstants.sh ipsec_num.cst
81 isakmp_num.c isakmp_num.h: genconstants.sh isakmp_num.cst
H A Dexchange_num.cst1 # $OpenBSD: exchange_num.cst,v 1.5 2006/06/02 19:35:55 hshoexer Exp $
2 # $EOM: exchange_num.cst,v 1.1 1998/08/05 09:23:32 niklas Exp $
H A Dfield.h42 raw, num, mask, ign, cst enumerator
H A DDESIGN-NOTES45 exchange_num.cst
49 Generate constant files from .cst source.
65 ipsec_num.cst Constants defined by the IPsec DOI.
68 isakmp_num.cst ISAKMP constants.
295 FIELD_E cst 2 group_e1_cst,group_e2_cst
305 The type fields can be: raw, num, mask, ign & cst. Raw are used for
309 (also 1, 2 or 4). Ign is just a filler type, ot padding and lastly cst
H A Dipsec_num.cst1 # $OpenBSD: ipsec_num.cst,v 1.21 2021/10/22 12:30:54 bluhm Exp $
2 # $EOM: ipsec_num.cst,v 1.5 2000/10/13 17:56:52 angelos Exp $
H A Disakmp_num.cst1 # $OpenBSD: isakmp_num.cst,v 1.13 2005/06/25 23:03:38 hshoexer Exp $
2 # $EOM: isakmp_num.cst,v 1.3 2000/05/17 03:09:50 angelos Exp $
/openbsd/regress/lib/libssl/ciphers/
H A Dcipherstest.c1121 struct cipher_set_test *cst; in cipher_set_test() local
1131 cst = &cipher_set_tests[i]; in cipher_set_test()
1135 cst->cids[1] = TLS1_3_CK_AES_256_GCM_SHA384; in cipher_set_test()
1141 if (cst->ctx_ciphersuites_first && cst->ctx_ciphersuites != NULL) { in cipher_set_test()
1145 if (cst->ctx_rulestr != NULL) { in cipher_set_test()
1149 if (!cst->ctx_ciphersuites_first && cst->ctx_ciphersuites != NULL) { in cipher_set_test()
1159 if (cst->ssl_ciphersuites_first && cst->ssl_ciphersuites != NULL) { in cipher_set_test()
1163 if (cst->ssl_rulestr != NULL) { in cipher_set_test()
1167 if (!cst->ssl_ciphersuites_first && cst->ssl_ciphersuites != NULL) { in cipher_set_test()
1180 SSL_CIPHER_get_id(cipher), cst->cids[j]); in cipher_set_test()
[all …]
/openbsd/lib/libcrypto/ocsp/
H A Docsp_prn.c213 OCSP_CERTSTATUS *cst = NULL; in OCSP_RESPONSE_print() local
268 cst = single->certStatus; in OCSP_RESPONSE_print()
270 OCSP_cert_status_str(cst->type)) <= 0) in OCSP_RESPONSE_print()
272 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) { in OCSP_RESPONSE_print()
273 rev = cst->value.revoked; in OCSP_RESPONSE_print()
H A Docsp_cl.c338 OCSP_CERTSTATUS *cst; in OCSP_single_get0_status() local
342 cst = single->certStatus; in OCSP_single_get0_status()
343 ret = cst->type; in OCSP_single_get0_status()
345 OCSP_REVOKEDINFO *rev = cst->value.revoked; in OCSP_single_get0_status()
/openbsd/gnu/usr.bin/perl/dist/PathTools/
H A DCwd.pm373 my($dotdots, $cwd, @pst, @cst, $dir, @tst);
375 unless (@cst = stat( $start ))
407 @pst = @cst;
413 unless (@cst = stat($dotdots))
420 if ($pst[0] == $cst[0] && $pst[1] eq $cst[1])
/openbsd/sys/arch/hppa/include/
H A Dpdc.h429 u_int cst : 3; member
435 #define ia_cst ia.cst
437 #define da_cst da.cst
439 #define ita_cst ita.cst
441 #define dta_cst dta.cst
/openbsd/gnu/usr.bin/gcc/gcc/config/avr/
H A Davr.h1561 int cst = default_rtx_costs (x, code, outer_code); \
1562 if (cst>0) \
1563 return cst; \
1564 else if (cst<0) \
1565 total += -cst; \

123