HomeSort by relevance Sort by last modified time
    Searched refs:freq (Results 51 - 75 of 306) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 102 int freq; local
111 " with config methods 0x%x (freq=%d)",
162 freq = rx_freq;
164 freq = p2p_channel_to_freq(p2p->cfg->country,
167 if (freq < 0) {
175 if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr,
285 int freq; local
290 freq= dev->oper_freq;
295 freq = dev->listen_freq > 0 ? dev->listen_freq : dev->oper_freq;
298 freq = dev->listen_freq > 0 ? dev->listen_freq : dev->oper_freq
    [all...]
p2p.c 164 int freq; local
171 freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class,
173 if (freq < 0) {
183 p2p->pending_listen_freq = freq;
191 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, 1024 * tu / 1000,
203 int freq; local
209 freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class,
211 if (freq < 0) {
217 p2p->pending_listen_freq = freq;
232 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0)
668 int freq; local
717 int freq = 0; local
1186 int freq; local
1300 int freq; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant.c 76 bss->freq, bss->level,
86 static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
133 social_channels[0] = freq;
138 social_channels[3] = freq;
156 static void p2p_rx_action_mlme(void *ctx, const u8 *buf, size_t len, int freq)
171 len - hdr_len, freq);
545 "%s GO ssid=\"%s\" freq=%d psk=%s go_dev_addr=" MACSTR
554 "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
634 "waiting for another freq=%u (off_channel_freq=%u "
731 static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst
    [all...]
  /packages/inputmethods/LatinIME/native/src/
correction.h 78 int getFinalFreq(const int freq, unsigned short **word, int* wordLength);
156 const int freq, int *editDistanceTable, const Correction* correction);
  /frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceProcessor.java 189 * a period greater than or equal to the period of the FREQ.
198 int freq = r.freq; local
200 if (EventRecurrence.MONTHLY >= freq) {
210 if (EventRecurrence.WEEKLY >= freq) {
222 if (EventRecurrence.DAILY >= freq) {
255 if (EventRecurrence.HOURLY >= freq) {
264 if (EventRecurrence.MINUTELY >= freq) {
273 if (EventRecurrence.SECONDLY >= freq) {
285 // BYSETPOS - we only handle rules like FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-
775 int freq = r.freq; local
    [all...]
EventRecurrence.java 51 public int freq; // SECONDLY, MINUTELY, etc. field in class:EventRecurrence
82 sParsePartMap.put("FREQ", new ParseFreq());
114 /** maps a FREQ value to an integer constant */
325 s.append("FREQ=");
326 switch (this.freq)
397 if (this.freq != WEEKLY) {
418 * "FREQ=MONTHLY;BYDAY=3TU" (the 3rd Tuesday of every month).
420 * Negative days, e.g. "FREQ=MONTHLY;BYDAY=-1TU" (the last Tuesday of every month),
423 * Rules that fire every week, such as "FREQ=MONTHLY;BYDAY=TU" (every Tuesday of every
430 if (this.freq != MONTHLY)
723 Integer freq = sParseFreqMap.get(value); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audio.c 220 SDL_Delay((audio->spec.samples*1000)/audio->spec.freq);
417 if ( desired->freq == 0 ) {
420 desired->freq = SDL_atoi(env);
423 if ( desired->freq == 0 ) {
425 desired->freq = 22050;
465 int samples = (desired->freq / 1000) * 46;
522 } else if ( desired->freq != audio->spec.freq ||
528 desired->freq,
530 audio->spec.freq) < 0 )
    [all...]
  /external/qemu/audio/
alsaaudio.c 156 int freq; member in struct:alsa_params_req
166 int freq; member in struct:alsa_params_obt
493 dolog ("frequency | %10d | %10d\n", req->freq, obt->freq);
537 unsigned int freq, nchannels; local
543 freq = req->freq;
582 err = FF(snd_pcm_hw_params_set_rate_near) (handle, hw_params, &freq, 0);
584 alsa_logerr2 (err, typ, "Failed to set frequency %d\n", req->freq);
714 bytes_per_sec = freq << (nchannels == 2)
    [all...]
ossaudio.c 85 int freq; member in struct:oss_params
236 dolog ("frequency | %10d | %10d\n", req->freq, obt->freq);
274 int fmt, freq, nchannels; local
288 freq = req->freq;
303 if (ioctl (fd, SNDCTL_DSP_SPEED, &freq)) {
304 oss_logerr2 (errno, typ, "Failed to set frequency %d\n", req->freq);
358 obt->freq = freq;
    [all...]
audio_template.h 125 sw->rate = st_rate_start (sw->info.freq, sw->hw->info.freq);
127 sw->rate = st_rate_start (sw->hw->info.freq, sw->info.freq);
150 sw->ratio = ((int64_t) sw->hw->info.freq << 32) / sw->info.freq;
154 sw->ratio = ((int64_t) sw->info.freq << 32) / sw->hw->info.freq;
422 ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
423 name, as->freq, as->nchannels, as->fmt)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserBigramDictionary.java 77 private static final String FREQ_COLUMN_FREQUENCY = "freq";
170 int freq = super.addBigram(word1, word2, FREQUENCY_FOR_TYPED); local
171 if (freq > FREQUENCY_MAX) freq = FREQUENCY_MAX;
173 if (freq == FREQUENCY_FOR_TYPED || mPendingWrites.isEmpty()) {
174 mPendingWrites.add(new Bigram(word1, word2, freq));
176 Bigram bi = new Bigram(word1, word2, freq);
182 return freq;
244 // main INNER JOIN frequency ON (main._id=freq.pair_id)
  /external/bluetooth/bluez/sbc/
sbcinfo.c 121 static char *freq2str(uint8_t freq)
123 switch (freq) {
177 int subbands, blocks, freq, method; local
201 freq = hdr.sampling_frequency;
282 printf("Sampling frequency\t%s\n", freq2str(freq));
  /external/qemu/distrib/sdl-1.2.12/src/audio/dmedia/
SDL_irixaudio.c 111 timeleft /= (this->spec.freq/1000);
153 audio_param[1] = spec->freq;
160 audio_param.value.i = spec->freq;
  /external/wpa_supplicant_8/src/ap/
hostapd.h 133 int freq);
137 int freq);
199 int freq; member in struct:hostapd_iface
  /packages/inputmethods/PinyinIME/jni/share/
dictbuilder.cpp 61 if (s1->freq > s2->freq)
63 if (s1->freq < s2->freq)
118 return static_cast<int>(((const LemmaEntry*)p2)->freq) -
119 static_cast<int>(((const LemmaEntry*)p1)->freq);
301 if (lemma_arr_[pos].freq > top_lmas_[top_lmas_num_ - 1].freq) {
310 top_lmas_[move_pos - 2].freq > lemma_arr_[pos].freq)) {
    [all...]
  /external/jpeg/
jchuff.c 705 jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])
722 freq[256] = 1; /* make sure 256 has a nonzero count */
736 if (freq[i] && freq[i] <= v) {
737 v = freq[i];
747 if (freq[i] && freq[i] <= v && i != c1) {
748 v = freq[i];
758 freq[c1] += freq[c2]
    [all...]
  /bionic/libc/kernel/common/linux/
timex.h 39 long freq; member in struct:timex
  /development/ndk/platforms/android-3/include/linux/
timex.h 39 long freq; member in struct:timex
  /external/iproute2/include/linux/can/
netlink.h 56 __u32 freq; /* CAN system clock frequency in Hz */ member in struct:can_clock
  /external/qemu/android/
audio-test.c 57 as.freq = 16000;
  /external/qemu/distrib/sdl-1.2.12/src/audio/amigaos/
SDL_ahiaudio.c 141 audio_req[current_buffer] -> ahir_Frequency = this->hidden->freq;
299 this->hidden->freq = spec->freq;
333 D(bug("AHI opened: freq:%ld mixbuf:%lx/%lx buflen:%ld bits:%ld channels:%ld\n",spec->freq,mixbuf[0],mixbuf[1],spec->size,this->hidden->bytespersample*8,spec->channels));
  /external/qemu/distrib/sdl-1.2.12/src/audio/dma/
SDL_dmaaudio.c 188 this->spec->freq;
297 value = spec->freq;
302 spec->freq = value;
436 frame_ticks = (float)(spec->samples*1000)/spec->freq;
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio_dma8.c 218 DEBUG_PRINT(("freq=%d\n", spec->freq));
257 DEBUG_PRINT((DEBUG_NAME "freq %d: %lu Hz, clock %lu, prediv %d\n",
264 MINTAUDIO_numfreq=SDL_MintAudio_SearchFrequency(this, spec->freq);
265 spec->freq=MINTAUDIO_frequencies[MINTAUDIO_numfreq].frequency;
271 DEBUG_PRINT(("freq=%d\n", spec->freq));
SDL_mintaudio_gsxb.c 215 DEBUG_PRINT(("freq=%d\n", spec->freq));
301 DEBUG_PRINT((DEBUG_NAME "freq %d: %lu Hz, clock %lu, prediv %d\n",
308 MINTAUDIO_numfreq=SDL_MintAudio_SearchFrequency(this, spec->freq);
309 spec->freq=MINTAUDIO_frequencies[MINTAUDIO_numfreq].frequency;
315 DEBUG_PRINT(("freq=%d\n", spec->freq));
SDL_mintaudio_mcsn.c 225 DEBUG_PRINT(("freq=%d\n", spec->freq));
277 DEBUG_PRINT((DEBUG_NAME "freq %d: %lu Hz, clock %lu, prediv %d\n",
284 MINTAUDIO_numfreq=SDL_MintAudio_SearchFrequency(this, spec->freq);
285 spec->freq=MINTAUDIO_frequencies[MINTAUDIO_numfreq].frequency;
291 DEBUG_PRINT(("freq=%d\n", spec->freq));

Completed in 2190 milliseconds

1 23 4 5 6 7 8 91011>>