HomeSort by: relevance | last modified time | path
    Searched defs:fq (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/arch/arm/nvidia/
tegra_cpufreq.c 137 int fq, oldfq = 0, error; local in function:tegra_cpufreq_freq_helper
140 node.sysctl_data = &fq;
142 fq = cpufreq_get_rate();
144 oldfq = fq;
150 if (fq == oldfq || rnode->sysctl_num != cpufreq_node_target)
156 error = cpufreq_set_rate(fq);
  /src/lib/libm/src/
k_rem_pio2.c 121 * fq[] final product of x*(2/pi) in fq[0],..,fq[jk]
303 double z,fw,f[20],fq[20],q[20]; local in function:__kernel_rem_pio2
305 /* if nx < 2, fq[0] may be accessed uninitialised */
307 fq[0] = 0;
417 fq[jz-i] = fw;
420 /* compress fq[] into y[] */
424 for (i=jz;i>=0;i--) fw += fq[i];
430 for (i=jz;i>=0;i--) fw += fq[i]
    [all...]
k_rem_pio2f.c 54 float z,fw,f[20],fq[20],q[20]; local in function:__kernel_rem_pio2f
56 /* if nx < 2, fq[0] may be accessed uninitialised */
58 fq[0] = 0;
168 fq[jz-i] = fw;
171 /* compress fq[] into y[] */
175 for (i=jz;i>=0;i--) fw += fq[i];
181 for (i=jz;i>=0;i--) fw += fq[i];
183 fw = fq[0]-fw;
184 for (i=1;i<=jz;i++) fw += fq[i];
189 fw = fq[i-1]+fq[i]
    [all...]
  /src/sys/arch/evbarm/rpi/
rpi_vcmbox.c 315 int fq, oldfq = 0, error; local in function:vcmbox_cpufreq_sysctl_helper
321 node.sysctl_data = &fq;
329 fq = RATE2MHZ(rate);
331 oldfq = fq;
333 fq = RATE2MHZ(sc->sc_cpu_minrate);
335 fq = RATE2MHZ(sc->sc_cpu_maxrate);
343 if (fq == oldfq || rnode->sysctl_num != sc->sc_node_target)
346 if (fq < RATE2MHZ(sc->sc_cpu_minrate))
347 fq = RATE2MHZ(sc->sc_cpu_minrate);
348 if (fq > RATE2MHZ(sc->sc_cpu_maxrate)
    [all...]
  /src/sys/arch/x86/x86/
powernow.c 319 int fq, oldfq, error; local in function:powernow_sysctl_helper
323 fq = oldfq = 0;
331 node.sysctl_data = &fq;
334 fq = oldfq = sc->sc_freqs_cur;
336 fq = sc->sc_freqs_cur;
347 if (rnode->sysctl_num == sc->sc_node_target && fq != oldfq) {
353 rv = powernow_k7_setperf(sc->sc_dev, fq);
357 rv = powernow_k8_setperf(sc->sc_dev, fq);
367 sc->sc_freqs_cur = fq;
est.c 1368 int fq, err, i, oldfq; local in function:est_sysctl_helper
1370 fq = oldfq = 0;
1378 node.sysctl_data = &fq;
1382 fq = oldfq = MSR2MHZ(rdmsr(MSR_PERF_CTL), sc->sc_bus_clock);
1386 fq = MSR2MHZ(rdmsr(MSR_PERF_STATUS), sc->sc_bus_clock);
1396 if (fq == oldfq || rnode->sysctl_num != sc->sc_node_target)
1401 if (MSR2MHZ(sc->sc_fqlist->table[i], sc->sc_bus_clock) >= fq)
  /src/usr.sbin/syslogd/
sign.c 293 struct filed_queue *fq; local in function:sign_sg_init
325 /* alloc(fq) and add to SGs file queue */
327 ALLOC_OR_FALSE(fq); \
328 fq->f = f; \
331 STAILQ_INSERT_TAIL(&newsg->files, fq, entries); \
448 STAILQ_FOREACH(fq, &sg->files, entries) {
450 fq->f, fq->f->f_type);
463 struct filed_queue *fq, *tmp_fq; local in function:sign_global_free
476 fq = STAILQ_FIRST(&sg->files)
512 struct filed_queue *fq; local in function:sign_send_certificate_block
636 struct filed_queue *fq; local in function:sign_send_signature_block
    [all...]
  /src/sys/dev/acpi/
acpi_cppc.c 227 u_int fq, oldfq = 0; local in function:cppc_cpufreq_sysctl
233 node.sysctl_data = &fq;
251 fq = (u_int)cppc_perf_to_freq(sc, val);
254 oldfq = fq;
262 if (fq == oldfq || rnode->sysctl_num != sc->sc_node_target) {
266 if (fq < sc->sc_min_target || fq > sc->sc_max_target) {
271 cppc_freq_to_perf(sc, fq));
  /src/sys/dev/fdt/
cpufreq_dt.c 208 u_int fq, oldfq = 0; local in function:cpufreq_dt_sysctl_helper
212 node.sysctl_data = &fq;
217 fq = sc->sc_freq_target;
219 fq = clk_get_rate(sc->sc_clk) / 1000000;
222 oldfq = fq;
225 sc->sc_freq_target = fq;
231 if (fq == oldfq || rnode->sysctl_num != sc->sc_node_target)
235 if (sc->sc_opp[n].freq_khz / 1000 == fq)
243 sc->sc_freq_target = fq;
248 error = cpufreq_dt_set_rate(sc, fq * 1000)
    [all...]
  /src/sys/dev/ic/
scmi.c 579 u_int fq, oldfq = 0, old_target; local in function:scmi_cpufreq_sysctl_helper
585 node.sysctl_data = &fq;
596 fq = pd->pd_freq_target;
602 fq = scmi_cpufreq_level_to_mhz(pd, level);
606 oldfq = fq;
609 pd->pd_freq_target = fq;
615 if (fq == oldfq || rnode->sysctl_num != pd->pd_node_target)
622 pd->pd_freq_target = fq;
624 error = scmi_cpufreq_set_rate(sc, pd, fq);
  /src/sys/netinet/
tcp_vtw.c 365 fatp_t *fq; local in function:fatp_vtw_inshash
375 fq = fatp_alloc(fat);
376 if (!fq) {
382 fq->inuse = 0;
383 fq->nxt = fatp_index(fat, fp);
385 hash[tag & fat->mask] = fq;
387 fp = fq;
564 fatp_t *fq = 0; local in function:vtw_unhash
568 fr = fatp_next(fat, fq = fr);
572 if (fq) {
639 fatp_t *fq = 0; local in function:vtw_unhash
    [all...]

Completed in 21 milliseconds