Home
last modified time | relevance | path

Searched refs:frequency (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractMapBasedMultiset.java107 Count frequency = backingMap.get(getElement()); in entryIterator() local
108 if (frequency != null) { in entryIterator()
109 return frequency.get(); in entryIterator()
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();
217 Count frequency = backingMap.get(element);
[all …]
/external/guava/guava/src/com/google/common/collect/
DAbstractMapBasedMultiset.java110 Count frequency = backingMap.get(getElement()); in entryIterator() local
111 if (frequency != null) { in entryIterator()
112 return frequency.get(); in entryIterator()
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();
220 Count frequency = backingMap.get(element);
[all …]
/external/autotest/client/profilers/powertop/src/
Dcpufreqstats.c36 uint64_t frequency; member
62 return b->frequency - a->frequency; in sort_by_freq()
131 if (freqs[i].frequency && freqs[i].frequency != f) { in do_cpufreq_stats()
136 freqs[i].frequency = f; in do_cpufreq_stats()
153 delta[ret].frequency = freqs[ret].frequency; in do_cpufreq_stats()
154 if (freqs[ret].frequency != oldfreqs[ret].frequency) in do_cpufreq_stats()
169 …sprintf(cpufreqstrings[ret+1], "%6s %5.1f%%\n", HzToHuman(delta[ret].frequency), delta[ret].coun… in do_cpufreq_stats()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DSimpleAbstractMultisetTest.java71 Integer frequency = backingMap.get(element); in add() local
72 if (frequency == null) { in add()
73 frequency = 0; in add()
76 return frequency; in add()
78 checkArgument(occurrences <= Integer.MAX_VALUE - frequency); in add()
79 backingMap.put(element, frequency + occurrences); in add()
80 return frequency; in add()
103 Integer frequency = backingMap.get(getElement()); in entryIterator() local
104 return (frequency == null) ? 0 : frequency; in entryIterator()
/external/autotest/server/cros/
Dchaos_dynamic_ap_list.conf18 frequency = 2432
31 frequency = 5745
65 frequency = 5745
87 frequency = 2437
100 frequency = 5745
113 frequency = 2432
126 frequency = 5745
185 frequency = 2432
262 frequency = 2432
275 frequency = 5745
[all …]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_receiver_audio.cc69 uint32_t* frequency, in CNGPayloadType() argument
76 *frequency = 8000; in CNGPayloadType()
85 *frequency = 8000; in CNGPayloadType()
87 *frequency = 16000; in CNGPayloadType()
94 *frequency = 32000; in CNGPayloadType()
101 *frequency = 48000; in CNGPayloadType()
157 uint32_t frequency) { in OnNewPayloadTypeCreated() argument
165 if (frequency == 8000) { in OnNewPayloadTypeCreated()
167 } else if (frequency == 16000) { in OnNewPayloadTypeCreated()
169 } else if (frequency == 32000) { in OnNewPayloadTypeCreated()
[all …]
Drtp_payload_registry.cc42 const uint32_t frequency, in RegisterReceivePayload() argument
89 if (rtp_payload_strategy_->PayloadIsCompatible(*payload, frequency, in RegisterReceivePayload()
102 payload_name, payload_name_length, frequency, channels, rate); in RegisterReceivePayload()
106 payload_name, payload_type, frequency, channels, rate); in RegisterReceivePayload()
141 const uint32_t frequency, in DeregisterAudioCodecOrRedTypeRegardlessOfPayloadType() argument
155 if (rtp_payload_strategy_->PayloadIsCompatible(*payload, frequency, in DeregisterAudioCodecOrRedTypeRegardlessOfPayloadType()
173 const uint32_t frequency, in ReceivePayloadType() argument
196 if (payload->typeSpecific.Audio.frequency == frequency && in ReceivePayloadType()
203 if (payload->typeSpecific.Audio.frequency == frequency && in ReceivePayloadType()
390 const uint32_t frequency, in PayloadIsCompatible() argument
[all …]
/external/autotest/server/cros/network/
Dhostap_config.py186 def get_channel_for_frequency(frequency): argument
194 return HostapConfig.CHANNEL_MAP[frequency]
206 for frequency, channel_iter in HostapConfig.CHANNEL_MAP.iteritems():
208 return frequency
323 return self.get_channel_for_frequency(self.frequency)
333 self.frequency = self.get_frequency_for_channel(value)
337 def frequency(self): member in HostapConfig
342 @frequency.setter
343 def frequency(self, value): member in HostapConfig
452 def __init__(self, mode=MODE_11B, channel=None, frequency=None, argument
[all …]
/external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
Dfake_media_process.h17 FakeMediaProcess() : frequency(0) {} in FakeMediaProcess()
27 sin(2.0 * 3.14 * frequency * 400.0 / sampling_freq_hz)); in Process()
32 frequency * 400.0 / sampling_freq_hz)); in Process()
35 frequency * 400.0 / sampling_freq_hz)); in Process()
37 frequency++; in Process()
42 int frequency;
/external/guava/guava-tests/test/com/google/common/collect/
DSimpleAbstractMultisetTest.java97 Integer frequency = backingMap.get(element); in add() local
98 if (frequency == null) { in add()
99 frequency = 0; in add()
102 return frequency; in add()
104 checkArgument(occurrences <= Integer.MAX_VALUE - frequency); in add()
105 backingMap.put(element, frequency + occurrences); in add()
106 return frequency; in add()
129 Integer frequency = backingMap.get(getElement()); in entryIterator() local
130 return (frequency == null) ? 0 : frequency; in entryIterator()
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
Dp2p_group_add.py51 global frequency
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, argument
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
196 frequency = value variable
214 persistent,frequency,persistent_group_object)
/external/llvm/docs/
DBlockFrequencyTerminology.rst11 Block Frequency is a metric for estimating the relative frequency of different
56 Block frequency is a relative metric that represents the number of times a
57 block executes. The ratio of a block frequency to the entry block frequency is
60 Block frequency is the main output of the ``BlockFrequencyInfo`` and
66 The implementation of the block frequency calculation analyses each loop,
93 mass is collected. This backedge mass is used to compute the exit frequency,
96 Implementation: Getting from mass and scale to frequency
103 We can get an initial frequency assignment (with entry frequency of 1.0) by
104 multiplying these masses and loop scales together. A given block's frequency
109 frequency assignment is shifted as necessary into the range of ``uint64_t``.
[all …]
/external/autotest/server/site_tests/network_WiFi_TDLSPing/
Dnetwork_WiFi_TDLSPing.py31 def ping_and_check_for_tdls(self, frequency, expected): argument
42 self.context.router.start_capture(frequency)
108 frequency = 2412
110 frequency=frequency, force_wmm=True))
153 self.ping_and_check_for_tdls(frequency, expected=False)
157 self.ping_and_check_for_tdls(frequency, expected=True)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DIncrementalSAXSource_Filter.java84 private int frequency=5; field in IncrementalSAXSource_Filter
134 eventcounter=frequency; in init()
199 frequency=eventcounter=events; in setReturnFrequency()
227 eventcounter=frequency; in characters()
249 eventcounter=frequency; in endElement()
260 eventcounter=frequency; in endPrefixMapping()
271 eventcounter=frequency; in ignorableWhitespace()
282 eventcounter=frequency; in processingInstruction()
293 eventcounter=frequency; in setDocumentLocator()
304 eventcounter=frequency; in skippedEntity()
[all …]
/external/mesa3d/src/gallium/auxiliary/os/
Dos_time.c60 static LARGE_INTEGER frequency; in os_time_get()
62 if(!frequency.QuadPart) in os_time_get()
63 QueryPerformanceFrequency(&frequency); in os_time_get()
65 return counter.QuadPart*INT64_C(1000000)/frequency.QuadPart; in os_time_get()
/external/autotest/server/site_tests/network_WiFi_MaskedBSSID/
Dnetwork_WiFi_MaskedBSSID.py24 frequency = 2412
26 frequency=frequency,
41 self.context.client.scan([frequency],
/external/autotest/server/
Dsite_linux_system.py303 def start_capture(self, frequency, argument
315 self._capture_interface = self.get_wlanif(frequency, 'monitor')
324 self._capture_interface, frequency, ht_type=ht_type)
364 def _get_phy_for_frequency(self, frequency, phytype, spatial_streams): argument
379 for phy_name in self.phys_for_frequency[frequency]:
411 def _get_wlanif(self, phytype, spatial_streams, frequency, same_phy_as): argument
425 if frequency and same_phy_as:
429 if not (frequency or same_phy_as):
444 elif frequency in self.phys_for_frequency:
446 frequency, phytype, spatial_streams)
[all …]
/external/autotest/server/site_tests/network_WiFi_RegDomain/
Dnetwork_WiFi_RegDomain.py71 for frequency, flags in band.frequency_flags.iteritems():
74 frequency))
90 def test_connect(wifi_context, frequency, expect_connect, hide_ssid): argument
103 pcap_name = '%d_connect_hidden.pcap' % frequency
106 pcap_name = '%d_connect_visible.pcap' % frequency
108 wifi_context.router.start_capture(frequency, filename=pcap_name)
111 frequency=frequency,
/external/webrtc/webrtc/modules/audio_coding/test/
DRTPFile.h31 const size_t payloadSize, uint32_t frequency) = 0;
50 uint32_t frequency);
59 uint32_t frequency; variable
73 uint32_t frequency) override;
110 uint32_t frequency) override;
DRTPFile.cc62 uint32_t frequency) in RTPPacket() argument
67 frequency(frequency) { in RTPPacket()
88 const size_t payloadSize, uint32_t frequency) { in Write() argument
90 payloadSize, frequency); in Write()
112 *offset = (packet->timeStamp / (packet->frequency / 1000)); in Read()
171 const size_t payloadSize, uint32_t frequency) { in Write() argument
180 offsetMs = (timeStamp / (frequency / 1000)); in Write()
/external/webrtc/webrtc/voice_engine/
Ddtmf_inband.cc91 DtmfInband::SetSampleRate(uint16_t frequency) in SetSampleRate() argument
93 if (frequency != 8000 && in SetSampleRate()
94 frequency != 16000 && in SetSampleRate()
95 frequency != 32000) in SetSampleRate()
101 _outputFrequencyHz = frequency; in SetSampleRate()
106 DtmfInband::GetSampleRate(uint16_t& frequency) in GetSampleRate() argument
108 frequency = _outputFrequencyHz; in GetSampleRate()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowScanResult.java14 …c static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) { in newInstance() argument
20 scanResult.frequency = frequency; in newInstance()
31 .append(", frequency: ").append(realObject.frequency) in toString()
/external/autotest/server/site_tests/network_WiFi_DisableEnable/
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/autotest/client/common_lib/cros/network/
Diw_runner.py120 frequency = None
133 iwbss = IwBss(bss, frequency, ssid, security, ht, signal)
135 bss = frequency = ssid = security = ht = None
139 frequency = int(line.split()[1])
151 bss_list.append(IwBss(bss, frequency, ssid, security, ht, signal))
287 def ibss_join(self, interface, ssid, frequency): argument
297 (self._command_iw, interface, ssid, frequency))
488 frequency = int(match_chan_info.group('frequency'))
489 current_band.frequencies.append(frequency)
492 current_band.frequency_flags[frequency] = frozenset(
[all …]
/external/wpa_supplicant_8/src/ap/
Ddfs.c504 int frequency = freq; in set_dfs_state() local
521 if (frequency == 0) in set_dfs_state()
522 frequency = cf1; in set_dfs_state()
526 frequency = cf1 - 10; in set_dfs_state()
530 frequency = cf1 - 30; in set_dfs_state()
534 frequency = cf1 - 70; in set_dfs_state()
542 wpa_printf(MSG_DEBUG, "DFS freq: %dMHz, n_chans: %d", frequency, in set_dfs_state()
545 ret += set_dfs_state_freq(iface, frequency, state); in set_dfs_state()
546 frequency = frequency + 20; in set_dfs_state()
559 int n_chans, n_chans1, i, j, frequency = freq, radar_n_chans = 1; in dfs_are_channels_overlapped() local
[all …]

12345678910>>...16