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

12

/external/libvpx/libvpx/vp9/
H A Dvp9_iface_common.h21 int bps; local
25 bps = 24;
28 bps = 16;
33 bps = 16;
36 bps = 12;
74 img->bps = bps;
/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_core.c130 unsigned bps = r->rate; local
144 rtab[i] = tc_calc_xmittime(bps, sz);
H A Dtc_util.c198 double bps = strtod(str, &p); local
206 bps *= s->scale;
215 bps /= 8; /* -> bytes per second */
216 *rate = bps;
218 if (*rate != floor(bps))
226 double bps = strtod(str, &p); local
234 bps *= s->scale;
243 bps /= 8; /* -> bytes per second */
244 *rate = bps;
543 prefix, sprint_rate(re.bps, b
[all...]
/external/iproute2/include/linux/
H A Dgen_stats.h33 * @bps: current byte rate
37 __u32 bps; member in struct:gnet_stats_rate_est
43 * @bps: current byte rate
47 __u64 bps; member in struct:gnet_stats_rate_est64
/external/kernel-headers/original/uapi/linux/
H A Dgen_stats.h34 * @bps: current byte rate
38 __u32 bps; member in struct:gnet_stats_rate_est
44 * @bps: current byte rate
48 __u64 bps; member in struct:gnet_stats_rate_est64
/external/libnl/include/linux-private/linux/
H A Dgen_stats.h32 * @bps: current byte rate
36 __u32 bps; member in struct:gnet_stats_rate_est
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_highbd_block_error_intrin_sse2.c18 int bps) {
23 const int shift = 2 * (bps - 8);
16 vp9_highbd_block_error_sse2(tran_low_t *coeff, tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bps) argument
/external/libvpx/libvpx/vpx/src/
H A Dvpx_image.c23 unsigned int h, w, s, xcs, ycs, bps; local
44 case VPX_IMG_FMT_ARGB_LE: bps = 32; break;
46 case VPX_IMG_FMT_BGR24: bps = 24; break;
53 case VPX_IMG_FMT_YVYU: bps = 16; break;
57 case VPX_IMG_FMT_VPXYV12: bps = 12; break;
59 case VPX_IMG_FMT_I440: bps = 16; break;
60 case VPX_IMG_FMT_I444: bps = 24; break;
61 case VPX_IMG_FMT_I42016: bps = 24; break;
63 case VPX_IMG_FMT_I44016: bps = 32; break;
64 case VPX_IMG_FMT_I44416: bps
[all...]
/external/libvpx/libvpx/
H A Dy4minput.h55 int bps; member in struct:y4m_input
/external/libvpx/libvpx/test/
H A Dvp9_block_error_test.cc36 int bps);
48 int64_t *ssz, int bps) {
49 EXPECT_EQ(bps, 8);
46 BlockError8BitWrapper(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bps) argument
/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/flac/libFLAC/
H A Dlpc.c1320 FLAC__double bps = (FLAC__double)0.5 * log(error_scale * lpc_error) / M_LN2; local
1321 if(bps >= 0.0)
1322 return bps;
H A Dstream_decoder.c97 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
98 static FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
99 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode);
100 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode);
101 static FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode);
2054 unsigned bps = decoder->private_->frame.header.bits_per_sample; local
2062 bps++;
2067 bps++;
2072 bps++;
2080 if(!read_subframe_(decoder, channel, bps, do_full_decod
2482 read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
2554 read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
2577 read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode) argument
2639 read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const unsigned order, FLAC__bool do_full_decode) argument
2734 read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full_decode) argument
3016 unsigned bps = FLAC__stream_decoder_get_bits_per_sample(decoder); local
[all...]
/external/iptables/extensions/
H A Dlibxt_rateest.c22 " --rateest-bps1 [bps] Compare bps\n"
24 " --rateest-bps2 [bps] Compare bps\n"
52 {.name = "rateest-bps", .has_arg = false, .val = OPT_RATEEST_BPS2}, /* alias for absolute mode */
91 double bps = strtod(str, &p); local
98 *rate = bps / 8.; /* assume bytes/sec */
104 *rate = (bps * s->scale) / 8.;
150 "rateest: rateest-bps can't be inverted");
197 "rateest: rateest-bps ca
[all...]
/external/webrtc/talk/media/base/
H A Drtpdataengine.cc285 bool RtpDataMediaChannel::SetMaxSendBandwidth(int bps) { argument
286 if (bps <= 0) {
287 bps = kDataMaxBandwidth;
289 send_limiter_.reset(new rtc::RateLimiter(bps / 8, 1.0));
290 LOG(LS_INFO) << "RtpDataMediaChannel::SetSendBandwidth to " << bps << "bps.";
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
H A Dremb.cc152 unsigned int bps = 0; local
153 if (!estimator_->LatestEstimate(&ssrcs, &bps)) {
156 latest_estimate_bps_ = bps;
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h119 int bps; /**< bits per sample (for packed formats) */ member in struct:vpx_image
/external/pdfium/third_party/libtiff/
H A Dtif_predict.c383 uint32 bps = tif->tif_dir.td_bitspersample / 8; local
384 tmsize_t wc = cc / bps;
389 assert((cc%(bps*stride))==0);
404 for (byte = 0; byte < bps; byte++) {
406 cp[bps * count + byte] = tmp[byte * wc + count];
408 cp[bps * count + byte] =
409 tmp[(bps - byte - 1) * wc + count];
581 uint32 bps = tif->tif_dir.td_bitspersample / 8; local
582 tmsize_t wc = cc / bps;
587 assert((cc%(bps*strid
[all...]
H A Dtif_luv.c1588 int bps, fmt; local
1601 bps = 32, fmt = SAMPLEFORMAT_IEEEFP;
1604 bps = 16, fmt = SAMPLEFORMAT_INT;
1607 bps = 32, fmt = SAMPLEFORMAT_UINT;
1611 bps = 8, fmt = SAMPLEFORMAT_UINT;
1619 TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, bps);
/external/pdfium/core/fxcodec/codec/
H A Dccodec_tiffmodule.cpp42 void SetPalette(CFX_DIBitmap* pDIBitmap, uint16_t bps);
46 uint16_t bps,
51 uint16_t bps,
56 uint16_t bps,
322 void CCodec_TiffContext::SetPalette(CFX_DIBitmap* pDIBitmap, uint16_t bps) { argument
327 for (int32_t i = (1L << bps) - 1; i >= 0; i--) {
334 int32_t len = 1 << bps;
348 uint16_t bps,
350 if (pDIBitmap->GetBPP() != 1 || spp != 1 || bps != 1 ||
354 SetPalette(pDIBitmap, bps);
345 Decode1bppRGB(CFX_DIBitmap* pDIBitmap, int32_t height, int32_t width, uint16_t bps, uint16_t spp) argument
373 Decode8bppRGB(CFX_DIBitmap* pDIBitmap, int32_t height, int32_t width, uint16_t bps, uint16_t spp) argument
409 Decode24bppRGB(CFX_DIBitmap* pDIBitmap, int32_t height, int32_t width, uint16_t bps, uint16_t spp) argument
461 uint16_t bps = 0; local
[all...]
/external/syslinux/com32/include/syslinux/
H A Ddisk.h55 uint32_t bps; /* bytes per sector */ member in struct:disk_info
77 uint16_t bps; /* bytes per sector */ member in struct:disk_ebios_eparam
/external/syslinux/memdisk/
H A Dmstructs.h124 uint8_t bps; /* Bytes/sector (02h = 512) */ member in struct:__anon22393::fd_dpt
/external/fio/
H A Dbackend.c804 uint64_t secs, remainder, bps, bytes, iops; local
808 bps = td->rate_bps[ddir];
812 iops = bps / td->o.bs[ddir];
822 } else if (bps) {
823 secs = bytes / bps;
824 remainder = bytes % bps;
825 return remainder * 1000000 / bps + secs * 1000000;
/external/webp/src/dec/
H A Dframe_dec.c363 static void Dither8x8(VP8Random* const rg, uint8_t* dst, int bps, int amp) { argument
369 VP8DitherCombine8x8(dither, dst, bps);

Completed in 863 milliseconds

12