Lines Matching refs:threshold_ns
144 u32 threshold_ns = threshold_us * 1000; in encode_l12_threshold() local
147 if (threshold_ns < 32) { in encode_l12_threshold()
149 *value = threshold_ns; in encode_l12_threshold()
150 } else if (threshold_ns < 1024) { in encode_l12_threshold()
152 *value = threshold_ns >> 5; in encode_l12_threshold()
153 } else if (threshold_ns < 32768) { in encode_l12_threshold()
155 *value = threshold_ns >> 10; in encode_l12_threshold()
156 } else if (threshold_ns < 1048576) { in encode_l12_threshold()
158 *value = threshold_ns >> 15; in encode_l12_threshold()
159 } else if (threshold_ns < 33554432) { in encode_l12_threshold()
161 *value = threshold_ns >> 20; in encode_l12_threshold()
164 *value = threshold_ns >> 25; in encode_l12_threshold()