OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:native_hz
(Results
1 - 3
of
3
) sorted by null
/cts/tools/utils/
monsoon.py
353
native_hz
= status["sampleRate"] * 1000
358
# In case FLAGS.hz doesn't divide
native_hz
exactly, use this invariant:
359
# 'offset' = (consumed samples) * FLAGS.hz - (emitted samples) *
native_hz
369
need = (
native_hz
- offset + FLAGS.hz - 1) / FLAGS.hz
378
while offset >=
native_hz
: # maybe multiple, if FLAGS.hz >
native_hz
392
offset -=
native_hz
/cts/apps/CtsVerifier/assets/scripts/
execute_power_tests.py
[
all
...]
/tools/test/connectivity/acts/framework/acts/controllers/
monsoon.py
675
native_hz
= status["sampleRate"] * 1000
680
# In case sample_hz doesn't divide
native_hz
exactly, use this
682
# (emitted samples) *
native_hz
697
need = int((
native_hz
- offset + sample_hz - 1) / sample_hz)
707
# maybe multiple, if sample_hz >
native_hz
708
while offset >=
native_hz
:
717
offset -=
native_hz
[
all
...]
Completed in 43 milliseconds