Lines Matching defs:freq
27 {"freq", required_argument, NULL, 'f'},
68 unsigned long freq;
134 freq = strtoul(normalized, &end, 10);
138 if (match_count && freq != ULONG_MAX)
139 freq++;
140 return freq;
172 unsigned long freq, unsigned int pc)
176 return cpufreq_set_frequency(cpu, freq);
202 unsigned long freq = 0;
248 if (freq)
250 freq = string_to_frequency(optarg);
251 if (freq == 0) {
279 if (freq && policychange) {
280 printf(_("the -f/--freq parameter cannot be combined with -d/--min, -u/--max or\n"
285 if (!freq && !policychange) {
286 printf(_("At least one parameter out of -f/--freq, -d/--min, -u/--max, and\n"
328 ret = do_one_cpu(cpu, &new_pol, freq, policychange);