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

1234567

/external/qemu/
H A Dqemu-timer-common.c35 LARGE_INTEGER freq; local
37 ret = QueryPerformanceFrequency(&freq);
42 clock_freq = freq.QuadPart;
/external/libvpx/vpx_ports/
H A Dvpx_timer.h82 LARGE_INTEGER freq, diff; local
86 if (QueryPerformanceFrequency(&freq) && diff.QuadPart < freq.QuadPart)
87 return (long)(diff.QuadPart * 1000000 / freq.QuadPart);
/external/aac/libFDK/include/
H A Dmdct.h115 FIXP_DBL *freq; member in union:__anon150::__anon151
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_tveille.h49 unsigned short freq; member in struct:__anon10735
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h61 QString ssid, bssid, freq, signal, flags; local
63 freq = cols.count() > 1 ? cols[1] : "";
67 new Q3ListViewItem(scanResultsView, ssid, bssid, freq, signal, flags);
/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/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_6/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp81 QString ssid, bssid, freq, signal, flags; local
92 else if ((*it).startsWith("freq="))
93 freq = (*it).mid(pos);
106 item->setText(2, freq);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dhs20_supplicant.c76 int freq; local
80 freq = wpa_s->assoc_freq;
83 freq = bss->freq;
84 if (freq <= 0)
94 res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
H A Doffchannel.c80 "waiting for another freq=%u (off_channel_freq=%u "
167 int offchannel_send_action(struct wpa_supplicant *wpa_s, unsigned int freq, argument
171 unsigned int freq, const u8 *dst,
178 wpa_printf(MSG_DEBUG, "Off-channel: Send action frame: freq=%d dst="
180 freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid),
202 wpa_s->pending_action_freq = freq;
205 if (freq != 0 && wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) {
221 if (freq) {
224 if (tx_iface->assoc_freq == freq) {
228 freq
287 offchannel_remain_on_channel_cb(struct wpa_supplicant *wpa_s, unsigned int freq, unsigned int duration) argument
296 offchannel_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s, unsigned int freq) argument
[all...]
/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/e2fsprogs/misc/
H A Dfsck.h45 int freq; member in struct:fs_info
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DHalAdaptation.cpp60 unsigned long freq = 0; local
66 if (GetNumValue((char*)NAME_XTAL_FREQUENCY, &freq, sizeof(freq)))
68 ALOGD("%s: setting xtal frequency=%lu", __FUNCTION__, freq);
69 nfc_post_reset_cb.dev_init_config.xtal_freq = (UINT16) freq;
/external/linux-tools-perf/util/
H A Dtop.h49 int display_weighted, freq, rb_entries; member in struct:perf_top
/external/llvm/lib/Support/
H A DBlockFrequency.cpp24 void mult96bit(uint64_t freq, uint32_t N, uint64_t W[2]) { argument
25 uint64_t u0 = freq & UINT32_MAX;
26 uint64_t u1 = freq >> 32;
/external/qemu/audio/
H A Dwavcapture.c9 int freq; member in struct:__anon10340
75 wav->freq, wav->bits, wav->nchannels,
84 int wav_start_capture (CaptureState *s, const char *path, int freq, argument
114 as.freq = freq;
129 le_store (hdr + 24, freq, 4);
130 le_store (hdr + 28, freq << shift, 4);
144 wav->freq = freq;
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_audio.h46 * - 'desired->freq' should be the desired audio frequency in samples-per-second.
57 * following formula: ms = (samples*1000)/freq
75 int freq; /**< DSP frequency -- samples per second */ member in struct:SDL_AudioSpec
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A Daica.c116 static inline unsigned AICA_FREQ(unsigned freq) { argument
123 while (freq < freq_base && freq_hi > -8) {
127 while (freq < freq_base && freq_hi > -8) {
131 freq_lo = (freq<<10) / freq_base;
145 freq is the sampling rate of the sound
151 void aica_play(int ch,int mode,unsigned long smpptr,int loopst,int loopend,int freq,int vol,int pan,int loopflag) { argument
179 CHNREG32(ch, 24) = AICA_FREQ(freq);
252 void aica_freq(int ch,int freq) { argument
253 g2_write_32(CHNREGADDR(ch, 24),AICA_FREQ(freq));
/external/webp/src/utils/
H A Dquant_levels.c31 int freq[NUM_SYMBOLS] = { 0 }; local
56 num_levels_in += (freq[data[n]] == 0);
59 ++freq[data[n]];
89 if (freq[s] > 0) {
90 q_sum[slot] += s * freq[s];
91 q_count[slot] += freq[s];
110 err += freq[s] * error * error;
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_dev_disc.c142 const u8 *addr, int freq, u8 status)
152 " (status %u freq %d)",
153 MAC2STR(addr), status, freq);
156 if (p2p_send_action(p2p, freq, addr, p2p->cfg->dev_addr,
175 " (freq=%d)", MAC2STR(sa), rx_freq);
141 p2p_send_dev_disc_resp(struct p2p_data *p2p, u8 dialog_token, const u8 *addr, int freq, u8 status) argument
H A Dp2p_pd.c137 int freq; local
146 " with config methods 0x%x (freq=%d)",
217 freq = rx_freq;
219 freq = p2p_channel_to_freq(p2p->cfg->country,
222 if (freq < 0) {
230 if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr,
355 int freq; local
358 freq = force_freq;
360 freq = dev->listen_freq > 0 ? dev->listen_freq :
362 if (freq <
[all...]
H A Dp2p_utils.c142 int p2p_freq_to_channel(const char *country, unsigned int freq, u8 *reg_class, argument
146 if (freq >= 2412 && freq <= 2472) {
148 *channel = (freq - 2407) / 5;
152 if (freq == 2484) {
158 if (freq >= 5180 && freq <= 5240) {
160 *channel = (freq - 5000) / 5;
164 if (freq >= 5745 && freq <
257 p2p_supported_freq(struct p2p_data *p2p, unsigned int freq) argument
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_dev_disc.c142 const u8 *addr, int freq, u8 status)
152 " (status %u freq %d)",
153 MAC2STR(addr), status, freq);
156 if (p2p_send_action(p2p, freq, addr, p2p->cfg->dev_addr,
175 " (freq=%d)", MAC2STR(sa), rx_freq);
141 p2p_send_dev_disc_resp(struct p2p_data *p2p, u8 dialog_token, const u8 *addr, int freq, u8 status) argument
H A Dp2p_pd.c137 int freq; local
146 " with config methods 0x%x (freq=%d)",
217 freq = rx_freq;
219 freq = p2p_channel_to_freq(p2p->cfg->country,
222 if (freq < 0) {
230 if (p2p_send_action(p2p, freq, sa, p2p->cfg->dev_addr,
355 int freq; local
358 freq = force_freq;
360 freq = dev->listen_freq > 0 ? dev->listen_freq :
362 if (freq <
[all...]

Completed in 455 milliseconds

1234567