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

123

/external/qemu/distrib/sdl-1.2.15/src/audio/sun/
H A DSDL_sunaudio.h42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
H A DSDL_sunaudio.c147 sleepy = ((left - fragsize)/frequency);
349 frequency = 8;
358 frequency = spec->freq/1000;
/external/guava/guava-tests/test/com/google/common/collect/
H A DSimpleAbstractMultisetTest.java72 Integer frequency = backingMap.get(element);
73 if (frequency == null) {
74 frequency = 0;
77 return frequency;
79 checkArgument(occurrences <= Integer.MAX_VALUE - frequency);
80 backingMap.put(element, frequency + occurrences);
81 return frequency;
104 Integer frequency = backingMap.get(getElement());
105 return (frequency == null) ? 0 : frequency;
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/fractal/
H A DFractalSum.java56 private float frequency; field in class:FractalSum
65 this.frequency = 1f;
73 for (float f = this.frequency, a = this.amplitude; f < this.maxFreq; f *= this.lacunarity, a *= this.roughness) {
98 return this.frequency;
102 public Fractal setFrequency(final float frequency) { argument
103 this.frequency = frequency;
H A DFractal.java47 public Fractal setFrequency(final float frequency); argument
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java115 Count frequency = backingMap.get(getElement());
116 if (frequency != null) {
117 count = frequency.get();
138 for (Count frequency : backingMap.values()) {
139 frequency.set(0);
195 int frequency = currentEntry.getValue().get();
196 if (frequency <= 0) {
209 Count frequency = backingMap.get(element);
210 return (frequency == null) ? 0 : frequency
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractMapBasedMultiset.java112 Count frequency = backingMap.get(getElement());
113 if (frequency != null) {
114 count = frequency.get();
135 for (Count frequency : backingMap.values()) {
136 frequency.set(0);
192 int frequency = currentEntry.getValue().get();
193 if (frequency <= 0) {
206 Count frequency = backingMap.get(element);
207 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/skia/bench/
H A DBenchSysTimer_windows.cpp56 LARGE_INTEGER frequency; local
57 if (0 == ::QueryPerformanceFrequency(&frequency)) {
61 / static_cast<double>(frequency.QuadPart)
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio.c89 /* Add a new frequency/clock/predivisor to the current list */
90 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock, argument
99 /* Search where to insert the frequency (highest first) */
101 if (frequency > MINTAUDIO_frequencies[p].frequency) {
114 MINTAUDIO_frequencies[p].frequency = frequency;
122 /* Search for the nearest frequency */
134 if (desired_freq >= ((MINTAUDIO_frequencies[i].frequency+
135 MINTAUDIO_frequencies[i+1].frequency)>>
[all...]
H A DSDL_mintaudio_stfa.h87 unsigned short frequency; member in struct:__anon10500
H A DSDL_mintaudio.h43 Uint32 frequency; member in struct:__anon10495
52 int numfreq; /* Number of selected frequency */
104 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_wave.h50 Uint32 frequency; /* One of 11025, 22050, or 44100 Hz */ member in struct:WaveFMT
/external/arduino/hardware/arduino/cores/arduino/
H A DTone.cpp228 // frequency (in hertz) and duration (in milliseconds).
230 void tone(uint8_t _pin, unsigned int frequency, unsigned long duration) argument
247 ocr = F_CPU / frequency / 2 - 1;
251 ocr = F_CPU / frequency / 2 / 8 - 1;
256 ocr = F_CPU / frequency / 2 / 32 - 1;
262 ocr = F_CPU / frequency / 2 / 64 - 1;
267 ocr = F_CPU / frequency / 2 / 128 - 1;
273 ocr = F_CPU / frequency / 2 / 256 - 1;
278 ocr = F_CPU / frequency / 2 / 1024 - 1;
305 ocr = F_CPU / frequency /
[all...]
H A DWProgram.h24 void tone(uint8_t _pin, unsigned int frequency, unsigned long duration = 0);
/external/chromium-trace/trace-viewer/src/
H A Dlinux_perf_exynos_parser.js74 exynosBusfreqSample: function(name, ts, frequency) {
78 counter.seriesNames.push('frequency');
80 tracing.getStringColorId(counter.name + '.' + 'frequency'));
83 counter.samples.push(frequency);
90 var event = /frequency=(\d+)/.exec(eventBase[5]);
102 var event = /frequency=(\d+)/.exec(eventBase[5]);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java84 private int frequency=5; field in class:IncrementalSAXSource_Filter
134 eventcounter=frequency;
199 frequency=eventcounter=events;
227 eventcounter=frequency;
249 eventcounter=frequency;
260 eventcounter=frequency;
271 eventcounter=frequency;
282 eventcounter=frequency;
293 eventcounter=frequency;
304 eventcounter=frequency;
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dtesting.h107 LARGE_INTEGER frequency;
108 QueryPerformanceFrequency(&frequency); // counts per second
109 usecs_per_count_ = 1000000.0 / static_cast<double>(frequency.QuadPart);
/external/chromium/base/
H A Dtime_win_unittest.cc158 LARGE_INTEGER frequency; local
159 BOOL rv = QueryPerformanceFrequency(&frequency);
161 EXPECT_GT(frequency.QuadPart, 1000000); // Expect at least 1MHz
163 frequency.QuadPart / 1000000.0);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DCollections2Test.java243 * @tests java.util.Collections#frequency(java.util.Collection,Object)
247 Collections.frequency(null, null);
248 fail("Assert 0: frequency(null,<any>) must throw NPE");
254 Collections.frequency(strings, "1"));
257 .frequency(strings, "2"));
260 Collections.frequency(strings, "3"));
263 Collections.frequency(strings, null));
269 .frequency(objects, new Integer(1)));
272 .frequency(objects, new Long(1)));
275 Collections.frequency(object
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig_ssid.h327 * frequency - Channel frequency in megahertz (MHz) for IBSS
333 * configured SSID is already present, the frequency of the network
336 int frequency; member in struct:wpa_ssid
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_ssid.h356 * frequency - Channel frequency in megahertz (MHz) for IBSS
362 * configured SSID is already present, the frequency of the network
365 int frequency; member in struct:wpa_ssid
H A Dap.c55 if (ssid->frequency == 0) {
59 } else if (ssid->frequency >= 2412 && ssid->frequency <= 2472) {
61 conf->channel = (ssid->frequency - 2407) / 5;
62 } else if ((ssid->frequency >= 5180 && ssid->frequency <= 5240) ||
63 (ssid->frequency >= 5745 && ssid->frequency <= 5825)) {
65 conf->channel = (ssid->frequency - 5000) / 5;
67 wpa_printf(MSG_ERROR, "Unsupported AP mode frequency
[all...]
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp83 double frequency; // clocks per microsecond member in struct:CvProcessorInfo
141 cpu_info->frequency = (double)val;
214 cpu_info->frequency = (double)freq.QuadPart;
217 cpu_info->frequency = 1;
258 cpu_info->frequency = strtod( pos + 1, &pos );
264 cpu_info->frequency = 1;
266 assert( cpu_info->frequency > 1 );
729 if( cpu_info->frequency > 1 &&
767 return icvGetProcessorInfo()->frequency;
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.cpp48 static LARGE_INTEGER frequency; local
49 if (!frequency.QuadPart)
50 QueryPerformanceFrequency(&frequency);
53 return static_cast<double>(counter.QuadPart) / frequency.QuadPart;

Completed in 561 milliseconds

123