Home
last modified time | relevance | path

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

12

/freebsd/sys/netpfil/ipfw/
H A Ddn_sched_fq_codel_helper.h63 q->cst.first_above_time= 0; in fqc_dodequeue()
81 if (sojourn_time < schk->cfg.ccfg.target || q->stats.len_bytes <= q->cst.maxpkt_size) { in fqc_dodequeue()
83 q->cst.first_above_time = 0; in fqc_dodequeue()
85 if (q->cst.first_above_time == 0) { in fqc_dodequeue()
88 q->cst.first_above_time = now + schk->cfg.ccfg.interval; in fqc_dodequeue()
89 } else if (now >= q->cst.first_above_time) { in fqc_dodequeue()
102 struct codel_status *cst; in fqc_codel_dequeue() local
107 cst = &q->cst; in fqc_codel_dequeue()
113 if (cst->dropping) { in fqc_codel_dequeue()
116 cst->dropping = false; in fqc_codel_dequeue()
[all …]
H A Ddn_aqm_codel.h83 struct codel_status *cst; in codel_dodequeue() local
89 cst = q->aqm_status; in codel_dodequeue()
93 cst->first_above_time= 0; in codel_dodequeue()
113 if (sojourn_time < cprms->target || q->ni.len_bytes <= cst->maxpkt_size) { in codel_dodequeue()
115 cst->first_above_time = 0; in codel_dodequeue()
117 if (cst->first_above_time == 0) { in codel_dodequeue()
120 cst->first_above_time = now + cprms->interval; in codel_dodequeue()
121 } else if (now >= cst->first_above_time) { in codel_dodequeue()
136 struct codel_status *cst; in codel_dequeue() local
140 cst = q->aqm_status; in codel_dequeue()
[all …]
H A Ddn_aqm_codel.c141 control_law(struct codel_status *cst, struct dn_aqm_codel_parms *cprms, in control_law() argument
146 count = cst->count; in control_law()
151 cst->isqrt = (1UL<< FIX_POINT_BITS) * 7/10; in control_law()
164 temp = (uint32_t) cst->isqrt * cst->isqrt; in control_law()
177 temp = (cst->isqrt * temp) >> (FIX_POINT_BITS + FIX_POINT_BITS - 8); in control_law()
178 cst->isqrt = temp; in control_law()
232 struct codel_status *cst; /*codel status variables */ in aqm_codel_enqueue() local
237 cst = q->aqm_status; in aqm_codel_enqueue()
238 if(!cst) { in aqm_codel_enqueue()
245 if (len > cst->maxpkt_size) in aqm_codel_enqueue()
[all …]
H A Ddn_sched_fq_codel.c181 if (len > q->cst.maxpkt_size) in codel_enqueue()
182 q->cst.maxpkt_size = len; in codel_enqueue()
319 si->flows[idx].cst.dropping = false; in fq_codel_enqueue()
320 si->flows[idx].cst.first_above_time = 0; in fq_codel_enqueue()
473 si->flows[i].cst.maxpkt_size = 500; in fq_codel_new_sched()
H A Ddn_sched_fq_codel.h64 struct codel_status cst; member
/freebsd/sys/dev/cxgbe/
H A Dt4_sched.c746 alloc_etid(struct adapter *sc, struct cxgbe_rate_tag *cst) in alloc_etid() argument
757 p->cst = cst; in alloc_etid()
769 return (t->etid_tab[etid - t->etid_base].cst); in lookup_etid()
806 struct cxgbe_rate_tag *cst; in cxgbe_rate_tag_alloc() local
816 cst = malloc(sizeof(*cst), M_CXGBE, M_ZERO | M_NOWAIT); in cxgbe_rate_tag_alloc()
817 if (cst == NULL) { in cxgbe_rate_tag_alloc()
823 cst->etid = alloc_etid(sc, cst); in cxgbe_rate_tag_alloc()
861 struct cxgbe_rate_tag *cst = mst_to_crt(mst); cxgbe_rate_tag_modify() local
886 struct cxgbe_rate_tag *cst = mst_to_crt(mst); cxgbe_rate_tag_query() local
901 cxgbe_rate_tag_free_locked(struct cxgbe_rate_tag * cst) cxgbe_rate_tag_free_locked() argument
924 struct cxgbe_rate_tag *cst = mst_to_crt(mst); cxgbe_rate_tag_free() local
[all...]
H A Dt4_sge.c6748 send_etid_flowc_wr(struct cxgbe_rate_tag *cst, struct port_info *pi, in send_etid_flowc_wr() argument
6755 mtx_assert(&cst->lock, MA_OWNED); in send_etid_flowc_wr()
6756 MPASS((cst->flags & (EO_FLOWC_PENDING | EO_FLOWC_RPL_PENDING)) == in send_etid_flowc_wr()
6759 flowc = start_wrq_wr(&cst->eo_txq->wrq, ETID_FLOWC_LEN16, &cookie); in send_etid_flowc_wr()
6767 V_FW_WR_FLOWID(cst->etid)); in send_etid_flowc_wr()
6776 flowc->mnemval[3].val = htobe32(cst->iqid); in send_etid_flowc_wr()
6780 flowc->mnemval[5].val = htobe32(cst->schedcl); in send_etid_flowc_wr()
6782 commit_wrq_wr(&cst->eo_txq->wrq, flowc, &cookie); in send_etid_flowc_wr()
6784 cst->flags &= ~EO_FLOWC_PENDING; in send_etid_flowc_wr()
6785 cst->flags |= EO_FLOWC_RPL_PENDING; in send_etid_flowc_wr()
[all …]
H A Doffload.h107 struct cxgbe_rate_tag *cst; member
/freebsd/contrib/bmake/
H A Ddir.c406 struct cached_stat *cst; in cached_stats() local
412 cst = HashTable_FindValue(tbl, pathname); in cached_stats()
413 if (cst != NULL && !forceRefresh) { in cached_stats()
414 *out_cst = *cst; in cached_stats()
416 Targ_FmtTime(cst->cst_mtime), pathname); in cached_stats()
427 if (cst == NULL) { in cached_stats()
428 cst = bmake_malloc(sizeof *cst); in cached_stats()
429 HashTable_Set(tbl, pathname, cst); in cached_stats()
432 cst->cst_mtime = sys_st.st_mtime; in cached_stats()
433 cst->cst_mode = sys_st.st_mode; in cached_stats()
[all …]
H A Dmeta.c370 struct cached_stat cst; in meta_needed() local
410 if (cached_stat(dname, &cst) != 0) { in meta_needed()
1095 struct cached_stat cst; in meta_oodate() local
1356 if ((link_src != NULL && cached_lstat(p, &cst) < 0) || in meta_oodate()
1357 (link_src == NULL && cached_stat(p, &cst) < 0)) { in meta_oodate()
1417 if (cached_stat(*sdp, &cst) == 0) { in meta_oodate()
1427 if (!S_ISDIR(cst.cst_mode) && in meta_oodate()
1428 cst.cst_mtime > gn->mtime) { in meta_oodate()
1432 } else if (S_ISDIR(cst.cst_mode)) { in meta_oodate()
/freebsd/sys/dev/sound/pci/
H A Dhdspe.h226 bus_space_tag_t cst; member
247 bus_space_read_1((sc)->cst, (sc)->csh, (regno))
249 bus_space_read_2((sc)->cst, (sc)->csh, (regno))
251 bus_space_read_4((sc)->cst, (sc)->csh, (regno))
254 bus_space_write_1((sc)->cst, (sc)->csh, (regno), (data))
256 bus_space_write_2((sc)->cst, (sc)->csh, (regno), (data))
258 bus_space_write_4((sc)->cst, (sc)->csh, (regno), (data))
H A Dhdsp.h234 bus_space_tag_t cst; member
255 bus_space_read_1((sc)->cst, (sc)->csh, (regno))
257 bus_space_read_2((sc)->cst, (sc)->csh, (regno))
259 bus_space_read_4((sc)->cst, (sc)->csh, (regno))
262 bus_space_write_1((sc)->cst, (sc)->csh, (regno), (data))
264 bus_space_write_2((sc)->cst, (sc)->csh, (regno), (data))
266 bus_space_write_4((sc)->cst, (sc)->csh, (regno), (data))
H A Denvy24.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()
2489 sc->cst = rman_get_bustag(sc->cs); in envy24_alloc_resource()
H A Denvy24ht.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()
2399 sc->cst = rman_get_bustag(sc->cs); in envy24ht_alloc_resource()
H A Dhdspe.c164 sc->cst = rman_get_bustag(sc->cs); in hdspe_alloc_resources()
H A Dhdsp.c154 sc->cst = rman_get_bustag(sc->cs); in hdsp_alloc_resources()
/freebsd/crypto/openssl/crypto/asn1/
H A Dtasn_dec.c38 char *inf, char *cst,
200 char seq_eoc, seq_nolen, cst, isopt; in asn1_item_embed_d2i() local
372 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst, in asn1_item_embed_d2i()
386 if (!cst) { in asn1_item_embed_d2i()
542 char cst; in asn1_template_ex_d2i() local
547 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst, in asn1_template_ex_d2i()
555 if (!cst) { in asn1_template_ex_d2i()
732 char cst, inf, free_cont = 0; in asn1_d2i_ex_primitive() local
776 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst, in asn1_d2i_ex_primitive()
795 else if (!cst) { in asn1_d2i_ex_primitive()
1078 char cst, ininf; asn1_collect() local
1169 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) asn1_check_tlen() argument
[all...]
/freebsd/crypto/openssl/crypto/ocsp/
H A Docsp_prn.c142 OCSP_CERTSTATUS *cst = NULL; in OCSP_RESPONSE_print() local
197 cst = single->certStatus; in OCSP_RESPONSE_print()
199 OCSP_cert_status_str(cst->type)) in OCSP_RESPONSE_print()
202 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) { in OCSP_RESPONSE_print()
203 rev = cst->value.revoked; in OCSP_RESPONSE_print()
H A Docsp_cl.c254 OCSP_CERTSTATUS *cst; in OCSP_single_get0_status() local
258 cst = single->certStatus; in OCSP_single_get0_status()
259 ret = cst->type; in OCSP_single_get0_status()
261 OCSP_REVOKEDINFO *rev = cst->value.revoked; in OCSP_single_get0_status()
/freebsd/contrib/lib9p/backend/
H A Dfs.c817 struct l9p_acl *cacl, struct stat *cst, in check_access() argument
834 args.aca_cstat = cst; in check_access()
1729 struct stat pst, cst; in fs_remove() local
1741 if (fstatat(file->ff_dirfd, file->ff_name, &cst, AT_SYMLINK_NOFOLLOW) != 0) in fs_remove()
1748 parent_acl, &pst, file->ff_acl, &cst, file->ff_ai, (gid_t)-1); in fs_remove()
1754 S_ISDIR(cst.st_mode) ? AT_REMOVEDIR : 0) != 0) in fs_remove()
2293 struct stat cst, opst, npst; in fs_rename() local
2328 if (fstatat(file->ff_dirfd, file->ff_name, &cst, in fs_rename()
2339 oparent_acl, &opst, file->ff_acl, &cst, ai, (gid_t)-1); in fs_rename()
2355 op = S_ISDIR(cst.st_mode) ? L9P_ACE_ADD_SUBDIRECTORY : L9P_ACE_ADD_FILE; in fs_rename()
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td667 // Fold fp_op(cst) to the constant result of the floating point operation.
670 (match (opcode $dst, $src0):$root, (G_FCONSTANT $src0, $cst)),
671 (apply [{ Helper.applyCombineConstantFoldFpUnary(*${root}, ${cst}.getFPImm()); }])
853 // Fold (unmerge cst) -> cst1, cst2, ...
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFeatures.td1681 def FeatureNoTrailingSeqCstFence : SubtargetFeature<"no-trailing-seq-cst-fence",
1684 "Disable trailing fence for seq-cst store.">;
/freebsd/usr.sbin/cron/doc/
H A DMAIL92 Date: Fri, 2 Jan 87 09:23:53 cst
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td11097 string asm, string operands, string cst,
11099 : I<oops, iops, asm, operands, cst, pattern> {
11112 string asm, string operands, string cst,
11114 : I<oops, iops, asm, operands, "$Vt = $dst," # cst, pattern> {
12069 class BaseCryptoV82<dag oops, dag iops, string asm, string asmops, string cst,
12071 : I <oops, iops, asm, asmops, cst, pattern>, Sched<[WriteVq]> {
12095 string asmops, string cst>
12096 : BaseCryptoV82<oops, iops, asm , asmops, cst, []> {
12842 class LRCPC3NEONLdStSingle<bit L, dag oops, dag iops, string asm, string cst>
12844 "\t$Vt$Q, [$Rn]", cst, oops, iops, []>,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DARM.cpp6598 llvm::Constant *cst = cast<Constant>(Ops[3]); in EmitAArch64BuiltinExpr() local
6599 Value *SV = llvm::ConstantVector::getSplat(VTy->getElementCount(), cst); in EmitAArch64BuiltinExpr()

12