HomeSort by relevance Sort by last modified time
    Searched refs:freq (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_reorder.cpp 131 int32 freq; local
153 for (freq = 0; freq < 3*sfb_lines; freq += 3)
159 Scratch_mem[freq ] = tmp1;
160 Scratch_mem[freq+1] = tmp2;
161 Scratch_mem[freq+2] = tmp3;
174 for (freq = 0; freq < 3*sfb_lines; freq += 3
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
njd.h 60 #define CALCULATE_HINDO(freq, base, high, div) \
61 ((NJ_HINDO)((((freq) * ((high) - (base))) / (div)) + (base)))
63 #define NORMALIZE_HINDO(freq, max, min) \
64 (((freq) < (min)) ? (min) : (((freq) > (max)) ? (max) : (freq)))
  /external/chromium_org/tools/traceline/traceline/
rdtsc.h 21 LARGE_INTEGER freq, now; local
22 if (QueryPerformanceFrequency(&freq) == 0) {
25 freq_ = freq.QuadPart;
  /external/qemu/util/
qemu-timer-common.c 35 LARGE_INTEGER freq; local
37 ret = QueryPerformanceFrequency(&freq);
42 clock_freq = freq.QuadPart;
  /external/wpa_supplicant_8/src/ap/
dfs.h 14 int hostapd_dfs_complete_cac(struct hostapd_iface *iface, int success, int freq,
17 int hostapd_dfs_radar_detected(struct hostapd_iface *iface, int freq,
21 int hostapd_dfs_nop_finished(struct hostapd_iface *iface, int freq,
  /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/compiler-rt/test/builtins/timing/
timing.h 17 uint64_t freq = 0;
18 size_t freqSize = sizeof( freq );
19 int err2 = sysctlbyname( "hw.cpufrequency", &freq, &freqSize, NULL, 0L );
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
  /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/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;
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
opj_clock.c 44 LARGE_INTEGER freq , t ; local
45 /* freq is the clock speed of the CPU */
46 QueryPerformanceFrequency(&freq) ;
47 /* cout << "freq = " << ((double) freq.QuadPart) << endl; */
50 return ( t.QuadPart /(OPJ_FLOAT64) freq.QuadPart ) ;
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 48 freq = calc_freq(hostRecording, samplingRate)
49 print "Expected Freq ", signalFrequency, "Actual Freq ", freq, "Threshold % ", threshold
50 diff = abs(freq - signalFrequency)
55 outputData.append(freq)
  /external/wpa_supplicant_8/wpa_supplicant/
offchannel.h 13 int offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq,
17 unsigned int freq, const u8 *dst,
25 unsigned int freq, unsigned int duration);
27 unsigned int freq);
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...]
  /external/speex/libspeex/
lsp.h 56 int lpc_to_lsp (spx_coef_t *a, int lpcrdr, spx_lsp_t *freq, int nb, spx_word16_t delta, char *stack);
57 void lsp_to_lpc(spx_lsp_t *freq, spx_coef_t *ak, int lpcrdr, char *stack);
  /external/deqp/framework/delibs/deutil/
deClock.c 40 LARGE_INTEGER freq; local
43 QueryPerformanceFrequency(&freq);
44 DE_ASSERT(freq.LowPart != 0 || freq.HighPart != 0);
46 DE_ASSERT(freq.QuadPart >= 1000000);
47 return count.QuadPart / (freq.QuadPart / 1000000);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TimeUtils.cpp 35 static LARGE_INTEGER freq; local
38 bNotInit = (QueryPerformanceFrequency( &freq ) == FALSE);
43 return currVal.QuadPart / (freq.QuadPart / 1000);
  /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/wpa_supplicant_8/src/p2p/
p2p_utils.c 116 int p2p_freq_to_channel(unsigned int freq, u8 *op_class, u8 *channel)
119 if (freq >= 2412 && freq <= 2472) {
120 if ((freq - 2407) % 5)
124 *channel = (freq - 2407) / 5;
128 if (freq == 2484) {
134 if (freq >= 5180 && freq <= 5240) {
135 if ((freq - 5000) % 5)
139 *channel = (freq - 5000) / 5
292 int freq = p2p_channel_to_freq(op->reg_class, local
391 int freq = 0; local
    [all...]
  /external/jpeg/
jchuff.h 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));
  /external/pdfium/core/src/fxcodec/libjpeg/
jchuff.h 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long 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/jpeg-6b/
jchuff.h 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));

Completed in 3136 milliseconds

1 2 3 4 5 6 7 8 91011>>