Searched refs:bps (Results 1 - 25 of 52) sorted by relevance

123

/external/qemu/distrib/sdl-1.2.15/src/audio/nas/
H A DSDL_nasaudio.h57 int bps; member in struct:SDL_PrivateAudioData
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-multiple-breakpoints.js93 bps = new Array(test_count);
96 bps[i] = Debug.setBreakPoint(h);
101 Debug.clearBreakPoint(bps[i]);
/external/v8/test/mjsunit/
H A Ddebug-multiple-breakpoints.js93 bps = new Array(test_count);
96 bps[i] = Debug.setBreakPoint(h);
101 Debug.clearBreakPoint(bps[i]);
/external/libvpx/libvpx/vp9/
H A Dvp9_iface_common.h19 int bps = 12; local
23 bps = 24;
26 bps = 16;
45 img->bps = bps;
/external/libvpx/libvpx/vpx/src/
H A Dvpx_image.c51 unsigned int h, w, s, xcs, ycs, bps; local
76 bps = 32;
80 bps = 24;
89 bps = 16;
95 bps = 12;
98 bps = 16;
132 s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8;
151 h * s * bps / 8 : h * s));
163 img->bps = bps;
[all...]
/external/iproute2/include/linux/
H A Dgen_stats.h32 * @bps: current byte rate
36 __u32 bps; member in struct:gnet_stats_rate_est
/external/iproute2/tc/
H A Dtc_red.c75 int tc_red_eval_idle_damping(int Wlog, unsigned avpkt, unsigned bps, __u8 *sbuf) argument
77 double xmit_time = tc_calc_xmittime(bps, avpkt);
H A Dtc_util.c149 double bps = strtod(str, &p); local
156 *rate = bps / 8.; /* assume bytes/sec */
162 *rate = (bps * s->scale) / 8.;
492 prefix, sprint_rate(re.bps, b1), re.pps);
530 if (st.bps || st.pps || st.qlen || st.backlog) {
532 if (st.bps || st.pps) {
534 if (st.bps)
535 fprintf(fp, "%s ", sprint_rate(st.bps, b1));
H A Dtc_core.c115 unsigned bps = r->rate; local
129 rtab[i] = tc_calc_xmittime(bps, sz);
/external/chromium/net/tools/fetch/
H A Dfetch_client.cc190 const char *units = "bps";
191 double bps = static_cast<float>(bytes_read * 8) / local
194 if (bps > (1024*1024)) {
195 bps /= (1024*1024);
197 } else if (bps > 1024) {
198 bps /= 1024;
201 printf("Bandwidth : %.2f%s\n", bps, units);
/external/chromium_org/net/tools/fetch/
H A Dfetch_client.cc203 const char *units = "bps";
204 double bps = static_cast<float>(bytes_read * 8) / local
207 if (bps > (1024*1024)) {
208 bps /= (1024*1024);
210 } else if (bps > 1024) {
211 bps /= 1024;
214 printf("Bandwidth : %.2f%s\n", bps, units);
/external/aac/libSYS/src/
H A Dwav_file.cpp247 * host endianess and scaled to full scale of the INT_PCM type, from whatever bps the WAVEfile
472 int bps = Unpack(wav->header.bitsPerSample); local
476 if (bps == nBufBits && bps == nSigBits) {
477 if (FDKfwrite_EL(sampleBuffer, (bps>>3), numberOfSamples, wav->fp) != numberOfSamples)
495 shift = (nBufBits-nSigBits)-(32-bps);
498 if ( !IS_LITTLE_ENDIAN() && bps == 24) {
508 result=FDKfwrite_EL(&tmp, bps>>3, 1, wav->fp);
516 wav->header.dataSize += (numberOfSamples * (bps>>3));
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdataengine.cc293 bool RtpDataMediaChannel::SetSendBandwidth(bool autobw, int bps) { argument
294 if (autobw || bps <= 0) {
295 bps = kDataMaxBandwidth;
297 send_limiter_.reset(new talk_base::RateLimiter(bps / 8, 1.0));
298 LOG(LS_INFO) << "RtpDataMediaChannel::SetSendBandwidth to " << bps << "bps.";
H A Drtpdataengine.h99 virtual bool SetSendBandwidth(bool autobw, int bps);
H A Dhybridvideoengine.cc186 bool HybridVideoMediaChannel::SetSendBandwidth(bool autobw, int bps) { argument
188 active_channel_->SetSendBandwidth(autobw, bps);
H A Dfilemediaengine.h245 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
313 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h130 int bps; /**< bits per sample (for packed formats) */ member in struct:vpx_image
/external/kernel-headers/original/linux/
H A Dwanrouter.h212 unsigned bps; /* data transfer rate */ member in struct:wandev_conf
427 unsigned bps; /* data transfer rate */ member in struct:wanif_conf
476 unsigned bps; /* data transfer rate */ member in struct:wan_device
/external/iptables/extensions/
H A Dlibxt_rateest.c21 " --rateest-bps1 [bps] Compare bps\n"
23 " --rateest-bps2 [bps] Compare bps\n"
51 {.name = "rateest-bps", .has_arg = false, .val = OPT_RATEEST_BPS2}, /* alias for absolute mode */
90 double bps = strtod(str, &p); local
97 *rate = bps / 8.; /* assume bytes/sec */
103 *rate = (bps * s->scale) / 8.;
154 "rateest: rateest-bps can't be inverted");
203 "rateest: rateest-bps ca
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
H A Dsctpdataengine.h167 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dfilemediaengine.h152 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
187 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
/external/flac/libFLAC/
H A Dstream_decoder.c120 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
121 static FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
122 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode);
123 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode);
124 static FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
2027 unsigned bps = decoder->private_->frame.header.bits_per_sample; local
2035 bps++;
2040 bps++;
2045 bps++;
2053 if(!read_subframe_(decoder, channel, bps, do_full_decod
2455 read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
2525 read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
2548 read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode) argument
2605 read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode) argument
2697 read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
2994 unsigned bps = FLAC__stream_decoder_get_bits_per_sample(decoder); local
[all...]
/external/chromium_org/media/base/android/
H A Dmedia_codec_bridge.h260 void SetVideoBitrate(int bps);
/external/chromium_org/third_party/libjingle/source/talk/media/other/
H A Dlinphonemediaengine.h148 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } argument
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DMediaCodecBridge.java361 private void setVideoBitrate(int bps) { argument
363 b.putInt(MediaCodec.PARAMETER_KEY_VIDEO_BITRATE, bps);

Completed in 1350 milliseconds

123