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

1 2 3 4 5

  /external/qemu/distrib/sdl-1.2.12/src/audio/sun/
SDL_sunaudio.h 42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
  /external/skia/bench/
BenchSysTimer_windows.cpp 56 LARGE_INTEGER frequency; local
57 if (0 == ::QueryPerformanceFrequency(&frequency)) {
61 / static_cast<double>(frequency.QuadPart)
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 44 * The frequency in MHz of the channel over which the client is communicating
47 public int frequency; field in class:ScanResult
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) {
61 this.frequency = frequency;
78 append(", frequency: ").
79 append(frequency);
95 dest.writeInt(frequency);
  /frameworks/wilhelm/src/itf/
IVibra.c 55 static SLresult IVibra_SetFrequency(SLVibraItf self, SLmilliHertz frequency)
62 } else if (!(d->minFrequency <= frequency && frequency <= d->maxFrequency)) {
67 thiz->mFrequency = frequency;
85 SLmilliHertz frequency = thiz->mFrequency; local
87 *pFrequency = frequency;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnWord.java 32 public int frequency; field in class:WnnWord
60 * @param frequency The score of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
83 * @param frequency The score of word
85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) {
86 this(0, candidate, stroke, posTag, frequency, 0);
96 * @param frequency The score of word
98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) {
99 this(id, candidate, stroke, posTag, frequency, 0)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 115 Count frequency = backingMap.get(getElement()); local
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.get()
    [all...]
Iterables.java 340 * @see Collections#frequency
342 public static int frequency(Iterable<?> iterable, @Nullable Object element) { method in class:Iterables
349 return Iterators.frequency(iterable.iterator(), element);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 112 Count frequency = backingMap.get(getElement()); local
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.get()
    [all...]
Iterables.java 322 * @see Collections#frequency
324 public static int frequency(Iterable<?> iterable, @Nullable Object element) { method in class:Iterables
331 return Iterators.frequency(iterable.iterator(), element);
    [all...]
  /external/bluetooth/bluez/sbc/
sbcdec.c 54 int format = AFMT_S16_BE, frequency, channels; local
106 switch (sbc.frequency) {
108 frequency = 16000;
112 frequency = 32000;
116 frequency = 44100;
120 frequency = 48000;
123 frequency = 0;
129 filename, frequency, sbc.subbands * 4 + 4, sbc.bitpool,
143 au_hdr.sample_rate = BE_INT(frequency);
164 if (ioctl(ad, SNDCTL_DSP_SPEED, &frequency) < 0)
    [all...]
sbc.h 37 /* sampling frequency */
70 uint8_t frequency; member in struct:sbc_struct
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/fractal/
FractalSum.java 56 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) {
103 this.frequency = frequency;
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.h 50 Uint32 frequency; /* One of 11025, 22050, or 44100 Hz */ member in struct:WaveFMT
  /external/chromium/base/
time_win_unittest.cc 158 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/guava/guava-tests/test/com/google/common/collect/
SimpleAbstractMultisetTest.java 72 Integer frequency = backingMap.get(element); local
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()); local
105 return (frequency == null) ? 0 : frequency;
    [all...]
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileNode.cpp 48 static LARGE_INTEGER frequency; local
49 if (!frequency.QuadPart)
50 QueryPerformanceFrequency(&frequency);
53 return static_cast<double>(counter.QuadPart) / frequency.QuadPart;
  /packages/inputmethods/LatinIME/native/jni/src/
bigram_dictionary.cpp 41 bool BigramDictionary::addWordBigram(unsigned short *word, int length, int frequency) {
47 AKLOGI("Bigram: Found word = %s, freq = %d :", s, frequency);
54 if (frequency > mBigramFreq[insertAt] || (mBigramFreq[insertAt] == frequency
67 mBigramFreq[insertAt] = frequency;
129 // Due to space constraints, the frequency for bigrams is approximate - the lower the
130 // unigram frequency, the worse the precision. The theoritical maximum error in
131 // resulting frequency is 8 - although in the practice it's never bigger than 3 or 4
134 const int frequency = local
136 if (addWordBigram(bigramBuffer, length, frequency)) {
176 const int frequency = UnigramDictionary::MASK_ATTRIBUTE_FREQUENCY & bigramFlags; local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 37 UserDictionary.Words.FREQUENCY,
65 int frequency = 1; local
66 UserDictionary.Words.addWord(getContext(), word, frequency, local
77 assertEquals(frequency, cursor.getInt(FREQUENCY_INDEX));
88 private void assertWord(String word, int frequency, String shortcut, Locale locale,
91 UserDictionary.Words.addWord(mContext, word, frequency, shortcut, locale);
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 38 * The engine supports two different "languages", each with their own frequency
198 * frequency mappings contain frequencies for each of these characters.
253 final int frequency = mFrequenciesMap.get(alphabet); local
255 if (frequency > 0) {
256 // This is the wavelength in samples. The frequency is chosen so that the
257 // waveLength is always a multiple of two and frequency divides the
259 final int waveLength = SAMPLING_RATE_HZ / frequency;
  /external/bluetooth/bluez/audio/
a2dp-codecs.h 74 uint8_t frequency:4; member in struct:__anon1910
86 uint8_t frequency:6; member in struct:__anon1911
95 uint8_t frequency:4; member in struct:__anon1912
110 uint8_t frequency:6; member in struct:__anon1913
a2dp.h 75 uint8_t frequency:4; member in struct:sbc_codec_cap
88 uint8_t frequency:6; member in struct:mpeg_codec_cap
98 uint8_t frequency:4; member in struct:sbc_codec_cap
114 uint8_t frequency:6; member in struct:mpeg_codec_cap
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio.h 43 Uint32 frequency; member in struct:__anon10711
52 int numfreq; /* Number of selected frequency */
136 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
SDL_mintaudio_stfa.h 89 unsigned short frequency; member in struct:__anon10718
  /external/wpa_supplicant_6/wpa_supplicant/
config_ssid.h 327 * 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
  /frameworks/av/media/libmedia/
ToneGenerator.cpp 1344 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local
    [all...]

Completed in 385 milliseconds

1 2 3 4 5