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

1234567891011

/external/pdfium/third_party/libopenjpeg20/
H A Dopj_clock.c46 LARGE_INTEGER freq, t ; local
47 /* freq is the clock speed of the CPU */
48 QueryPerformanceFrequency(&freq) ;
49 /* cout << "freq = " << ((double) freq.QuadPart) << endl; */
52 return ((OPJ_FLOAT64) t.QuadPart / (OPJ_FLOAT64) freq.QuadPart) ;
/external/vulkan-validation-layers/demos/
H A Dgettime.h41 LARGE_INTEGER freq; local
44 QueryPerformanceFrequency(&freq);
45 assert(freq.LowPart != 0 || freq.HighPart != 0);
48 assert(freq.QuadPart != 0);
49 return count.QuadPart * 1000000 / freq.QuadPart;
51 assert(freq.QuadPart >= 1000000);
52 return count.QuadPart / (freq.QuadPart / 1000000);
/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);
49 DE_ASSERT(freq.QuadPart != 0);
50 return count.QuadPart * 1000000 / freq.QuadPart;
54 DE_ASSERT(freq.QuadPart >= 1000000);
55 return count.QuadPart / (freq.QuadPart / 1000000);
/external/libjpeg-turbo/
H A Dtjutil.c35 LARGE_INTEGER freq; local
36 if(!QueryPerformanceFrequency(&freq)) return 0.0;
37 return (double)freq.QuadPart;
/external/libvncserver/test/
H A Dtjutil.c35 LARGE_INTEGER freq; local
36 if(!QueryPerformanceFrequency(&freq)) return 0.0;
37 return (double)freq.QuadPart;
/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/webrtc/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)((lsf[i] * 20861) >> 15);
46 k = 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 = (k << 9) + tmp;
76 /* lsf = freq*2*pi */
77 (*lsfPtr) = (int16_t)(((int32_t)freq*25736)>>15);
/external/iw/
H A Docb.c14 unsigned long freq; local
30 /* freq */
31 freq = strtoul(argv[0], &end, 10);
35 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
49 NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq);
62 COMMAND(ocb, join, "<freq in MHz> <5MHZ|10MHZ>",
H A Droc.c21 int freq, time; local
26 freq = strtol(argv[0], &end, 0);
34 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
41 COMMAND(roc, start, "<freq> <time in ms>", NL80211_CMD_REMAIN_ON_CHANNEL, 0, CIB_NETDEV, handle_roc_start, "");
H A Dconnect.c18 int freq; local
28 /* freq */
30 freq = strtoul(argv[0], &end, 10);
32 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
143 TOPLEVEL(connect, "[-w] <SSID> [<freq in MHz>] [<bssid>] [key 0:abcde d:1:6162636465]",
155 int freq; local
189 freq = strtoul(argv[0], &end, 10);
191 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
216 TOPLEVEL(auth, "<SSID> <bssid> <type:open|shared> <freq in MHz> [key 0:abcde d:1:6162636465]",
H A Dibss.c33 unsigned long freq; local
74 /* freq */
75 freq = strtoul(argv[0], &end, 10);
79 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
94 freq + chanmode_selected->freq1_diff);
106 if (argc && strcmp(argv[0], "fixed-freq") == 0) {
197 "<SSID> <freq in MHz> [HT20|HT40+|HT40-|NOHT|5MHZ|10MHZ] [fixed-freq] [<fixed bssid>] [beacon-interval <TU>]"
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_timer.h76 LARGE_INTEGER freq, diff; local
80 QueryPerformanceFrequency(&freq);
81 return diff.QuadPart * 1000000 / freq.QuadPart;
/external/lzma/CPP/Windows/Control/
H A DTrackbar.h18 void SetTicFreq(int freq) argument
19 { SendMsg(TBM_SETTICFREQ, freq); }
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dtime_util.h20 inline uint32_t NtpToRtp(NtpTime ntp, uint32_t freq) { argument
21 uint32_t tmp = (static_cast<uint64_t>(ntp.fractions()) * freq) >> 32;
22 return ntp.seconds() * freq + tmp;
26 inline uint32_t CurrentRtp(const Clock& clock, uint32_t freq) { argument
27 return NtpToRtp(NtpTime(clock), freq);
/external/libcxx/src/
H A Dchrono.cpp201 static LARGE_INTEGER freq; variable
204 initialized = QueryPerformanceFrequency(&freq); // always succceeds
208 return time_point(duration(counter.QuadPart * nano::den / freq.QuadPart));
/external/webrtc/webrtc/sound/
H A Dsoundsysteminterface.h51 unsigned int freq; member in struct:rtc::SoundSystemInterface::OpenParams
/external/adhd/cras/src/common/
H A Dcras_sbc_codec.c96 struct cras_audio_codec *cras_sbc_codec_create(uint8_t freq, argument
114 data->sbc.frequency = freq;
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_FREQUENCY.c37 struct v4l2_frequency freq; local
41 memset(&freq, 0xff, sizeof(freq));
42 freq.tuner = tuner;
43 ret_get = ioctl(get_video_fd(), VIDIOC_G_FREQUENCY, &freq);
52 CU_ASSERT_EQUAL(freq.tuner, tuner);
54 //CU_ASSERT(freq.type, ???);
55 //CU_ASSERT_EQUAL(freq.frequency, ???);
57 CU_ASSERT_EQUAL(freq.reserved[0], 0);
58 CU_ASSERT_EQUAL(freq
92 struct v4l2_frequency freq; local
112 struct v4l2_frequency freq; local
132 struct v4l2_frequency freq; local
152 struct v4l2_frequency freq; local
190 struct v4l2_frequency freq; local
279 struct v4l2_frequency freq; local
601 struct v4l2_frequency freq; local
740 struct v4l2_frequency freq; local
[all...]
/external/python/cpython2/PC/
H A Dwinsound.c106 int freq; local
110 if (!PyArg_ParseTuple(args, "ii:Beep", &freq, &dur))
113 if (freq < 37 || freq > 32767) {
120 ok = Beep(freq, dur);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp78 QString ssid, bssid, freq, signal, flags; local
89 else if ((*it).startsWith("freq="))
90 freq = (*it).mid(pos);
103 item->setText(2, freq);
/external/aac/libFDK/include/
H A Dmdct.h140 FIXP_DBL *freq; member in union:__anon445::__anon446
/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/e2fsprogs/misc/
H A Dfsck.h45 int freq; member in struct:fs_info
/external/eigen/bench/
H A DBenchTimer.h62 LARGE_INTEGER freq; local
63 QueryPerformanceFrequency(&freq);
64 m_frequency = (double)freq.QuadPart;

Completed in 1363 milliseconds

1234567891011