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

/external/qemu/distrib/sdl-1.2.12/src/audio/sun/
H A DSDL_sunaudio.h42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
/external/qemu/distrib/sdl-1.2.12/src/audio/
H A DSDL_wave.h50 Uint32 frequency; /* One of 11025, 22050, or 44100 Hz */ member in struct:WaveFMT
/external/bluetooth/bluez/sbc/
H A Dsbc.h36 /* sampling frequency */
69 uint8_t frequency; member in struct:sbc_struct
H A Dsbcdec.c53 int format = AFMT_S16_BE, frequency, channels; local
105 switch (sbc.frequency) {
107 frequency = 16000;
111 frequency = 32000;
115 frequency = 44100;
119 frequency = 48000;
122 frequency = 0;
128 filename, frequency, sbc.subbands * 4 + 4, sbc.bitpool,
142 au_hdr.sample_rate = BE_INT(frequency);
163 if (ioctl(ad, SNDCTL_DSP_SPEED, &frequency) <
[all...]
H A Dsbc.c56 uint8_t frequency; member in struct:sbc_frame
160 * the sampling frequency (as 2 bit integer)
164 uint8_t sf = frame->frequency;
384 frame->frequency = (data[1] >> 6) & 0x03;
767 data[1] = (frame->frequency & 0x03) << 6;
951 sbc->frequency = SBC_FREQ_44100;
1009 sbc->frequency = priv->frame.frequency;
1075 priv->frame.frequency = sbc->frequency;
1175 uint16_t frequency; local
[all...]
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/
H A DSDL_mintaudio.c89 /* Add a new frequency/clock/predivisor to the current list */
90 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock, argument
99 /* Search where to insert the frequency (highest first) */
101 if (frequency > MINTAUDIO_frequencies[p].frequency) {
114 MINTAUDIO_frequencies[p].frequency = frequency;
122 /* Search for the nearest frequency */
134 if (desired_freq >= ((MINTAUDIO_frequencies[i].frequency+
135 MINTAUDIO_frequencies[i+1].frequency)>>
[all...]
H A DSDL_mintaudio.h43 Uint32 frequency; member in struct:__anon3467
52 int numfreq; /* Number of selected frequency */
136 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
H A DSDL_mintaudio_stfa.h89 unsigned short frequency; member in struct:__anon3474
/external/bluetooth/bluez/audio/
H A Da2dp.h75 uint8_t frequency:4; member in struct:sbc_codec_cap
88 uint8_t frequency:6; member in struct:mpeg_codec_cap
98 uint8_t frequency:4; member in struct:sbc_codec_cap
114 uint8_t frequency:6; member in struct:mpeg_codec_cap
H A Dgstsbcutil.c129 gint gst_sbc_parse_rate_from_sbc(gint frequency) argument
131 switch (frequency) {
298 gst_sbc_parse_rate_from_sbc(sbc->frequency),
512 sbc->frequency = gst_sbc_parse_rate_to_sbc(rate);
H A Dipc.h196 uint8_t frequency; member in struct:__anon53
209 uint8_t frequency; member in struct:__anon54
/external/guava/src/com/google/common/collect/
H A DIterables.java265 * @see Collections#frequency
267 public static int frequency(Iterable<?> iterable, @Nullable Object element) { method in class:Iterables
274 return Iterators.frequency(iterable.iterator(), element);
H A DIterators.java339 * @see Collections#frequency
341 public static int frequency(Iterator<?> iterator, @Nullable Object element) { method in class:Iterators
/external/opencore/oscl/oscl/osclproc/src/
H A Doscl_timer.h114 * @param frequency The frequency of the timer in cycles/second. A value of
117 OsclTimer(const char *name, uint32 frequency = 1, int32 priority = OsclActiveObject::EPriorityNominal);
131 * Set the frequency of the timer in cycles/second.
133 * @param frequency A value of 1 means the timer will cycle in one second
136 void SetFrequency(uint32 frequency);
139 * Set the exact frequency of the timer in microsecond.
141 * @param frequency A value of 1 means the timer will cycle in one microsecond
144 void SetExactFrequency(uint32 frequency);
154 * the timer frequency i
211 OsclTimer(const char *name, uint32 frequency, int32 priority) argument
244 SetFrequency(uint32 frequency) argument
253 SetExactFrequency(uint32 frequency) argument
[all...]
/external/opencore/protocols/systems/tools/general/common/src/
H A Dpvmf_buffer_data_source.cpp75 unsigned frequency = (iBitrate >> 3) / ave_sample_sz; local
76 iSampleInterval = 1000 / frequency;
77 iTimer .SetFrequency(frequency);
/external/webkit/JavaScriptCore/profiler/
H A DProfileNode.cpp47 static LARGE_INTEGER frequency = {0}; local
48 if (!frequency.QuadPart)
49 QueryPerformanceFrequency(&frequency);
52 return static_cast<double>(counter.QuadPart) / frequency.QuadPart;
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig_ssid.h327 * frequency - Channel frequency in megahertz (MHz) for IBSS
333 * configured SSID is already present, the frequency of the network
336 int frequency; member in struct:wpa_ssid
/external/icu4c/samples/ucnv/
H A Dconvsamp.cpp385 uint32_t frequency; member in struct:__anon1474
391 "Sample 06: C: frequency distribution of letters in a UTF-8 document\n");
429 info[p].frequency = 0;
476 info[p].frequency++;
493 if(info[p].frequency)
495 printf("% 5d U+%06X ", info[p].frequency, p);
/external/opencore/protocols/sdp/parser/src/
H A Dbasemediainfoparser.cpp615 uint32 frequency; local
616 if (!PV_atoi(sptr, 'd', line_end_ptr - sptr, frequency))
618 PVMF_SDP_PARSER_LOGERROR((0, "SDPBaseMediaInfoParser::parseMediaInfo - Bad a=3GPP-Adaptation-Support: line format - frequency not correct"));
621 mediaStr->setReportFrequency(frequency);
/external/kernel-headers/original/linux/
H A Dtimex.h28 * Added defines for hybrid phase/frequency-lock loop.
73 #define SHIFT_KF 16 /* PLL frequency factor (shift) */
74 #define SHIFT_KH 2 /* FLL frequency factor (shift) */
86 * time_tolerance variables, which represent the current frequency
87 * offset and maximum frequency tolerance.
93 #define SHIFT_USEC 16 /* frequency offset scale (shift) */
97 #define MAXFREQ (512L << SHIFT_USEC) /* max frequency error (ppm) */
109 long freq; /* frequency offset (scaled ppm) */
115 long tolerance; /* clock frequency tolerance (ppm)
121 long ppsfreq; /* pps frequency (scale
286 u64 frequency; /* frequency in counts/second */ member in struct:time_interpolator
[all...]
H A Dvideodev2.h254 #define V4L2_CAP_HW_FREQ_SEEK 0x00000400 /* Can do hardware frequency seek */
1192 __u32 frequency; member in struct:v4l2_frequency
/external/bluetooth/bluez/tools/
H A Davinfo.c175 uint8_t frequency:4; member in struct:sbc_codec_cap
188 uint8_t frequency:6; member in struct:mpeg_codec_cap
228 uint8_t frequency:4; member in struct:sbc_codec_cap
244 uint8_t frequency:6; member in struct:mpeg_codec_cap
277 if (mpeg->frequency & MPEG_SAMPLING_FREQ_16000)
279 if (mpeg->frequency & MPEG_SAMPLING_FREQ_22050)
281 if (mpeg->frequency & MPEG_SAMPLING_FREQ_24000)
283 if (mpeg->frequency & MPEG_SAMPLING_FREQ_32000)
285 if (mpeg->frequency & MPEG_SAMPLING_FREQ_44100)
287 if (mpeg->frequency
[all...]
/external/wpa_supplicant/
H A Dconfig_ssid.h856 * frequency - Channel frequency in megahertz (MHz) for IBSS
862 * configured SSID is already present, the frequency of the network
865 int frequency; member in struct:wpa_ssid
/external/libpng/
H A Dpng.h673 png_uint_16 frequency; member in struct:png_sPLT_entry_struct
680 * is zero-filled. The frequency member always occupies the full 16 bits.
936 /* The hIST chunk contains the relative frequency or importance of the
/external/qemu/distrib/libpng-1.2.19/
H A Dpng.h557 png_uint_16 frequency; member in struct:png_sPLT_entry_struct
564 * is zero-filled. The frequency member always occupies the full 16 bits.
817 /* The hIST chunk contains the relative frequency or importance of the

Completed in 341 milliseconds