Home
last modified time | relevance | path

Searched refs:pct (Results 1 – 22 of 22) sorted by relevance

/f-stack/freebsd/contrib/device-tree/Bindings/arc/
H A Darchs-pct.txt11 "snps,archs-pct"
16 compatible = "snps,archs-pct";
H A Dpct.txt14 "snps,arc700-pct"
19 compatible = "snps,arc700-pct";
/f-stack/freebsd/contrib/device-tree/src/arc/
H A Dnsim_700.dts55 arcpct0: pct {
56 compatible = "snps,arc700-pct";
H A Dhaps_hs_idu.dts68 arcpct0: pct {
69 compatible = "snps,archs-pct";
H A Dnsimosci.dts84 arcpct0: pct {
85 compatible = "snps,arc700-pct";
H A Dnsimosci_hs.dts84 arcpct0: pct {
85 compatible = "snps,archs-pct";
H A Dhaps_hs.dts63 arcpct0: pct {
64 compatible = "snps,archs-pct";
H A Dnsimosci_hs_idu.dts92 arcpct0: pct {
93 compatible = "snps,archs-pct";
H A Daxc001.dtsi77 arcpct0: pct {
78 compatible = "snps,arc700-pct";
H A Daxc003_idu.dtsi92 arcpct0: pct {
93 compatible = "snps,archs-pct";
H A Daxc003.dtsi85 arcpct0: pct {
86 compatible = "snps,archs-pct";
H A Dhsdk.dts89 arcpct: pct {
90 compatible = "snps,archs-pct";
/f-stack/freebsd/contrib/openzfs/lib/libzpool/
H A Dtaskq.c259 int pct; in taskq_create() local
262 pct = MIN(nthreads, 100); in taskq_create()
263 pct = MAX(pct, 0); in taskq_create()
265 nthreads = (sysconf(_SC_NPROCESSORS_ONLN) * pct) / 100; in taskq_create()
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_iter.c394 char *pct = strchr(comma_separated, '%'); in zfs_iter_snapspec() local
395 if (pct != NULL) { in zfs_iter_snapspec()
400 if (pct == comma_separated) in zfs_iter_snapspec()
404 *pct = '\0'; in zfs_iter_snapspec()
405 ssa.ssa_last = pct + 1; in zfs_iter_snapspec()
/f-stack/freebsd/kern/
H A Dkern_racct.c996 uint64_t pct_estimate, pct, runtime; in racct_proc_exit() local
1021 pct = racct_getpcpu(p, pct_estimate); in racct_proc_exit()
1025 racct_add_cred_locked(p->p_ucred, RACCT_PCTCPU, pct); in racct_proc_exit()
1252 uint64_t pct, pct_estimate, runtime; in racctd() local
1291 pct = racct_getpcpu(p, pct_estimate); in racctd()
1299 racct_set_locked(p, RACCT_PCTCPU, pct, 1); in racctd()
H A Dimgact_elf.c2829 int pct; in __elfN() local
2831 pct = __elfN(aslr_stack_gap); in __elfN()
2832 if (pct == 0) in __elfN()
2834 if (pct > 50) in __elfN()
2835 pct = 50; in __elfN()
2836 range = imgp->eff_stack_sz * pct / 100; in __elfN()
H A Dsubr_stats.c3715 uint32_t cum_pct, pct, tpl_hash; local
3835 if (2 != sscanf(new_rates_usr_str, kvpair_fmt, tpl_spec, &pct,
3841 if ((cum_pct += pct) > 100)
3864 rates[nrates].tpl_sample_pct = pct;
H A Dvfs_cache.c983 int count, maxlength, used, pct; in sysctl_debug_hashstat_nchash() local
1006 pct = (used * 100) / (n_nchash / 100); in sysctl_debug_hashstat_nchash()
1016 error = SYSCTL_OUT(req, &pct, sizeof(pct)); in sysctl_debug_hashstat_nchash()
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dda7218.txt60 - dlg,jack-threshold-pct : Threshold level for jack detection (% of VDD)
99 dlg,jack-threshold-pct = <84>;
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c6392 double pct; in findBigKeys() local
6413 pct = 100 * (double)sampled/total_keys; in findBigKeys()
6451 pct, type->name, keys->element[i]->str, sizes[i], in findBigKeys()
6469 printf("[%05.2f%%] Sampled %llu keys so far\n", pct, sampled); in findBigKeys()
6557 double pct; in findHotKeys() local
6570 pct = 100 * (double)sampled/total_keys; in findHotKeys()
6595 printf("[%05.2f%%] Sampled %llu keys so far\n", pct, sampled); in findHotKeys()
6614 pct, keys->element[i]->str, freqs[i]); in findHotKeys()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzil.c2656 int pct = MAX(zfs_commit_timeout_pct, 1); in zil_commit_waiter() local
2657 hrtime_t sleep = (zilog->zl_last_lwb_latency * pct) / 100; in zil_commit_waiter()
/f-stack/freebsd/vm/
H A Duma_core.c2009 #define UMA_PCT_FIXPT(pct) UMA_FRAC_FIXPT((pct), 100) argument