Searched refs:ftemp (Results 1 – 6 of 6) sorted by relevance
/kernel/liteos_a/kernel/base/vm/ |
D | los_vm_filemap.c | 439 LosFilePage *ftemp = NULL; in OsFileCacheFlush() local 449 ftemp = OsDumpDirtyPage(fpage); in OsFileCacheFlush() 450 if (ftemp != NULL) { in OsFileCacheFlush() 451 LOS_ListTailInsert(&dirtyList, &ftemp->node); in OsFileCacheFlush() 458 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(fpage, ftemp, &dirtyList, LosFilePage, node) { in OsFileCacheFlush() 469 LosFilePage *ftemp = NULL; in OsFileCacheRemove() local 478 ftemp = OsDumpDirtyPage(fpage); in OsFileCacheRemove() 479 if (ftemp != NULL) { in OsFileCacheRemove() 480 LOS_ListTailInsert(&dirtyList, &ftemp->node); in OsFileCacheRemove()
|
D | los_vm_scan.c | 248 LosFilePage *ftemp = NULL; in OsShrinkInactiveList() local 270 ftemp = OsDumpDirtyPage(fpage); in OsShrinkInactiveList() 271 if (ftemp != NULL) { in OsShrinkInactiveList() 272 LOS_ListTailInsert(list, &ftemp->node); in OsShrinkInactiveList()
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
D | mb86a16.c | 1024 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 …]
|
/kernel/linux/linux-5.10/tools/power/pm-graph/ |
D | bootgraph.py | 389 ftemp = dict() 420 if(key not in ftemp): 421 ftemp[key] = [] 422 ftemp[key].append(aslib.FTraceCallGraph(pid, sysvals)) 423 cg = ftemp[key][-1] 426 ftemp[key].append(aslib.FTraceCallGraph(pid, sysvals)) 428 ftemp[key][-1].addLine(t) 433 for key in ftemp: 435 for cg in ftemp[key]:
|
D | sleepgraph.py | 2980 self.ftemp = dict() 3130 if(pid not in testrun[testidx].ftemp): 3131 testrun[testidx].ftemp[pid] = [] 3132 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals)) 3134 cg = testrun[testidx].ftemp[pid][-1] 3137 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals)) 3139 testrun[testidx].ftemp[pid][-1].addLine(t) 3144 for pid in test.ftemp: 3145 for cg in test.ftemp[pid]: 3455 if(key not in testrun.ftemp): [all …]
|
/kernel/linux/linux-5.10/kernel/time/ |
D | ntp.c | 887 s64 ftemp; in hardpps_update_freq() local 904 ftemp = div_s64(((s64)(-freq_norm.nsec)) << NTP_SCALE_SHIFT, in hardpps_update_freq() 906 delta = shift_right(ftemp - pps_freq, NTP_SCALE_SHIFT); in hardpps_update_freq() 907 pps_freq = ftemp; in hardpps_update_freq()
|