Lines Matching refs:tmp
80 struct cpufreq_available_governors *tmp, *next; in cpufreq_put_available_governors() local
85 tmp = any->first; in cpufreq_put_available_governors()
86 while (tmp) { in cpufreq_put_available_governors()
87 next = tmp->next; in cpufreq_put_available_governors()
88 if (tmp->governor) in cpufreq_put_available_governors()
89 free(tmp->governor); in cpufreq_put_available_governors()
90 free(tmp); in cpufreq_put_available_governors()
91 tmp = next; in cpufreq_put_available_governors()
104 struct cpufreq_available_frequencies *tmp, *next; in cpufreq_put_available_frequencies() local
109 tmp = any->first; in cpufreq_put_available_frequencies()
110 while (tmp) { in cpufreq_put_available_frequencies()
111 next = tmp->next; in cpufreq_put_available_frequencies()
112 free(tmp); in cpufreq_put_available_frequencies()
113 tmp = next; in cpufreq_put_available_frequencies()
125 struct cpufreq_affected_cpus *tmp, *next; in cpufreq_put_affected_cpus() local
130 tmp = any->first; in cpufreq_put_affected_cpus()
131 while (tmp) { in cpufreq_put_affected_cpus()
132 next = tmp->next; in cpufreq_put_affected_cpus()
133 free(tmp); in cpufreq_put_affected_cpus()
134 tmp = next; in cpufreq_put_affected_cpus()
192 struct cpufreq_stats *tmp, *next; in cpufreq_put_stats() local
197 tmp = any->first; in cpufreq_put_stats()
198 while (tmp) { in cpufreq_put_stats()
199 next = tmp->next; in cpufreq_put_stats()
200 free(tmp); in cpufreq_put_stats()
201 tmp = next; in cpufreq_put_stats()