Home | History | Annotate | Download | only in logd

Lines Matching refs:NS_PER_SEC

550                   d / NS_PER_SEC / 60 / 60, (d / NS_PER_SEC / 60) % 60,
551 (d / NS_PER_SEC) % 60, d % NS_PER_SEC);
569 d / NS_PER_SEC / 60 / 60, (d / NS_PER_SEC / 60) % 60,
570 (d / NS_PER_SEC) % 60, d % NS_PER_SEC);
709 if (duration >= (NS_PER_SEC * max_seconds)) {
710 duration = NS_PER_SEC * (max_seconds - 1);
717 if (duration >= (NS_PER_SEC * 10)) {
719 (duration + (NS_PER_SEC / 2))
720 / NS_PER_SEC);
721 } else if (duration >= (NS_PER_SEC / (1000 / 10))) {
723 (duration + (NS_PER_SEC / 2 / 1000))
724 / (NS_PER_SEC / 1000));
725 } else if (duration >= (NS_PER_SEC / (1000000 / 10))) {
727 (duration + (NS_PER_SEC / 2 / 1000000))
728 / (NS_PER_SEC / 1000000));