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

12345678

/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/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/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/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java53 protected DisplayMode getFullscreenDisplayMode(int width, int height, int bpp, int freq){ argument
60 && mode.getFrequency() == freq){
/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/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
H A De2initrd_helper.c58 int freq; member in struct:fs_info
238 char *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp; local
248 freq = parse_word(&cp);
261 parse_escape(freq);
275 fs->freq = freq ? atoi(freq) : -1;
/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;
/external/mesa3d/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/vboot_reference/firmware/lib/
H A Dvboot_audio.c259 uint16_t freq = audio->current_frequency; local
266 freq = audio->music_notes[audio->next_note].frequency;
274 freq = 0;
279 if (audio->current_frequency != freq) {
280 VbExBeep(0, freq);
281 audio->current_frequency = freq;
283 } else if (freq && msec) {
284 VbExBeep(msec, freq);
/external/webp/src/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/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_dev_disc.c138 const u8 *addr, int freq, u8 status)
147 " (status %u freq %d)",
148 MAC2STR(addr), status, freq);
151 if (p2p_send_action(p2p, freq, addr, p2p->cfg->dev_addr,
168 " (freq=%d)", MAC2STR(sa), rx_freq);
137 p2p_send_dev_disc_resp(struct p2p_data *p2p, u8 dialog_token, const u8 *addr, int freq, u8 status) argument
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_dev_disc.c138 const u8 *addr, int freq, u8 status)
147 " (status %u freq %d)",
148 MAC2STR(addr), status, freq);
151 if (p2p_send_action(p2p, freq, addr, p2p->cfg->dev_addr,
168 " (freq=%d)", MAC2STR(sa), rx_freq);
137 p2p_send_dev_disc_resp(struct p2p_data *p2p, u8 dialog_token, const u8 *addr, int freq, u8 status) argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Doffchannel.c81 "waiting for another freq=%u (off_channel_freq=%u "
215 * @freq: The frequency in MHz indicating the channel on which the frame is to
233 int offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq, argument
237 unsigned int freq, const u8 *dst,
244 wpa_printf(MSG_DEBUG, "Off-channel: Send action frame: freq=%d dst="
246 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
269 wpa_s->pending_action_freq = freq;
272 if (freq != 0 && wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) {
291 if (freq) {
294 if (tx_iface->assoc_freq == freq) {
385 offchannel_remain_on_channel_cb(struct wpa_supplicant *wpa_s, unsigned int freq, unsigned int duration) argument
402 offchannel_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s, unsigned int freq) argument
[all...]
H A Dwnm_sta.h48 int freq; member in struct:neighbor_report
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_dev_disc.c138 const u8 *addr, int freq, u8 status)
147 " (status %u freq %d)",
148 MAC2STR(addr), status, freq);
151 if (p2p_send_action(p2p, freq, addr, p2p->cfg->dev_addr,
168 " (freq=%d)", MAC2STR(sa), rx_freq);
137 p2p_send_dev_disc_resp(struct p2p_data *p2p, u8 dialog_token, const u8 *addr, int freq, u8 status) argument
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DNeuQuant.java61 /* defs for freq and bias */
129 /* bias and freq arrays for learning */
130 protected int[] freq = new int[netsize]; field in class:NeuQuant
154 freq[i] = intbias / netsize; /* 1/netsize */
462 /* finds closest neuron (min dist) and updates freq */
464 /* for frequently chosen neurons, freq[i] is high and bias[i] is negative */
465 /* bias[i] = gamma*((1/netsize)-freq[i]) */
498 betafreq = (freq[i] >> betashift);
499 freq[i] -= betafreq;
502 freq[bestpo
[all...]
/external/iproute2/include/linux/can/
H A Dnetlink.h54 __u32 freq; /* CAN system clock frequency in Hz */ member in struct:can_clock
/external/kernel-headers/original/uapi/linux/can/
H A Dnetlink.h62 __u32 freq; /* CAN system clock frequency in Hz */ member in struct:can_clock
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DHalAdaptation.cpp87 unsigned long freq = 0; local

Completed in 815 milliseconds

12345678