Searched refs:cst (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_aqm_codel.h86 struct codel_status *cst; local
92 cst = q->aqm_status;
96 cst->first_above_time= 0;
116 if (sojourn_time < cprms->target || q->ni.len_bytes <= cst->maxpkt_size) {
118 cst->first_above_time = 0;
120 if (cst->first_above_time == 0) {
123 cst->first_above_time = now + cprms->interval;
124 } else if (now >= cst->first_above_time) {
139 struct codel_status *cst; local
143 cst
[all...]
H A Ddn_sched_fq_codel_helper.h65 q->cst.first_above_time= 0;
83 if (sojourn_time < schk->cfg.ccfg.target || q->stats.len_bytes <= q->cst.maxpkt_size) {
85 q->cst.first_above_time = 0;
87 if (q->cst.first_above_time == 0) {
90 q->cst.first_above_time = now + schk->cfg.ccfg.interval;
91 } else if (now >= q->cst.first_above_time) {
104 struct codel_status *cst; local
109 cst = &q->cst;
115 if (cst
[all...]
H A Ddn_aqm_codel.c140 control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms, argument
145 count = cst->count;
150 cst->isqrt = (1UL<< FIX_POINT_BITS) * 7/10;
163 temp = (uint32_t) cst->isqrt * cst->isqrt;
176 temp = (cst->isqrt * temp) >> (FIX_POINT_BITS + FIX_POINT_BITS - 8);
177 cst->isqrt = temp;
225 struct codel_status *cst; /*codel status variables */ local
230 cst = q->aqm_status;
231 if(!cst) {
289 struct codel_status *cst; local
[all...]
H A Ddn_sched_fq_codel.h66 struct codel_status cst; member in struct:fq_codel_flow
H A Ddn_sched_fq_codel.c180 if (len > q->cst.maxpkt_size)
181 q->cst.maxpkt_size = len;
319 si->flows[idx].cst.dropping = false;
320 si->flows[idx].cst.first_above_time = 0;
473 si->flows[i].cst.maxpkt_size = 500;
/freebsd-11-stable/contrib/gcc/cp/
H A Dexpr.c41 cplus_expand_constant (tree cst) argument
43 switch (TREE_CODE (cst))
47 tree type = TREE_TYPE (cst);
51 member = PTRMEM_CST_MEMBER (cst);
56 cst = byte_position (member);
65 cst = size_binop (PLUS_EXPR, cst, byte_position (member));
67 cst = fold (build_nop (type, cst));
74 expand_ptrmemfunc_cst (cst,
[all...]
H A Dmangle.c1228 write_integer_cst (const tree cst) argument
1230 int sign = tree_int_cst_sgn (cst);
1232 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1256 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1259 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1286 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
/freebsd-11-stable/contrib/gcc/
H A Ddouble-int.c59 double_int_ext (double_int cst, unsigned prec, bool uns) argument
62 return double_int_zext (cst, prec);
64 return double_int_sext (cst, prec);
70 double_int_zext (double_int cst, unsigned prec) argument
75 r.low = cst.low & mask.low;
76 r.high = cst.high & mask.high;
84 double_int_sext (double_int cst, unsigned prec) argument
91 snum = cst.low;
95 snum = (unsigned HOST_WIDE_INT) cst.high;
99 r.low = cst
116 tree_to_double_int(tree cst) argument
126 double_int_fits_in_uhwi_p(double_int cst) argument
134 double_int_fits_in_shwi_p(double_int cst) argument
148 double_int_fits_in_hwi_p(double_int cst, bool uns) argument
160 double_int_to_shwi(double_int cst) argument
169 double_int_to_uhwi(double_int cst) argument
296 double_int_to_tree(tree type, double_int cst) argument
307 double_int_negative_p(double_int cst) argument
363 double_int_split_digit(double_int *cst, unsigned base) argument
380 dump_double_int(FILE *file, double_int cst, bool uns) argument
[all...]
H A Ddouble-int.h67 shwi_to_double_int (HOST_WIDE_INT cst) argument
71 r.low = (unsigned HOST_WIDE_INT) cst;
72 r.high = cst < 0 ? -1 : 0;
89 uhwi_to_double_int (unsigned HOST_WIDE_INT cst)
93 r.low = cst;
146 double_int_zero_p (double_int cst)
148 return cst.low == 0 && cst.high == 0;
154 double_int_one_p (double_int cst)
156 return cst
[all...]
H A Dtree-object-size.c839 tree cst, basevar; local
844 cst = op1;
849 cst = op0;
852 gcc_assert (TREE_CODE (cst) == INTEGER_CST);
855 depth + !integer_zerop (cst));
915 tree cst, basevar; local
920 cst = op1;
925 cst = op0;
928 gcc_assert (TREE_CODE (cst) == INTEGER_CST);
930 if (integer_zerop (cst))
[all...]
H A Dtree-chrec.c50 is_not_constant_evolution (tree cst)
52 return (TREE_CODE (cst) == POLYNOMIAL_CHREC);
61 tree cst)
64 gcc_assert (cst);
66 gcc_assert (!is_not_constant_evolution (cst));
74 chrec_fold_plus (type, CHREC_LEFT (poly), cst),
80 chrec_fold_minus (type, CHREC_LEFT (poly), cst),
86 chrec_fold_multiply (type, CHREC_LEFT (poly), cst),
87 chrec_fold_multiply (type, CHREC_RIGHT (poly), cst));
49 is_not_constant_evolution(tree cst) argument
57 chrec_fold_poly_cst(enum tree_code code, tree type, tree poly, tree cst) argument
H A Dtree-ssa-loop-niter.c1559 double_int bnd, max, mmax, cst; local
1612 cst = tree_to_double_int (op1);
1613 cst = double_int_sext (cst, TYPE_PRECISION (type));
1615 cst = double_int_neg (cst);
1619 if (double_int_negative_p (cst))
1621 cst = double_int_neg (cst);
1623 if (double_int_negative_p (cst))
[all...]
H A Dtree-ssa-loop-ivopts.c2560 /* If we can prove that TOP = cst * BOT for some constant cst,
2561 store cst to MUL and return true. Otherwise return false.
2629 unsigned HOST_WIDE_INT cst)
2638 comb->offset = cst & comb->mask;
2807 tree cst, core, toffset; local
2831 cst = TREE_OPERAND (expr, 1);
2832 if (TREE_CODE (cst) != INTEGER_CST)
2835 aff_combination_scale (comb, int_cst_value (cst));
3254 HOST_WIDE_INT cst; /* Th member in struct:mbc_entry
2628 aff_combination_const(struct affine_tree_combination *comb, tree type, unsigned HOST_WIDE_INT cst) argument
3284 multiply_by_cost(HOST_WIDE_INT cst, enum machine_mode mode) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dstatus.c86 svn_client_status_t *cst;
113 SVN_ERR(svn_client__create_status(&cst, sb->wc_ctx, local_abspath, status,
117 return sb->real_status_func(sb->real_status_baton, path, cst,
770 svn_client__create_status(svn_client_status_t **cst,
777 *cst = apr_pcalloc(result_pool, sizeof(**cst));
779 (*cst)->kind = status->kind;
780 (*cst)->local_abspath = local_abspath;
781 (*cst)->filesize = status->filesize;
782 (*cst)
84 svn_client_status_t *cst; local
767 svn_client__create_status(svn_client_status_t **cst, svn_wc_context_t *wc_ctx, const char *local_abspath, const svn_wc_status3_t *status, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
H A Dshelf2.c783 svn_client_status_t *cst; local
785 SVN_ERR(svn_client__create_status(&cst, wb->ctx->wc_ctx, local_abspath,
789 wc_relpath, cst, scratch_pool));
806 svn_client_status_t *cst; local
808 SVN_ERR(svn_client__create_status(&cst, wb->ctx->wc_ctx, local_abspath,
812 wc_relpath, cst, scratch_pool));
/freebsd-11-stable/sys/dev/sound/pci/
H A Dhdspe.h175 bus_space_tag_t cst; member in struct:sc_info
194 bus_space_read_1((sc)->cst, (sc)->csh, (regno))
196 bus_space_read_2((sc)->cst, (sc)->csh, (regno))
198 bus_space_read_4((sc)->cst, (sc)->csh, (regno))
201 bus_space_write_1((sc)->cst, (sc)->csh, (regno), (data))
203 bus_space_write_2((sc)->cst, (sc)->csh, (regno), (data))
205 bus_space_write_4((sc)->cst, (sc)->csh, (regno), (data))
H A Denvy24.c124 bus_space_tag_t cst; member in struct:sc_info
408 return bus_space_read_1(sc->cst, sc->csh, regno);
410 return bus_space_read_2(sc->cst, sc->csh, regno);
412 return bus_space_read_4(sc->cst, sc->csh, regno);
423 bus_space_write_1(sc->cst, sc->csh, regno, data);
426 bus_space_write_2(sc->cst, sc->csh, regno, data);
429 bus_space_write_4(sc->cst, sc->csh, regno, data);
2500 sc->cst = rman_get_bustag(sc->cs);
H A Denvy24ht.c133 bus_space_tag_t cst; member in struct:sc_info
461 return bus_space_read_1(sc->cst, sc->csh, regno);
463 return bus_space_read_2(sc->cst, sc->csh, regno);
465 return bus_space_read_4(sc->cst, sc->csh, regno);
476 bus_space_write_1(sc->cst, sc->csh, regno, data);
479 bus_space_write_2(sc->cst, sc->csh, regno, data);
482 bus_space_write_4(sc->cst, sc->csh, regno, data);
2412 sc->cst = rman_get_bustag(sc->cs);
/freebsd-11-stable/crypto/openssl/crypto/ocsp/
H A Docsp_prn.c193 OCSP_CERTSTATUS *cst = NULL; local
247 cst = single->certStatus;
249 OCSP_cert_status_str(cst->type)) <= 0)
251 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) {
252 rev = cst->value.revoked;
H A Docsp_cl.c276 OCSP_CERTSTATUS *cst; local
279 cst = single->certStatus;
280 ret = cst->type;
282 OCSP_REVOKEDINFO *rev = cst->value.revoked;
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_dec.c85 char *inf, char *cst,
184 char seq_eoc, seq_nolen, cst, isopt; local
402 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst,
416 if (!cst) {
580 char cst; local
585 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst,
593 if (!cst) {
760 char cst, inf, free_cont = 0; local
804 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
823 else if (!cst) {
1098 char cst, ininf; local
1187 asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst, const unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx) argument
[all...]
/freebsd-11-stable/contrib/bmake/
H A Ddir.c274 struct cache_st *cst; local
276 cst = entry->clientPtr;
277 return cst->mtime;
287 struct cache_st *cst; local
296 cst = entry->clientPtr;
299 st->st_mtime = cst->mtime;
300 st->st_mode = cst->mode;
314 entry->clientPtr = bmake_malloc(sizeof(*cst));
315 cst = entry->clientPtr;
316 cst
[all...]
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_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) |
/freebsd-11-stable/sys/dev/ctau/
H A Dctddk.c885 int cst = B_STATUS (c->rdesc[c->rn]); local
886 if (cst == FST_EOM) {
893 } else if (cst & ST2_OVRN) {
898 } else if (cst & (ST2_HDLC_RBIT |
904 } else if ((cst & ST2_HDLC_EOM)
905 && (cst & ST2_HDLC_CRCE)) {
910 } else if (! (cst & ST2_HDLC_EOM)) {
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_client_private.h243 svn_client__create_status(svn_client_status_t **cst,

Completed in 290 milliseconds

12