/freebsd/sys/netpfil/ipfw/ |
H A D | dn_sched_fq_codel_helper.h | 63 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 D | dn_aqm_codel.h | 83 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 D | dn_aqm_codel.c | 141 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 D | dn_sched_fq_codel.c | 181 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 D | dn_sched_fq_codel.h | 64 struct codel_status cst; member
|
/freebsd/sys/dev/cxgbe/ |
H A D | t4_sched.c | 746 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 D | t4_sge.c | 6556 send_etid_flowc_wr(struct cxgbe_rate_tag *cst, struct port_info *pi, in send_etid_flowc_wr() argument 6563 mtx_assert(&cst->lock, MA_OWNED); in send_etid_flowc_wr() 6564 MPASS((cst->flags & (EO_FLOWC_PENDING | EO_FLOWC_RPL_PENDING)) == in send_etid_flowc_wr() 6567 flowc = start_wrq_wr(&cst->eo_txq->wrq, ETID_FLOWC_LEN16, &cookie); in send_etid_flowc_wr() 6575 V_FW_WR_FLOWID(cst->etid)); in send_etid_flowc_wr() 6583 flowc->mnemval[3].val = htobe32(cst->iqid); in send_etid_flowc_wr() 6587 flowc->mnemval[5].val = htobe32(cst->schedcl); in send_etid_flowc_wr() 6589 commit_wrq_wr(&cst->eo_txq->wrq, flowc, &cookie); in send_etid_flowc_wr() 6591 cst->flags &= ~EO_FLOWC_PENDING; in send_etid_flowc_wr() 6592 cst->flags |= EO_FLOWC_RPL_PENDING; in send_etid_flowc_wr() [all …]
|
H A D | offload.h | 107 struct cxgbe_rate_tag *cst; member
|
/freebsd/contrib/bmake/ |
H A D | dir.c | 406 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 D | meta.c | 411 struct cached_stat cst; in meta_needed() local 442 if (cached_stat(dname, &cst) != 0) { in meta_needed() 1134 struct cached_stat cst; in meta_oodate() local 1395 if ((link_src != NULL && cached_lstat(p, &cst) < 0) || in meta_oodate() 1396 (link_src == NULL && cached_stat(p, &cst) < 0)) { in meta_oodate() 1456 if (cached_stat(*sdp, &cst) == 0) { in meta_oodate() 1466 if (!S_ISDIR(cst.cst_mode) && in meta_oodate() 1467 cst.cst_mtime > gn->mtime) { in meta_oodate() 1471 } else if (S_ISDIR(cst.cst_mode)) { in meta_oodate()
|
/freebsd/sys/dev/sound/pci/ |
H A D | hdspe.h | 226 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 D | hdsp.h | 234 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 D | envy24ht.c | 133 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() 2401 sc->cst = rman_get_bustag(sc->cs); in envy24ht_alloc_resource()
|
H A D | envy24.c | 124 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() 2491 sc->cst = rman_get_bustag(sc->cs); in envy24_alloc_resource()
|
H A D | hdspe.c | 164 sc->cst = rman_get_bustag(sc->cs); in hdspe_alloc_resources()
|
H A D | hdsp.c | 154 sc->cst = rman_get_bustag(sc->cs); in hdsp_alloc_resources()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | tasn_dec.c | 43 char *inf, char *cst, 174 char seq_eoc, seq_nolen, cst, isopt; in asn1_item_embed_d2i() local 346 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst, in asn1_item_embed_d2i() 360 if (!cst) { in asn1_item_embed_d2i() 516 char cst; in asn1_template_ex_d2i() local 521 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst, in asn1_template_ex_d2i() 529 if (!cst) { in asn1_template_ex_d2i() 705 char cst, inf, free_cont = 0; in asn1_d2i_ex_primitive() local 749 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst, in asn1_d2i_ex_primitive() 768 else if (!cst) { in asn1_d2i_ex_primitive() [all …]
|
/freebsd/crypto/openssl/crypto/ocsp/ |
H A D | ocsp_prn.c | 140 OCSP_CERTSTATUS *cst = NULL; in OCSP_RESPONSE_print() local 194 cst = single->certStatus; in OCSP_RESPONSE_print() 196 OCSP_cert_status_str(cst->type)) <= 0) in OCSP_RESPONSE_print() 198 if (cst->type == V_OCSP_CERTSTATUS_REVOKED) { in OCSP_RESPONSE_print() 199 rev = cst->value.revoked; in OCSP_RESPONSE_print()
|
H A D | ocsp_cl.c | 254 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 D | fs.c | 817 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 D | Combine.td | 623 // Fold fp_op(cst) to the constant result of the floating point operation. 626 (match (opcode $dst, $src0):$root, (G_FCONSTANT $src0, $cst)), 627 (apply [{ Helper.applyCombineConstantFoldFpUnary(*${root}, ${cst}.getFPImm()); }]) 809 // Fold (unmerge cst) -> cst1, cst2, ...
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVFeatures.td | 1305 def FeatureNoTrailingSeqCstFence : SubtargetFeature<"no-trailing-seq-cst-fence", 1308 "Disable trailing fence for seq-cst store.">;
|
/freebsd/usr.sbin/cron/doc/ |
H A D | MAIL | 92 Date: Fri, 2 Jan 87 09:23:53 cst
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64InstrFormats.td | 10661 string asm, string operands, string cst, 10663 : I<oops, iops, asm, operands, cst, pattern> { 10676 string asm, string operands, string cst, 10678 : I<oops, iops, asm, operands, "$Vt = $dst," # cst, pattern> { 11633 class BaseCryptoV82<dag oops, dag iops, string asm, string asmops, string cst, 11635 : I <oops, iops, asm, asmops, cst, pattern>, Sched<[WriteVq]> { 11659 string asmops, string cst> 11660 : BaseCryptoV82<oops, iops, asm , asmops, cst, []> { 12255 class LRCPC3NEONLdStSingle<bit L, dag oops, dag iops, string asm, string cst> 12257 "\t$Vt$Q, [$Rn]", cst, oops, iops, []>,
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 12394 llvm::Constant *cst = cast<Constant>(Ops[3]); in EmitAArch64BuiltinExpr() local 12395 Value *SV = llvm::ConstantVector::getSplat(VTy->getElementCount(), cst); in EmitAArch64BuiltinExpr()
|