Lines Matching refs:count
22 int count; in show_state() local
25 count = scnprintf(buf, PAGE_SIZE, "not-defined:"); in show_state()
27 count = scnprintf(buf, PAGE_SIZE, "%lld:", fps->control); in show_state()
30 count += scnprintf(&buf[count], PAGE_SIZE - count, "not-defined:"); in show_state()
32 count += scnprintf(&buf[count], PAGE_SIZE - count, "%lld:", fps->trip_point); in show_state()
35 count += scnprintf(&buf[count], PAGE_SIZE - count, "not-defined:"); in show_state()
37 count += scnprintf(&buf[count], PAGE_SIZE - count, "%lld:", fps->speed); in show_state()
40 count += scnprintf(&buf[count], PAGE_SIZE - count, "not-defined:"); in show_state()
42 count += scnprintf(&buf[count], PAGE_SIZE - count, "%lld:", fps->noise_level * 100); in show_state()
45 count += scnprintf(&buf[count], PAGE_SIZE - count, "not-defined\n"); in show_state()
47 count += scnprintf(&buf[count], PAGE_SIZE - count, "%lld\n", fps->power); in show_state()
49 return count; in show_state()