Searched defs:freq (Results 1 - 25 of 228) sorted by relevance

12345678910

/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_clock.c44 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 ) ;
/external/deqp/framework/delibs/deutil/
H A DdeClock.c40 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);
/external/chromium_org/third_party/libjpeg_turbo/
H A Dtjutil.c35 LARGE_INTEGER freq; local
36 if(!QueryPerformanceFrequency(&freq)) return 0.0;
37 return (double)freq.QuadPart;
/external/qemu/util/
H A Dqemu-timer-common.c35 LARGE_INTEGER freq; local
37 ret = QueryPerformanceFrequency(&freq);
42 clock_freq = freq.QuadPart;
/external/chromium_org/media/audio/
H A Dsimple_sources_unittest.cc21 static const int freq = 200; local
27 SineWaveAudioSource source(1, freq, params.sample_rate());
33 uint32 half_period = AudioParameters::kTelephoneSampleRate / (freq * 2);
H A Dsimple_sources.cc20 double freq, double sample_freq)
22 f_(freq / sample_freq),
19 SineWaveAudioSource(int channels, double freq, double sample_freq) argument
/external/chromium_org/third_party/opus/src/silk/float/
H A Dapply_sine_window_FLP.c46 silk_float freq, c, S0, S1; local
53 freq = PI / ( length + 1 );
56 c = 2.0f - freq * freq;
63 S1 = freq;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dlsf_to_lsp.c34 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);
H A Dlsp_to_lsf.c35 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/libopus/silk/float/
H A Dapply_sine_window_FLP.c46 silk_float freq, c, S0, S1; local
53 freq = PI / ( length + 1 );
56 c = 2.0f - freq * freq;
63 S1 = freq;
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Dvpx_timer.h82 LARGE_INTEGER freq, diff; local
86 QueryPerformanceFrequency(&freq);
87 return diff.QuadPart * 1000000 / freq.QuadPart;
/external/chromium_org/tools/traceline/traceline/
H A Drdtsc.h21 LARGE_INTEGER freq, now; local
22 if (QueryPerformanceFrequency(&freq) == 0) {
25 freq_ = freq.QuadPart;
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_timer.h79 LARGE_INTEGER freq, diff; local
83 QueryPerformanceFrequency(&freq);
84 return diff.QuadPart * 1000000 / freq.QuadPart;
/external/aac/libFDK/include/
H A Dmdct.h115 FIXP_DBL *freq; member in union:__anon153::__anon154
/external/chromium_org/third_party/webrtc/sound/
H A Dsoundsysteminterface.h51 unsigned int freq; member in struct:rtc::SoundSystemInterface::OpenParams
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_tveille.h49 unsigned short freq; member in struct:__anon29624
/external/oprofile/module/x86/
H A Dop_rtc.c61 unsigned int exp, freq; local
80 freq = 16 - exp;
83 tmp_freq_select = (tmp_freq_select & 0xf0) | freq;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp77 QString ssid, bssid, freq, signal, flags; local
88 else if ((*it).startsWith("freq="))
89 freq = (*it).mid(pos);
102 item->setText(2, freq);
/external/bzip2/
H A Dhuffman.c64 Int32 *freq,
80 weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
63 BZ2_hbMakeCodeLengths( UChar *len, Int32 *freq, Int32 alphaSize, Int32 maxLen ) argument
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels.c29 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;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp150 LARGE_INTEGER freq; local
151 QueryPerformanceFrequency(&freq);
152 double period = 1.0 / (double)freq.QuadPart;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11winmain.cpp134 LARGE_INTEGER freq; local
135 QueryPerformanceFrequency(&freq);
136 double period = 1.0 / (double)freq.QuadPart;
/external/e2fsprogs/misc/
H A Dfsck.h45 int freq; member in struct:fs_info
/external/eigen/bench/
H A DBenchTimer.h55 LARGE_INTEGER freq; local
56 QueryPerformanceFrequency(&freq);
57 m_frequency = (double)freq.QuadPart;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
H A Dd3d10winmain.cpp150 LARGE_INTEGER freq; local
151 QueryPerformanceFrequency(&freq);
152 double period = 1.0 / (double)freq.QuadPart;

Completed in 2285 milliseconds

12345678910