HomeSort by relevance Sort by last modified time
    Searched defs:frequency (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
fake_media_process.h 17 FakeMediaProcess() : frequency(0) {}
27 sin(2.0 * 3.14 * frequency * 400.0 / sampling_freq_hz));
32 frequency * 400.0 / sampling_freq_hz));
35 frequency * 400.0 / sampling_freq_hz));
37 frequency++;
42 int frequency; member in class:FakeMediaProcess
  /external/u-boot/drivers/spi/
tegra_spi.h 8 int frequency; /* Default clock frequency, -1 for none */ member in struct:tegra_spi_platdata
  /external/grpc-grpc/src/core/lib/gpr/
time_windows.cc 37 LARGE_INTEGER frequency; local
38 QueryPerformanceFrequency(&frequency);
40 g_time_scale = 1.0 / (double)frequency.QuadPart;
  /external/python/cpython3/PC/clinic/
winsound.c.h 42 "Beep($module, /, frequency, duration)\n"
47 " frequency\n"
48 " Frequency of the sound in hertz.\n"
57 winsound_Beep_impl(PyObject *module, int frequency, int duration);
63 static const char * const _keywords[] = {"frequency", "duration", NULL};
65 int frequency; local
69 &frequency, &duration)) {
72 return_value = winsound_Beep_impl(module, frequency, duration);
  /external/swiftshader/src/Common/
Timer.cpp 51 return (double)counter() / (double)frequency();
89 int64_t Timer::frequency() function in class:sw::Timer
92 int64_t frequency; local
93 QueryPerformanceFrequency((LARGE_INTEGER*)&frequency);
94 return frequency;
  /external/swiftshader/src/System/
Timer.cpp 51 return (double)counter() / (double)frequency();
85 int64_t Timer::frequency() function in class:sw::Timer
88 int64_t frequency; local
89 QueryPerformanceFrequency((LARGE_INTEGER*)&frequency);
90 return frequency;
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_group_add.py 17 print(" [-f <frequency>] [-o <group_object_path>] \ ")
22 print(" -f = frequency")
51 global frequency
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency,
70 self.frequency = frequency
126 if (self.frequency != None):
127 if (int(self.frequency) > 0):
128 self.P2PDictionary.update({'frequency':int(self.frequency)})
160 frequency = None variable
    [all...]
  /external/bcc/tools/
runqlen.py 56 frequency = 99 variable
189 sample_period=0, sample_freq=frequency)
cpuunclaimed.py 94 frequency = 99 variable
96 wakeup_hz = 10 # frequency to read buffers
170 sample_period=0, sample_freq=frequency)
209 trigger = int(0.8 * (1000000000 / frequency))
  /external/eigen/bench/btl/generic_bench/timers/
portable_timer.hh 61 QueryPerformanceFrequency(&frequency);
80 return ((double)L.QuadPart /(double)frequency.QuadPart) ;
85 LARGE_INTEGER frequency; member in class:Portable_Timer
x86_timer.hh 37 //#define FREQUENCY 648000000
38 //#define FREQUENCY 1400000000
39 #define FREQUENCY 1695000000
48 X86_Timer( void ):_frequency(FREQUENCY),_nb_sample(0)
67 inline double frequency( void ){ function in class:X86_Timer
73 return (_click_stop.n64-_click_start.n64)/double(FREQUENCY);
107 /// INFOS("CPU frequency : "<< _frequency);
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 110 Count frequency = backingMap.get(getElement()); local
111 if (frequency != null) {
112 return frequency.get();
132 for (Count frequency : backingMap.values()) {
133 frequency.set(0);
188 int frequency = currentEntry.getValue().get();
189 if (frequency <= 0) {
201 Count frequency = Maps.safeGet(backingMap, element);
202 return (frequency == null) ? 0 : frequency.get()
    [all...]
Iterables.java 362 * @see Collections#frequency
364 public static int frequency(Iterable<?> iterable, @Nullable Object element) { method in class:Iterables
370 return Iterators.frequency(iterable.iterator(), element);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 107 Count frequency = backingMap.get(getElement()); local
108 if (frequency != null) {
109 return frequency.get();
129 for (Count frequency : backingMap.values()) {
130 frequency.set(0);
185 int frequency = currentEntry.getValue().get();
186 if (frequency <= 0) {
198 Count frequency = Maps.safeGet(backingMap, element);
199 return (frequency == null) ? 0 : frequency.get()
    [all...]
Iterables.java 345 * @see Collections#frequency
347 public static int frequency(Iterable<?> iterable, @Nullable Object element) { method in class:Iterables
353 return Iterators.frequency(iterable.iterator(), element);
    [all...]
  /external/adhd/cras/src/server/
cras_a2dp_info.c 17 uint8_t frequency = 0, mode = 0, subbands = 0, allocation, blocks = 0, local
20 if (sbc->frequency & SBC_SAMPLING_FREQ_48000)
21 frequency = SBC_FREQ_48000;
22 else if (sbc->frequency & SBC_SAMPLING_FREQ_44100)
23 frequency = SBC_FREQ_44100;
24 else if (sbc->frequency & SBC_SAMPLING_FREQ_32000)
25 frequency = SBC_FREQ_32000;
26 else if (sbc->frequency & SBC_SAMPLING_FREQ_16000)
27 frequency = SBC_FREQ_16000;
69 a2dp->codec = cras_sbc_codec_create(frequency, mode, subbands
    [all...]
  /external/autotest/client/profilers/powertop/src/
cpufreqstats.c 36 uint64_t frequency; member in struct:cpufreqdata
62 return b->frequency - a->frequency;
131 if (freqs[i].frequency && freqs[i].frequency != f) {
136 freqs[i].frequency = f;
153 delta[ret].frequency = freqs[ret].frequency;
154 if (freqs[ret].frequency != oldfreqs[ret].frequency)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SimpleAbstractMultisetTest.java 71 Integer frequency = backingMap.get(element); local
72 if (frequency == null) {
73 frequency = 0;
76 return frequency;
78 checkArgument(occurrences <= Integer.MAX_VALUE - frequency);
79 backingMap.put(element, frequency + occurrences);
80 return frequency;
103 Integer frequency = backingMap.get(getElement()); local
104 return (frequency == null) ? 0 : frequency;
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SimpleAbstractMultisetTest.java 97 Integer frequency = backingMap.get(element); local
98 if (frequency == null) {
99 frequency = 0;
102 return frequency;
104 checkArgument(occurrences <= Integer.MAX_VALUE - frequency);
105 backingMap.put(element, frequency + occurrences);
106 return frequency;
129 Integer frequency = backingMap.get(getElement()); local
130 return (frequency == null) ? 0 : frequency;
    [all...]
  /external/u-boot/arch/arm/cpu/armv7/s5p-common/
pwm.c 65 unsigned long frequency; local
81 frequency = NS_IN_SEC / period_ns;
84 tin_rate = pwm_calc_tin(pwm_id, frequency);
  /external/vboot_reference/firmware/lib/include/
vboot_audio_private.h 16 uint16_t frequency; member in struct:VbDevMusicNote
  /external/webrtc/webrtc/modules/audio_coding/test/
RTPFile.h 31 const size_t payloadSize, uint32_t frequency) = 0;
50 uint32_t frequency);
59 uint32_t frequency; member in class:webrtc::RTPPacket
73 uint32_t frequency) override;
110 uint32_t frequency) override;
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 41 UserDictionary.Words.FREQUENCY,
69 int frequency = 1; local
70 UserDictionary.Words.addWord(getContext(), word, frequency, local
86 private void assertWord(String word, int frequency, String shortcut, Locale locale,
89 UserDictionary.Words.addWord(mContext, word, frequency, shortcut, locale);
  /external/deqp-deps/SPIRV-Tools/tools/stats/
stats_analyzer.cpp 76 const double frequency = local
78 freq.emplace(pair.first, frequency);
94 // Writes |freq| to |out| sorted by frequency in the following format:
  /external/swiftshader/third_party/SPIRV-Tools/tools/stats/
stats_analyzer.cpp 76 const double frequency = local
78 freq.emplace(pair.first, frequency);
94 // Writes |freq| to |out| sorted by frequency in the following format:

Completed in 786 milliseconds

1 2 3 4