Home
last modified time | relevance | path

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

12

/NextBSD/contrib/gcc/
HDdouble-int.c59 double_int_ext (double_int cst, unsigned prec, bool uns) in double_int_ext() argument
62 return double_int_zext (cst, prec); in double_int_ext()
64 return double_int_sext (cst, prec); in double_int_ext()
70 double_int_zext (double_int cst, unsigned prec) in double_int_zext() argument
75 r.low = cst.low & mask.low; in double_int_zext()
76 r.high = cst.high & mask.high; in double_int_zext()
84 double_int_sext (double_int cst, unsigned prec) in double_int_sext() argument
91 snum = cst.low; in double_int_sext()
95 snum = (unsigned HOST_WIDE_INT) cst.high; in double_int_sext()
99 r.low = cst.low | ~mask.low; in double_int_sext()
[all …]
HDdouble-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 …]
HDtree-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()
HDtree-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()
HDtree-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()
1629 mmax = double_int_add (max, double_int_neg (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()
[all …]
HDtreestruct.def32 DEFTREESTRUCT(TS_INT_CST, "integer cst")
33 DEFTREESTRUCT(TS_REAL_CST, "real cst")
HDtree-ssa-loop-ivopts.c2629 unsigned HOST_WIDE_INT cst) in aff_combination_const() argument
2638 comb->offset = cst & comb->mask; in aff_combination_const()
2807 tree cst, core, toffset; in tree_to_aff_combination() local
2831 cst = TREE_OPERAND (expr, 1); in tree_to_aff_combination()
2832 if (TREE_CODE (cst) != INTEGER_CST) in tree_to_aff_combination()
2835 aff_combination_scale (comb, int_cst_value (cst)); in tree_to_aff_combination()
3254 HOST_WIDE_INT cst; /* The constant to multiply by. */ member
3266 return 57 * (hashval_t) e->mode + (hashval_t) (e->cst % 877); in mbc_entry_hash()
3278 && e1->cst == e2->cst); in mbc_entry_eq()
3284 multiply_by_cost (HOST_WIDE_INT cst, enum machine_mode mode) in multiply_by_cost() argument
[all …]
HDc-pretty-print.c1209 const bool cst = TREE_CODE (e) == COMPLEX_CST; in pp_c_initializer_list() local
1210 pp_expression (pp, cst ? TREE_REALPART (e) : TREE_OPERAND (e, 0)); in pp_c_initializer_list()
1212 pp_expression (pp, cst ? TREE_IMAGPART (e) : TREE_OPERAND (e, 1)); in pp_c_initializer_list()
HDdbxout.c687 stabstr_O (tree cst) in stabstr_O() argument
689 unsigned HOST_WIDE_INT high = TREE_INT_CST_HIGH (cst); in stabstr_O()
690 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst); in stabstr_O()
699 const unsigned int width = TYPE_PRECISION (TREE_TYPE (cst)); in stabstr_O()
HDloop-iv.c361 iv_constant (struct rtx_iv *iv, rtx cst, enum machine_mode mode) in iv_constant() argument
364 mode = GET_MODE (cst); in iv_constant()
367 iv->base = cst; in iv_constant()
/NextBSD/contrib/subversion/subversion/libsvn_client/
HDstatus.c80 svn_client_status_t *cst; in tweak_status() local
107 SVN_ERR(svn_client__create_status(&cst, sb->wc_ctx, local_abspath, status, in tweak_status()
111 return sb->real_status_func(sb->real_status_baton, path, cst, in tweak_status()
687 svn_client__create_status(svn_client_status_t **cst, in svn_client__create_status() argument
694 *cst = apr_pcalloc(result_pool, sizeof(**cst)); in svn_client__create_status()
696 (*cst)->kind = status->kind; in svn_client__create_status()
697 (*cst)->local_abspath = local_abspath; in svn_client__create_status()
698 (*cst)->filesize = status->filesize; in svn_client__create_status()
699 (*cst)->versioned = status->versioned; in svn_client__create_status()
701 (*cst)->conflicted = status->conflicted; in svn_client__create_status()
[all …]
/NextBSD/contrib/gcc/cp/
HDexpr.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()
HDmangle.c1228 write_integer_cst (const tree cst) in write_integer_cst() argument
1230 int sign = tree_int_cst_sgn (cst); in write_integer_cst()
1232 if (TREE_INT_CST_HIGH (cst) + (sign < 0)) in write_integer_cst()
1256 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst)); in write_integer_cst()
1259 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst)); in write_integer_cst()
1286 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst); in write_integer_cst()
/NextBSD/sys/dev/sound/pci/
HDhdspe.h149 bus_space_tag_t cst; member
168 bus_space_read_1((sc)->cst, (sc)->csh, (regno))
170 bus_space_read_2((sc)->cst, (sc)->csh, (regno))
172 bus_space_read_4((sc)->cst, (sc)->csh, (regno))
175 bus_space_write_1((sc)->cst, (sc)->csh, (regno), (data))
177 bus_space_write_2((sc)->cst, (sc)->csh, (regno), (data))
179 bus_space_write_4((sc)->cst, (sc)->csh, (regno), (data))
HDenvy24.c124 bus_space_tag_t cst; member
408 return bus_space_read_1(sc->cst, sc->csh, regno); in envy24_rdcs()
410 return bus_space_read_2(sc->cst, sc->csh, regno); in envy24_rdcs()
412 return bus_space_read_4(sc->cst, sc->csh, regno); in envy24_rdcs()
423 bus_space_write_1(sc->cst, sc->csh, regno, data); in envy24_wrcs()
426 bus_space_write_2(sc->cst, sc->csh, regno, data); in envy24_wrcs()
429 bus_space_write_4(sc->cst, sc->csh, regno, data); in envy24_wrcs()
2500 sc->cst = rman_get_bustag(sc->cs); in envy24_alloc_resource()
HDenvy24ht.c133 bus_space_tag_t cst; member
461 return bus_space_read_1(sc->cst, sc->csh, regno); in envy24ht_rdcs()
463 return bus_space_read_2(sc->cst, sc->csh, regno); in envy24ht_rdcs()
465 return bus_space_read_4(sc->cst, sc->csh, regno); in envy24ht_rdcs()
476 bus_space_write_1(sc->cst, sc->csh, regno, data); in envy24ht_wrcs()
479 bus_space_write_2(sc->cst, sc->csh, regno, data); in envy24ht_wrcs()
482 bus_space_write_4(sc->cst, sc->csh, regno, data); in envy24ht_wrcs()
2412 sc->cst = rman_get_bustag(sc->cs); in envy24ht_alloc_resource()
HDhdspe.c138 sc->cst = rman_get_bustag(sc->cs); in hdspe_alloc_resources()
/NextBSD/crypto/openssl/crypto/asn1/
HDtasn_dec.c77 char *inf, char *cst,
177 char seq_eoc, seq_nolen, cst, isopt; in ASN1_item_ex_d2i() local
371 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst, in ASN1_item_ex_d2i()
385 if (!cst) { in ASN1_item_ex_d2i()
539 char cst; in asn1_template_ex_d2i() local
544 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst, in asn1_template_ex_d2i()
552 if (!cst) { in asn1_template_ex_d2i()
718 char cst, inf, free_cont = 0; in asn1_d2i_ex_primitive() local
762 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst, in asn1_d2i_ex_primitive()
781 else if (!cst) { in asn1_d2i_ex_primitive()
[all …]
/NextBSD/crypto/openssl/crypto/ocsp/
HDocsp_prn.c193 OCSP_CERTSTATUS *cst = NULL; in OCSP_RESPONSE_print() local
247 cst = single->certStatus; in OCSP_RESPONSE_print()
249 OCSP_cert_status_str(cst->type)) <= 0) in OCSP_RESPONSE_print()
251 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) { in OCSP_RESPONSE_print()
252 rev = cst->value.revoked; in OCSP_RESPONSE_print()
HDocsp_cl.c274 OCSP_CERTSTATUS *cst; in OCSP_single_get0_status() local
277 cst = single->certStatus; in OCSP_single_get0_status()
278 ret = cst->type; in OCSP_single_get0_status()
280 OCSP_REVOKEDINFO *rev = cst->value.revoked; in OCSP_single_get0_status()
/NextBSD/sys/dev/nand/
HDnfc_fsl.c635 static u_int cst = 1; /* 23: Command setup time (trlx). */ variable
636 SYSCTL_UINT(_debug_fcm, OID_AUTO, cst, CTLFLAG_RW, &cst, 1,
673 timing = ((csct & 1) << 9) | ((cst & 1) << 8) | ((cht & 1) << 7) | in fsl_nand_get_timing()
/NextBSD/sys/dev/ctau/
HDctddk.c885 int cst = B_STATUS (c->rdesc[c->rn]); in ct_hdlc_interrupt() local
886 if (cst == FST_EOM) { in ct_hdlc_interrupt()
893 } else if (cst & ST2_OVRN) { in ct_hdlc_interrupt()
898 } else if (cst & (ST2_HDLC_RBIT | in ct_hdlc_interrupt()
904 } else if ((cst & ST2_HDLC_EOM) in ct_hdlc_interrupt()
905 && (cst & ST2_HDLC_CRCE)) { in ct_hdlc_interrupt()
910 } else if (! (cst & ST2_HDLC_EOM)) { in ct_hdlc_interrupt()
/NextBSD/contrib/subversion/subversion/include/private/
HDsvn_client_private.h243 svn_client__create_status(svn_client_status_t **cst,
/NextBSD/contrib/gcc/config/rs6000/
HDpredicates.md288 int cst, cst2;
305 cst = INTVAL (CONST_VECTOR_ELT (op, 0));
307 return cst >= -0x7fff && cst <= 0x7fff
/NextBSD/contrib/llvm/lib/Target/CppBackend/
HDCPPBackend.cpp1408 const CastInst* cst = cast<CastInst>(I); in printInstruction() local
1426 << getCppName(cst->getType()) << ", \""; in printInstruction()
1427 printEscapedString(cst->getName()); in printInstruction()

12