/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
UserDictionaryCompatUtils.java | 33 final int freq, final String shortcut, final Locale locale) { 35 CompatUtils.invoke(Words.class, null, METHOD_addWord, context, word, freq, shortcut, 50 Words.addWord(context, word, freq, localeType);
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
TimeUtils.cpp | 35 static LARGE_INTEGER freq; local 38 bNotInit = (QueryPerformanceFrequency( &freq ) == FALSE); 43 return currVal.QuadPart / (freq.QuadPart / 1000);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/ |
lsf_to_lsp.c | 34 int16_t freq; /* normalized frequency in Q15 (0..1) */ local 39 freq = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(lsf[i], 20861, 15); 46 k = WEBRTC_SPL_RSHIFT_W16(freq, 8); 47 diff = (freq&0x00ff);
|
lsp_to_lsf.c | 35 int16_t freq; /* lsf/(2*pi) (Q16) */ local 73 /* freq in Q16 */ 74 freq = (int16_t)WEBRTC_SPL_LSHIFT_W16(k,9)+tmp; 76 /* lsf = freq*2*pi */ 77 (*lsfPtr) = (int16_t)(((int32_t)freq*25736)>>15);
|
/external/llvm/include/llvm/Support/ |
BlockFrequency.h | 29 BlockFrequency(uint64_t Freq = 0) : Frequency(Freq) { } 49 BlockFrequency &operator+=(const BlockFrequency &Freq); 50 const BlockFrequency operator+(const BlockFrequency &Freq) const;
|
/external/lzma/C/ |
Ppmd7Dec.c | 87 if ((count = rc->GetThreshold(rc, p->MinContext->SummFreq)) < (hiCnt = s->Freq))
90 rc->Decode(rc, 0, s->Freq);
100 if ((hiCnt += (++s)->Freq) > count)
103 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
158 hiCnt += (s->Freq & k);
172 for (hiCnt = 0; (hiCnt += (*pps)->Freq) <= count; pps++);
174 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
|
/external/qemu/audio/ |
audio_win_int.c | 21 wfx->nSamplesPerSec = as->freq; 22 wfx->nAvgBytesPerSec = as->freq << (as->nchannels == 2); 47 dolog ("Internal logic error: Bad audio format %d\n", as->freq); 67 as->freq = wfx->nSamplesPerSec;
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_AudioSpec.3 | 8 int freq;
|
/external/valgrind/main/massif/tests/ |
basic2.vgtest | 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out --detailed-freq=1 --max-snapshots=10
|
long-names.vgtest | 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --massif-out-file=massif.out --detailed-freq=3
|
pages_as_heap.vgtest | 2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --pages-as-heap=yes --massif-out-file=massif.out --detailed-freq=3
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-test.py | 74 freq = 0 76 freq = props["frequency"] 83 print " %s :: ssid='%s' wpa=%s wpa2=%s quality=%d%% rate=%d freq=%d" % (bssid, ssid, wpa, wpa2, qual, maxrate, freq)
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
scanresults.cpp | 77 QString ssid, bssid, freq, signal, flags; local 88 else if ((*it).startsWith("freq=")) 89 freq = (*it).mid(pos); 102 item->setText(2, freq);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
EnergyProbe.java | 56 public int capture(int freq) throws InterruptedException { 60 if (freq > mMaxFrequency) { 69 if (freq == mMaxFrequency) { 72 int bin = 2 * (freq * CAPTURE_SIZE / mMaxFrequency / 2);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
offchannel.c | 82 "waiting for another freq=%u (off_channel_freq=%u " 204 * @freq: The frequency in MHz indicating the channel on which the frame is to 222 int offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq, 226 unsigned int freq, const u8 *dst, 233 wpa_printf(MSG_DEBUG, "Off-channel: Send action frame: freq=%d dst=" 235 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid), 258 wpa_s->pending_action_freq = freq; 261 if (freq != 0 && wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) { 281 if (freq) { 284 if (tx_iface->assoc_freq == freq) { [all...] |
p2p_supplicant.h | 27 int auth, int go_intent, int freq, int persistent_id, 30 int freq, struct wpa_ssid *ssid); 33 int freq, int ht40, int vht); 73 void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq, 88 struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq, 153 u8 category, const u8 *data, size_t len, int freq); 155 unsigned int freq, unsigned int duration); 157 unsigned int freq); 222 int freq) 227 unsigned int freq, [all...] |
bgscan_learn.c | 25 int freq; member in struct:bgscan_learn_bss 134 bss->freq = atoi(buf + 4 + 18); 137 "entry: " MACSTR " freq=%d", 138 MAC2STR(bss->bssid), bss->freq); 179 MAC2STR(bss->bssid), bss->freq); 220 if (in_array(freqs, bss->freq)) 226 freqs[*count] = bss->freq; 246 wpa_printf(MSG_DEBUG, "bgscan learn: Probe new freq " 366 if (in_array(freqs, modes[i].channels[j].freq)) 373 freqs[count] = modes[i].channels[j].freq; [all...] |
/external/chromium_org/media/audio/ |
simple_sources.h | 18 // |channels| is the number of audio channels, |freq| is the frequency in 21 SineWaveAudioSource(int channels, double freq, double sample_freq);
|
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/ |
aica.h | 33 void aica_play(int ch,int mode,unsigned long smpptr,int looptst,int loopend,int freq,int vol,int pan,int loopflag); 37 void aica_freq(int ch,int freq);
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
power.html | 65 <button id="cpu-freq-show-button" class="show-button" 69 <td id="cpu-freq-cell" class="plots-cell"> 70 <div id="cpu-freq-section" class="section-div"> 71 <div class="plots-div" id="cpu-freq-plots-div"></div> 72 <button id="cpu-freq-reload-button" class="reload-button"
|
/external/chromium_org/third_party/opus/src/silk/float/ |
apply_sine_window_FLP.c | 46 silk_float freq, c, S0, S1; local 53 freq = PI / ( length + 1 ); 56 c = 2.0f - freq * freq; 63 S1 = freq;
|
/external/libopus/silk/float/ |
apply_sine_window_FLP.c | 46 silk_float freq, c, S0, S1; local 53 freq = PI / ( length + 1 ); 56 c = 2.0f - freq * freq; 63 S1 = freq;
|
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
RecurrenceProcessorTest.java | 175 verifyRecurrence("20060205T100000", "FREQ=MONTHLY;COUNT=3", 187 verifyRecurrence("20060205T100000", "FREQ=MONTHLY;INTERVAL=2;COUNT=3", 201 verifyRecurrence("20060205T100000", "FREQ=MONTHLY;INTERVAL=5;COUNT=5", 217 "FREQ=MONTHLY;UNTIL=20060201T200000Z;BYDAY=TU,WE", 238 "FREQ=MONTHLY;UNTIL=20060301T200000Z;BYDAY=+1SU,+2MO,+3TU,+4WE,+5MO,+5TU,+5WE,+6TH", 260 "FREQ=MONTHLY;UNTIL=20060301T200000Z;BYDAY=-1SU,-2MO,-3TU,-4TU,-4WE,-5MO,-5TU,-5WE,-6TH", 277 "FREQ=MONTHLY;UNTIL=20060301T200000Z;BYMONTHDAY=1,2,5,28,31", 293 "FREQ=MONTHLY;UNTIL=20060301T200000Z;BYMONTHDAY=-1,-5,-27,-28,-31", 307 verifyRecurrence("20060205T100000", "FREQ=MONTHLY;COUNT=3", 336 verifyRecurrence("20060205T100000", "FREQ=MONTHLY;COUNT=3\nFREQ=WEEKLY;COUNT=2" [all...] |
/external/wpa_supplicant_8/src/p2p/ |
p2p_invitation.c | 172 int freq; local 182 p2p_dbg(p2p, "Received Invitation Request from " MACSTR " (freq=%d)", 255 p2p_dbg(p2p, "Unknown forced freq %d MHz from invitation_process()", 263 p2p_dbg(p2p, "forced freq %d MHz not in the supported channels interaction", 355 freq = rx_freq; 357 freq = p2p_channel_to_freq(p2p->cfg->reg_class, 359 if (freq < 0) { 389 if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr, 460 int freq = p2p_channel_to_freq(p2p->op_reg_class, local 462 if (freq < 0 490 int freq; local [all...] |
/external/chromium_org/third_party/libwebp/utils/ |
quant_levels.c | 29 int freq[NUM_SYMBOLS] = { 0 }; local 54 num_levels_in += (freq[data[n]] == 0); 57 ++freq[data[n]]; 87 if (freq[s] > 0) { 88 q_sum[slot] += s * freq[s]; 89 q_count[slot] += freq[s]; 108 err += freq[s] * error * error;
|