Searched defs:rate (Results 201 - 225 of 262) sorted by relevance

1234567891011

/external/sonivox/arm-wt-22k/lib_src/
H A Deas_public.c1158 * Sets the playback rate.
1163 * rate - rate (28-bit fractional amount)
1172 EAS_PUBLIC EAS_RESULT EAS_SetPlaybackRate (EAS_DATA_HANDLE pEASData, EAS_HANDLE pStream, EAS_U32 rate) argument
1176 if ((rate < (1 << 27)) || (rate > (1 << 29)))
1182 * maximum rate of 2.0 (2^28) is 2047 (2^13-1). To accomodate a
1183 * longer frame length or a higher maximum rate, the fixed point
1186 pStream->frameLength = (AUDIO_FRAME_LENGTH * (rate >> 8)) >> 20;
1188 /* notify stream of new playback rate */
[all...]
/external/speex/libspeex/
H A Dpreprocess.c185 int sampling_rate; /**< Sampling rate of the input/output */
575 float rate; local
586 /*rate=2.0f*Pframe*Pframe/(1+st->nb_loudness_adapt);*/
587 rate = .03*Pframe*Pframe;
588 st->loudness = (1-rate)*st->loudness + (rate)*pow(AMP_SCALE*loudness, LOUDNESS_EXP);
589 st->loudness_accum = (1-rate)*st->loudness_accum + rate;
/external/svox/pico/compat/jni/
H A Dcom_android_tts_compat_SynthProxy.cpp196 uint32_t rate, android_tts_audio_format_t format, int channelCount)
215 int result = env->CallIntMethod(request, synthesisRequest_start, rate, encoding, channelCount);
260 __ttsSynthDoneCB(void **pUserdata, uint32_t rate, argument
282 if (callRequestStart(env, pRequestData->request, rate, format, channelCount)
195 callRequestStart(JNIEnv *env, jobject request, uint32_t rate, android_tts_audio_format_t format, int channelCount) argument
/external/svox/pico/tts/
H A Dcom_svox_picottsengine.cpp55 /* speaking rate */
94 const char * picoSupportedProperties[] = { "language", "rate", "pitch", "volume" };
114 int picoProp_currRate = PICO_DEF_RATE; /* current rate */
539 if (picoProp_currRate != PICO_DEF_RATE) { /* non-default rate */
1289 * @rate - reference to sample rate
1293 tts_result TtsEngine::setAudioFormat(tts_audio_format& encoding, uint32_t& rate, argument
1298 rate = 16000;
1305 * Set property. The supported properties are: language, rate, pitch and volume.
1313 int rate; local
[all...]
/external/tcpdump/
H A Dprint-802_11.c55 u_int8_t rate; member in struct:radiotap_state
72 PRINT_RATE(sep, p.rates.rate[z], \
73 (p.rates.rate[z] & 0x80 ? "*" : "")); \
757 if (rates.length > sizeof rates.rate)
763 memcpy(&rates.rate, p + offset, rates.length);
1907 /* Save state rate */
1908 state->rate = u.u8;
2023 * XXX On FreeBSD rate & 0x80 means we have an MCS. On
2029 * implementations that stuff a rate value into
2035 * an MCS value, otherwise it's a rate
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Disac.c78 * Do a rate allocation for the given limit. */
134 /* We might need a rate allocation. */
141 /* Do the rate-allocation and get the new bandwidth. */
319 * - CodingMode : 0 -> Bit rate and frame length are automatically
324 * rate which is taken as the maximum
325 * short-term average bit rate.
638 /* Update rate model and get minimum number of bytes in this packet. */
694 /* update rate model */
725 * stream. If the rate is set to a value less than bottleneck of codec
726 * the new bistream will be re-encoded with the given target rate
751 WebRtcIsac_GetNewBitStream(ISACStruct* ISAC_main_inst, WebRtc_Word16 bweIndex, WebRtc_Word16 jitterInfo, WebRtc_Word32 rate, WebRtc_Word16* encoded, WebRtc_Word16 isRCU) argument
1415 ControlLb(ISACLBStruct* instISAC, double rate, WebRtc_Word16 frameSize) argument
1432 ControlUb(ISACUBStruct* instISAC, double rate) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_1x.c268 u8 rate = 0; local
271 if ((sta->supported_rates[i] & 0x7f) > rate)
272 rate = sta->supported_rates[i] & 0x7f;
274 return rate;
/external/wpa_supplicant_8/src/ap/
H A Dieee802_1x.c268 u8 rate = 0; local
271 if ((sta->supported_rates[i] & 0x7f) > rate)
272 rate = sta->supported_rates[i] & 0x7f;
274 return rate;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dscan.c1366 int rate = 0; local
1372 if ((ie[i + 2] & 0x7f) > rate)
1373 rate = ie[i + 2] & 0x7f;
1378 if ((ie[i + 2] & 0x7f) > rate)
1379 rate = ie[i + 2] & 0x7f;
1382 return rate;
1523 * Channels with a great SNR can operate at full rate. What is a great SNR?
1527 * recommends 25 as a minimum SNR for 54 Mbps data rate. 30 is chosen here as a
1574 /* best/max rate preferred if SNR close enough */
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_1x.c268 u8 rate = 0; local
271 if ((sta->supported_rates[i] & 0x7f) > rate)
272 rate = sta->supported_rates[i] & 0x7f;
274 return rate;
/external/chromium_org/content/renderer/media/android/
H A Dwebmediaplayer_android.cc333 void WebMediaPlayerAndroid::setRate(double rate) { argument
/external/chromium_org/content/renderer/media/
H A Dwebmediaplayer_impl.cc99 // Limits the range of playback rate.
368 void WebMediaPlayerImpl::setRate(double rate) { argument
369 DVLOG(1) << __FUNCTION__ << "(" << rate << ")"; local
374 if (rate < 0.0)
378 if (rate != 0.0) {
379 if (rate < kMinRate)
380 rate = kMinRate;
381 else if (rate > kMaxRate)
382 rate = kMaxRate;
385 playback_rate_ = rate;
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumrgts.cpp1749 double rate = 12.34; local
1761 rateString = formatDec->format(rate, rateString, pos);
1764 rate = 0.1234;
1770 rateString = formatDec->format(rate, rateString, pos);
/external/chromium_org/third_party/libwebp/enc/
H A Dquant.c545 static WEBP_INLINE score_t RDScoreTrellis(int lambda, score_t rate, argument
547 return rate * lambda + 256 * distortion;
591 const score_t rate = (ctx0 == 0) ? VP8BitCost(1, last_proba) : 0; local
592 ss_cur[m].score = RDScoreTrellis(lambda, rate, 0);
632 // Compute extra rate cost if last coeff's position is < 15
1081 // Refine intra16/intra4 sub-modes based on distortion only (not rate).
1102 // We don't evaluate the rate here, but just account for it through a
/external/chromium_org/third_party/opus/src/src/
H A Dopus_encoder.c96 /* Sampling rate (at the API level) */
141 /* Threshold bit-rate for switching between SILK/hybrid and CELT-only */
562 static int transient_viterbi(const float *E, const float *E_1, int N, int frame_cost, int rate) argument
571 if (rate<80)
573 else if (rate>160)
576 factor = (rate-80.f)/80.f;
588 cost[0][1<<i] = (frame_cost + rate*(1<<i))*(1+factor*transient_boost(E, E_1, i, N+1));
619 curr_cost = (frame_cost + rate*(1<<j))*(1+factor*transient_boost(E+i, E_1+i, j, N-i+1));
1065 /* Equivalent 20-ms rate for mode/channel/bandwidth decisions */
1226 /* Automatic (rate
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc601 // release memory at a constant rate.
771 virtual void SetMemoryReleaseRate(double rate) { argument
772 FLAGS_tcmalloc_release_rate = rate;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc570 // release memory at a constant rate.
761 virtual void SetMemoryReleaseRate(double rate) { argument
762 FLAGS_tcmalloc_release_rate = rate;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_sender.cc222 const uint8_t channels, const uint32_t rate) {
239 (payload->typeSpecific.Audio.rate == rate ||
240 payload->typeSpecific.Audio.rate == 0 || rate == 0)) {
241 payload->typeSpecific.Audio.rate = rate;
242 // Ensure that we update the rate if new or old is zero.
255 frequency, channels, rate, payload);
257 ret_val = video_->RegisterVideoPayload(payload_name, payload_number, rate,
219 RegisterPayload( const char payload_name[RTP_PAYLOAD_NAME_SIZE], const int8_t payload_number, const uint32_t frequency, const uint8_t channels, const uint32_t rate) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel.cc1634 const uint32_t rate) {
1628 OnInitializeDecoder( const int32_t id, const int8_t payload_type, const char payload_name[RTP_PAYLOAD_NAME_SIZE], const int frequency, const uint8_t channels, const uint32_t rate) argument
/external/fio/
H A Dstat.c1794 unsigned long spent, rate; local
1814 rate = delta * 1000 / spent / 1024;
1816 rate = 0;
1818 add_stat_sample(&ts->bw_stat[ddir], rate);
1821 add_log_sample(td, td->bw_log, rate, ddir, bs);
H A Dthread_options.h216 unsigned int rate[DDIR_RWDIR_CNT]; member in struct:thread_options
434 uint32_t rate[DDIR_RWDIR_CNT]; member in struct:thread_options_pack
/external/icu/icu4c/source/test/intltest/
H A Dnumrgts.cpp1755 double rate = 12.34; local
1767 rateString = formatDec->format(rate, rateString, pos);
1770 rate = 0.1234;
1776 rateString = formatDec->format(rate, rateString, pos);
/external/iproute2/include/linux/
H A Dif_link.h300 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */ member in struct:ifla_vf_tx_rate
/external/kernel-headers/original/uapi/linux/
H A Dfd.h31 rate, /* data rate. |= 0x40 for perpendicular */ member in struct:floppy_struct
34 #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
35 #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? \
39 spec1, /* stepping rate, head unload time */
132 unsigned long max_dtr; /* Step rate, usec */
136 unsigned long srt; /* Step rate, usec */
358 unsigned char rate; member in struct:floppy_raw_cmd
/external/libnl/include/linux/
H A Dpkt_sched.h37 __u32 bps; /* Current flow byte rate */
38 __u32 pps; /* Current flow packet rate */
83 __u32 rate; member in struct:tc_ratespec
117 struct tc_ratespec rate; member in struct:tc_tbf_qopt
245 struct tc_ratespec rate; member in struct:tc_htb_opt
279 __u32 giants; /* too big packets (rate will not be accurate) */

Completed in 648 milliseconds

1234567891011