Home
last modified time | relevance | path

Searched refs:ftemp (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/media/dvb-frontends/
H A Dmb86a16.c1024 int ftemp; in mb86a16_set_fe() local
1111 ftemp = fOSC_start * 1000; in mb86a16_set_fe()
1114 ftemp = ftemp + swp_ofs; in mb86a16_set_fe()
1118 if (ftemp > 2150000) { in mb86a16_set_fe()
1122 if ((ftemp == 2150000) || in mb86a16_set_fe()
1123 (ftemp - state->frequency * 1000 >= fcp + state->srate / 4)) in mb86a16_set_fe()
1129 ftemp = fOSC_start * 1000; in mb86a16_set_fe()
1132 ftemp = ftemp - swp_ofs; in mb86a16_set_fe()
1136 if (ftemp < 950000) { in mb86a16_set_fe()
1140 if ((ftemp == 950000) || in mb86a16_set_fe()
[all …]
/linux/tools/power/pm-graph/
H A Dbootgraph.py391 ftemp = dict()
422 if(key not in ftemp):
423 ftemp[key] = []
424 ftemp[key].append(aslib.FTraceCallGraph(pid, sysvals))
425 cg = ftemp[key][-1]
428 ftemp[key].append(aslib.FTraceCallGraph(pid, sysvals))
430 ftemp[key][-1].addLine(t)
435 for key in ftemp:
437 for cg in ftemp[key]:
H A Dsleepgraph.py3196 self.ftemp = dict()
3350 if(pid not in testrun[testidx].ftemp):
3351 testrun[testidx].ftemp[pid] = []
3352 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3354 cg = testrun[testidx].ftemp[pid][-1]
3357 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3359 testrun[testidx].ftemp[pid][-1].addLine(t)
3364 for pid in test.ftemp:
3365 for cg in test.ftemp[pid]:
3731 if(key not in testrun.ftemp):
[all …]
/linux/kernel/time/
H A Dntp.c947 s64 ftemp; in hardpps_update_freq() local
964 ftemp = div_s64(((s64)(-freq_norm.nsec)) << NTP_SCALE_SHIFT, in hardpps_update_freq()
966 delta = shift_right(ftemp - ntpdata->pps_freq, NTP_SCALE_SHIFT); in hardpps_update_freq()
967 ntpdata->pps_freq = ftemp; in hardpps_update_freq()