Lines Matching defs:threshold_ns
370 u32 threshold_ns = threshold_us * 1000;
373 if (threshold_ns < 32) {
375 *value = threshold_ns;
376 } else if (threshold_ns < 1024) {
378 *value = threshold_ns >> 5;
379 } else if (threshold_ns < 32768) {
381 *value = threshold_ns >> 10;
382 } else if (threshold_ns < 1048576) {
384 *value = threshold_ns >> 15;
385 } else if (threshold_ns < 33554432) {
387 *value = threshold_ns >> 20;
390 *value = threshold_ns >> 25;