/external/iproute2/include/linux/ |
if_link.h | 267 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */ member in struct:ifla_vf_tx_rate
|
/external/iptables/extensions/ |
libxt_hashlimit.c | 32 "--hashlimit <avg> max average match rate\n" 67 " --hashlimit-upto <avg> max average match rate\n" 70 " --hashlimit-above <avg> min average match rate\n" 144 int parse_rate(const char *rate, uint32_t *val) 150 delim = strchr(rate, '/'); 166 r = atoi(rate); 173 xtables_error(PARAMETER_PROBLEM, "Rate too fast \"%s\"\n", rate);
|
/external/kernel-headers/original/linux/ |
if_link.h | 270 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */ member in struct:ifla_vf_tx_rate
|
/external/qemu/distrib/sdl-1.2.12/src/audio/esd/ |
SDL_esdaudio.c | 64 static int (*SDL_NAME(esd_play_stream))( esd_format_t format, int rate,
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/ |
Xvlib.h | 77 SDL_NAME(XvRational) rate; member in struct:__anon9487
|
/external/svox/pico/compat/jni/ |
com_android_tts_compat_SynthProxy.cpp | 196 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, 282 if (callRequestStart(env, pRequestData->request, rate, format, channelCount)
|
/external/webkit/Source/WebCore/platform/graphics/ |
MediaPlayer.cpp | 556 float MediaPlayer::rate() const function in class:WebCore::MediaPlayer 561 void MediaPlayer::setRate(float rate) 563 m_rate = rate; 564 m_private->setRate(rate);
|
/external/webkit/Source/WebCore/platform/graphics/avfoundation/ |
MediaPlayerPrivateAVFoundation.h | 191 virtual float rate() const = 0;
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
MediaPlayerPrivateQuickTimeWin.cpp | 312 float oldRate = m_qtMovie->rate(); 354 return (!m_qtMovie->rate()); 395 void MediaPlayerPrivate::setRate(float rate) 399 m_qtMovie->setRate(rate); 755 // To eliminate preroll costs from our calculation, our frame rate calculation excludes
|
QTMovie.cpp | 332 float QTMovie::rate() const function in class:QTMovie 339 void QTMovie::setRate(float rate) 346 MCDoAction(m_private->m_movieController, mcActionPrerollAndPlay, (void *)FloatToFixed(rate)); 348 SetMovieRate(m_private->m_movie, FloatToFixed(rate)); 409 m_private->m_rateToRestore = rate();
|
/external/wpa_supplicant/ |
driver.h | 48 * @maxrate: maximum supported rate 206 int rate; /* rate in 100 kbps */ member in struct:wpa_rate_data 731 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11 732 * format (one octet per rate, 1 = 0.5 Mbps) 740 * processing (TX rate control, encryption/decryption).
|
/external/wpa_supplicant_8/src/ap/ |
hostapd.h | 41 int rate; /* rate in 100 kbps */ member in struct:hostapd_rate_data
|
/hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/ |
bcmevent.h | 264 uint32 rate; member in struct:wl_event_rx_frame_data
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
bcmevent.h | 264 uint32 rate; member in struct:wl_event_rx_frame_data
|
/hardware/libhardware/include/hardware/ |
audio.h | 82 * sampling rate is in Hz - eg. 44100 89 int (*set_sample_rate)(struct audio_stream *stream, uint32_t rate);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
stream.h | 506 /* Change the stream sampling rate during playback. You need to pass 511 pa_operation *pa_stream_update_sample_rate(pa_stream *s, uint32_t rate, pa_stream_success_cb_t cb, void *userdata);
|
/external/webkit/Source/WebCore/html/ |
HTMLMediaElement.cpp | [all...] |
/hardware/libhardware/modules/audio/ |
audio_hw.c | 48 static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate) 135 static int in_set_sample_rate(struct audio_stream *stream, uint32_t rate)
|
/external/bluetooth/hcidump/parser/ |
lmp.c | 606 uint8_t rate = LMP_U8(frm); local 609 printf("data rate 0x%2.2x\n", rate); 614 printf("%suse FEC, ", rate & 0x01 ? "do not " : ""); 616 switch ((rate >> 1) & 0x03) { 634 switch ((rate >> 3) & 0x03) { 649 switch ((rate >> 5) & 0x03) {
|
/external/mesa3d/docs/ |
MESA_swap_frame_usage.spec | 53 constant frame rate. If the value is in the range (1,max], a constant 54 frame rate was not achieved. The value indicates the number of frames 140 If a swap is missed based in the rate control specified by the
|
/hardware/invensense/libsensors/ |
MPLSensor.cpp | 872 " setDelay handle: %d rate %d", handle, (int) (ns / 1000000LL)); 935 int rate = ((wanted) / 5000000LLU) - ((wanted % 5000000LLU == 0) ? 1 936 : 0); //mpu fifo rate is in increments of 5ms 937 if (rate == 0) //KLP disallow fifo rate 0 938 rate = 1; 940 if (rate != mCurFifoRate) { 941 //LOGD("set fifo rate: %d %llu", rate, wanted); 943 res = inv_set_fifo_rate(rate); [all...] |
/external/qemu/audio/ |
audio.c | 873 if (sw->rate) { 874 st_rate_stop (sw->rate); 875 sw->rate = NULL; 917 sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq); 918 if (!sw->rate) { 919 dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw)); 1048 st_rate_flow (sw->rate, src, dst, &isamp, &osamp); 1150 sw->rate, [all...] |
/external/webkit/Source/WebCore/platform/graphics/mac/ |
MediaPlayerPrivateQTKit.mm | 746 [m_qtMovie.get() setRate:m_player->rate()]; 811 float oldRate = [m_qtMovie.get() rate]; 857 return [m_qtMovie.get() rate] == 0; [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
SharedBitmap.cpp | 426 double rate = static_cast<double>(bmpWidth) / origSourceSize.width(); local 427 double temp = tileRect.width() * rate; 428 tileRect.setX(tileRect.x() * rate); 430 temp = tileRect.height() * rate; 431 tileRect.setY(tileRect.y() * rate);
|
/external/webrtc/src/modules/audio_processing/main/test/unit_test/ |
unit_test.cc | 559 int rate[] = {16000, 44100, 48000}; local 560 for (size_t i = 0; i < sizeof(rate)/sizeof(*rate); i++) { 562 apm_->echo_cancellation()->set_device_sample_rate_hz(rate[i])); 563 EXPECT_EQ(rate[i],
|