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

123456

/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
H A Doptions.js12 options.frequency.disabled = isDeactivated; // The control manipulability.
19 options.frequency.value = localStorage.frequency;
20 // The display frequency, in minutes.
24 // Set the display activation and frequency.
30 options.frequency.onchange = function() {
31 localStorage.frequency = options.frequency.value;
H A Dbackground.js25 localStorage.frequency = 1; // The display frequency, in minutes.
31 // While activated, show notifications at the display frequency.
41 localStorage.frequency <= interval
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/
H A DBiquad.h54 // frequency is 0 - 1 normalized, resonance and dbGain are in decibels.
56 void setLowpassParams(double frequency, double resonance);
57 void setHighpassParams(double frequency, double resonance);
58 void setBandpassParams(double frequency, double Q);
59 void setLowShelfParams(double frequency, double dbGain);
60 void setHighShelfParams(double frequency, double dbGain);
61 void setPeakingParams(double frequency, double Q, double dbGain);
62 void setAllpassParams(double frequency, double Q);
63 void setNotchParams(double frequency, double Q);
80 const float* frequency,
[all...]
H A DBiquad.cpp305 void Biquad::setLowShelfParams(double frequency, double dbGain)
308 frequency = std::max(0.0, std::min(frequency, 1.0));
312 if (frequency == 1) {
316 } else if (frequency > 0) {
317 double w0 = piDouble * frequency;
334 // When frequency is 0, the z-transform is 1.
340 void Biquad::setHighShelfParams(double frequency, double dbGain)
343 frequency = std::max(0.0, std::min(frequency, 1.
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_time.c60 static LARGE_INTEGER frequency;
62 if(!frequency.QuadPart)
63 QueryPerformanceFrequency(&frequency);
65 return counter.QuadPart*INT64_C(1000000)/frequency.QuadPart;
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_time.c60 static LARGE_INTEGER frequency;
62 if(!frequency.QuadPart)
63 QueryPerformanceFrequency(&frequency);
65 return counter.QuadPart*INT64_C(1000000)/frequency.QuadPart;
/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
/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/robolectric/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/chromium_org/native_client_sdk/src/examples/api/audio/
H A Daudio.cc43 // parameter, the frequency. The frequency parameter is encoded as a string
52 // Set the frequency of the sine wave to |frequency|. Posts a message back
53 // to the browser with the new frequency value.
54 void SetFrequency(double frequency);
56 // The frequency property accessor.
57 double frequency() const { return frequency_; } function in class:AudioInstance
64 const double frequency = instance->frequency(); local
138 SetFrequency(double frequency) argument
[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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dprofiledata_unittest.cc403 const int frequency = 1; local
405 0, 3, 0, 1000000 / frequency, 0, // binary header
411 options.set_frequency(frequency);
446 const int frequency = 1; local
448 0, 3, 0, 1000000 / frequency, 0, // binary header
453 options.set_frequency(frequency);
459 options.set_frequency(frequency * 2);
472 // Like StartStopEmpty, but uses a different file name and frequency.
474 const int frequency = 2; local
476 0, 3, 0, 1000000 / frequency,
492 const int frequency = 2; local
516 const int frequency = 2; local
542 const int frequency = 2; local
589 const int frequency = 2; // Different frequency than used above. local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dprofiledata_unittest.cc403 const int frequency = 1; local
405 0, 3, 0, 1000000 / frequency, 0, // binary header
411 options.set_frequency(frequency);
446 const int frequency = 1; local
448 0, 3, 0, 1000000 / frequency, 0, // binary header
453 options.set_frequency(frequency);
459 options.set_frequency(frequency * 2);
472 // Like StartStopEmpty, but uses a different file name and frequency.
474 const int frequency = 2; local
476 0, 3, 0, 1000000 / frequency,
492 const int frequency = 2; local
516 const int frequency = 2; local
542 const int frequency = 2; local
589 const int frequency = 2; // Different frequency than used above. local
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofile-handler.h137 int32 frequency; /* Profiling frequency */ member in struct:ProfileHandlerState
H A Dprofiledata.h91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) { argument
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofile-handler.h137 int32 frequency; /* Profiling frequency */ member in struct:ProfileHandlerState
H A Dprofiledata.h91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) { argument
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh61 QueryPerformanceFrequency(&frequency);
80 return ((double)L.QuadPart /(double)frequency.QuadPart) ;
85 LARGE_INTEGER frequency; member in class:Portable_Timer
/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...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DOscillatorNode.cpp67 m_frequency = AudioParam::create(context, "frequency", 440, 0, 100000);
179 // Get the sample-accurate frequency values and convert to phase increments.
185 float frequency = m_frequency->smoothedValue(); local
186 finalScale *= frequency;
215 // Convert from frequency to wavetable increment.
273 float frequency = 0; local
279 frequency = m_frequency->smoothedValue();
282 frequency *= detuneScale;
283 m_periodicWave->waveDataForFundamentalFrequency(frequency, lowerWaveData, higherWaveData, tableInterpolationFactor);
286 float incr = frequency * rateScal
[all...]

Completed in 750 milliseconds

123456