Searched refs:frequency (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
H A Dfake_media_process.h17 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/swiftshader/src/Common/
H A DTimer.hpp33 static int64_t frequency();
H A DTimer.cpp51 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/adhd/cras/src/dsp/
H A Dbiquad.c113 static void biquad_bandpass(struct biquad *bq, double frequency, double Q) argument
116 frequency = max(0.0, frequency);
121 if (frequency > 0 && frequency < 1) {
122 double w0 = M_PI * frequency;
153 static void biquad_lowshelf(struct biquad *bq, double frequency, double db_gain) argument
156 frequency = max(0.0, min(frequency, 1.0));
160 if (frequency
187 biquad_highshelf(struct biquad *bq, double frequency, double db_gain) argument
222 biquad_peaking(struct biquad *bq, double frequency, double Q, double db_gain) argument
260 biquad_notch(struct biquad *bq, double frequency, double Q) argument
295 biquad_allpass(struct biquad *bq, double frequency, double Q) argument
[all...]
/external/autotest/server/site_tests/network_WiFi_MaskedBSSID/
H A Dnetwork_WiFi_MaskedBSSID.py24 frequency = 2412
26 frequency=frequency,
41 self.context.client.scan([frequency],
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DSimpleAbstractMultisetTest.java71 Integer frequency = backingMap.get(element);
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());
104 return (frequency == null) ? 0 : frequency;
[all...]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_FREQUENCY.c4 * 18 Apr 2009 0.4 More cleanup in frequency scan test case
55 //CU_ASSERT_EQUAL(freq.frequency, ???);
69 ".frequency = %u "
73 freq.frequency,
195 /* fetch the current frequency setting */
207 /* try to set the frequency again to the actual value */
210 freq.frequency = orig_freq.frequency;
222 /* check wheteher the frequency has not been changed */
237 ("\t%s:%u: current frequency
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowWifiInfo.java20 private int frequency = -1; field in class:ShadowWifiInfo
45 return frequency;
85 public void setFrequency(int frequency) { argument
86 this.frequency = frequency;
H A DShadowScanResult.java14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) { argument
20 scanResult.frequency = frequency;
31 .append(", frequency: ").append(realObject.frequency)
/external/lisa/experiments/
H A Drun_binder_transaction_tracing.py65 def run_page_stats(duration, frequency):
67 for i in range(int(duration/frequency)):
81 sleep(frequency)
88 def experiment(duration_s, cmd, frequency):
99 :param frequency: sampling frequency for page stats
100 :type frequency: float
106 if frequency:
107 run_page_stats(duration_s, frequency)
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java110 Count frequency = backingMap.get(getElement());
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
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractMapBasedMultiset.java107 Count frequency = backingMap.get(getElement());
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
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/mock/
H A Dmock_rtp_payload_strategy.h25 const uint32_t frequency,
36 const uint32_t frequency,
/external/autotest/client/profilers/powertop/src/
H A Dcpufreqstats.c36 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/autotest/server/site_tests/network_WiFi_DisableEnable/
H A Dnetwork_WiFi_DisableEnable.py25 frequency = 2412
26 self.context.configure(hostap_config.HostapConfig(frequency=frequency))
51 self.context.wait_for_connection(router_ssid, frequency);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowScanResult.java14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) { argument
20 scanResult.frequency = frequency;
31 .append(", frequency: ").append(realObject.frequency)
/external/adhd/cras/src/server/
H A Dcras_a2dp_info.c17 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, mod
[all...]
H A Dcras_a2dp_endpoint.c44 sbc_caps->frequency = SBC_SAMPLING_FREQ_16000 |
82 if (sbc_caps->frequency & SBC_SAMPLING_FREQ_48000) {
83 sbc_config->frequency = SBC_SAMPLING_FREQ_48000;
84 } else if (sbc_caps->frequency & SBC_SAMPLING_FREQ_44100) {
85 sbc_config->frequency = SBC_SAMPLING_FREQ_44100;
86 } else if (sbc_caps->frequency & SBC_SAMPLING_FREQ_32000) {
87 sbc_config->frequency = SBC_SAMPLING_FREQ_32000;
88 } else if (sbc_caps->frequency & SBC_SAMPLING_FREQ_16000) {
89 sbc_config->frequency = SBC_SAMPLING_FREQ_16000;
/external/guava/guava-tests/test/com/google/common/collect/
H A DSimpleAbstractMultisetTest.java97 Integer frequency = backingMap.get(element);
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());
130 return (frequency == null) ? 0 : frequency;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_group_add.py17 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/autotest/server/cros/
H A Drf_switch_1_ap_box_1_ap_list.conf9 frequency = 2412
22 frequency = 5180
35 frequency = 2432
48 frequency = 5745
61 frequency = 2422
74 frequency = 2417
87 frequency = 5200
100 frequency = 2427
113 frequency = 5240
126 frequency
[all...]
H A Dcasey_chromeos5_ap_list.conf9 frequency = 2432
23 frequency = 2432
39 frequency = 2432
H A Drf_switch_1_ap_box_2_ap_list.conf9 frequency = 2412
22 frequency = 5180
35 frequency = 2417
48 frequency = 5200
61 frequency = 2422
74 frequency = 5220
87 frequency = 2427
100 frequency = 5240
113 frequency = 2432
126 frequency
[all...]
H A Dchaos_shadow_ap_list.conf17 frequency = 2412
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_receiver_audio.cc69 uint32_t* frequency,
76 *frequency = 8000;
83 // if last received codec is G.722 we must use frequency 8000
85 *frequency = 8000;
87 *frequency = 16000;
94 *frequency = 32000;
101 *frequency = 48000;
157 uint32_t frequency) {
165 if (frequency == 8000) {
167 } else if (frequency
68 CNGPayloadType(int8_t payload_type, uint32_t* frequency, bool* cng_payload_type_has_changed) argument
154 OnNewPayloadTypeCreated( const char payload_name[RTP_PAYLOAD_NAME_SIZE], int8_t payload_type, uint32_t frequency) argument
[all...]

Completed in 787 milliseconds

1234567891011>>