/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/ |
D | proxyshaper_test.py | 62 bps = 384000 65 limited_f = proxyshaper.RateLimitedFile(request_counter, f, bps) 68 expected_ms = 8.0 * num_bytes / bps * 1000.0 74 bps = 384000 77 limited_f = proxyshaper.RateLimitedFile(request_counter, f, bps) 80 expected_ms = 8.0 * num_bytes / bps * 1000.0 86 bps = 384000 90 limited_f = proxyshaper.RateLimitedFile(request_counter, f, bps) 94 expected_ms = 8.0 * num_bytes / (bps / float(request_count)) * 1000.0 100 bps = 384000 [all …]
|
D | proxyshaper.py | 50 def __init__(self, request_counter, f, bps): argument 60 self.bps = bps 64 return 8.0 * num_bytes / self.bps
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_image.c | 25 unsigned int h, w, s, xcs, ycs, bps; in img_alloc_helper() local 51 bps = 32; in img_alloc_helper() 55 bps = 24; in img_alloc_helper() 64 bps = 16; in img_alloc_helper() 70 bps = 12; in img_alloc_helper() 74 bps = 16; in img_alloc_helper() 77 bps = 24; in img_alloc_helper() 80 bps = 24; in img_alloc_helper() 84 bps = 32; in img_alloc_helper() 87 bps = 48; in img_alloc_helper() [all …]
|
/external/pdfium/core/src/fxcodec/codec/ |
D | fx_codec_tiff.cpp | 55 void SetPalette(CFX_DIBitmap* pDIBitmap, uint16_t bps); 59 uint16_t bps, 64 uint16_t bps, 69 uint16_t bps, 370 void CCodec_TiffContext::SetPalette(CFX_DIBitmap* pDIBitmap, uint16_t bps) { in SetPalette() argument 373 for (int32_t i = (1L << bps) - 1; i >= 0; i--) { in SetPalette() 380 int32_t len = 1 << bps; in SetPalette() 393 uint16_t bps, in Decode1bppRGB() argument 395 if (pDIBitmap->GetBPP() != 1 || spp != 1 || bps != 1 || in Decode1bppRGB() 399 SetPalette(pDIBitmap, bps); in Decode1bppRGB() [all …]
|
/external/iproute2/tc/ |
D | tc_util.c | 198 double bps = strtod(str, &p); in get_rate() local 206 bps *= s->scale; in get_rate() 215 bps /= 8; /* -> bytes per second */ in get_rate() 216 *rate = bps; in get_rate() 218 if (*rate != floor(bps)) in get_rate() 226 double bps = strtod(str, &p); in get_rate64() local 234 bps *= s->scale; in get_rate64() 243 bps /= 8; /* -> bytes per second */ in get_rate64() 244 *rate = bps; in get_rate64() 543 prefix, sprint_rate(re.bps, b1), re.pps); in print_tcstats2_attr() [all …]
|
D | tc_red.c | 75 int tc_red_eval_idle_damping(int Wlog, unsigned avpkt, unsigned bps, __u8 *sbuf) in tc_red_eval_idle_damping() argument 77 double xmit_time = tc_calc_xmittime(bps, avpkt); in tc_red_eval_idle_damping()
|
D | tc_core.c | 130 unsigned bps = r->rate; in tc_calc_rtable() local 144 rtab[i] = tc_calc_xmittime(bps, sz); in tc_calc_rtable()
|
/external/libvpx/libvpx/vp9/ |
D | vp9_iface_common.h | 21 int bps; in yuvconfig2image() local 25 bps = 24; in yuvconfig2image() 28 bps = 16; in yuvconfig2image() 33 bps = 16; in yuvconfig2image() 36 bps = 12; in yuvconfig2image() 74 img->bps = bps; in yuvconfig2image()
|
/external/libvpx/libvpx/test/ |
D | vp9_error_block_test.cc | 36 int64_t *ssz, int bps); 166 int64_t *ssz, int bps) { in wrap_vp9_highbd_block_error_8bit_c() argument 167 assert(bps == 8); in wrap_vp9_highbd_block_error_8bit_c() 175 int64_t *ssz, int bps) { in wrap_vp9_highbd_block_error_8bit_sse2() argument 176 assert(bps == 8); in wrap_vp9_highbd_block_error_8bit_sse2() 197 int64_t *ssz, int bps) { in wrap_vp9_highbd_block_error_8bit_avx() argument 198 assert(bps == 8); in wrap_vp9_highbd_block_error_8bit_avx()
|
D | y4m_test.cc | 102 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3 / 2); in HeaderChecks() 107 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 2); in HeaderChecks() 112 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3); in HeaderChecks()
|
/external/flac/libFLAC/include/private/ |
D | stream_encoder.h | 52 …nsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps); 57 …nsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps); 62 …nsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps);
|
/external/v8/test/mjsunit/ |
D | debug-multiple-breakpoints.js | 93 bps = new Array(test_count); variable 96 bps[i] = Debug.setBreakPoint(h); 101 Debug.clearBreakPoint(bps[i]);
|
/external/aac/libSYS/src/ |
D | wav_file.cpp | 472 int bps = Unpack(wav->header.bitsPerSample); in WAV_OutputWrite() local 476 if (bps == nBufBits && bps == nSigBits) { in WAV_OutputWrite() 477 if (FDKfwrite_EL(sampleBuffer, (bps>>3), numberOfSamples, wav->fp) != numberOfSamples) in WAV_OutputWrite() 495 shift = (nBufBits-nSigBits)-(32-bps); in WAV_OutputWrite() 498 if ( !IS_LITTLE_ENDIAN() && bps == 24) { in WAV_OutputWrite() 508 result=FDKfwrite_EL(&tmp, bps>>3, 1, wav->fp); in WAV_OutputWrite() 516 wav->header.dataSize += (numberOfSamples * (bps>>3)); in WAV_OutputWrite()
|
/external/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.cpp | 120 std::vector<DNBBreakpoint *> &bps) in FindBreakpointsThatOverlapRange() argument 122 bps.clear(); in FindBreakpointsThatOverlapRange() 134 bps.push_back (&pos->second); in FindBreakpointsThatOverlapRange() 148 bps.push_back (&pos->second); in FindBreakpointsThatOverlapRange() 153 return bps.size(); in FindBreakpointsThatOverlapRange()
|
/external/netperf/doc/examples/ |
D | bloat.sh | 96 CDEF:bps=mbps,2000000,\* \ 97 VDEF:maxbps=bps,MAXIMUM \ 118 CDEF:bps=mbps,1000000,\* \ 119 CDEF:sbps=bps,$SCALE,/ \
|
/external/pdfium/third_party/libtiff/ |
D | tif_predict.c | 380 uint32 bps = tif->tif_dir.td_bitspersample / 8; in fpAcc() local 381 tmsize_t wc = cc / bps; in fpAcc() 386 assert((cc%(bps*stride))==0); in fpAcc() 401 for (byte = 0; byte < bps; byte++) { in fpAcc() 403 cp[bps * count + byte] = tmp[byte * wc + count]; in fpAcc() 405 cp[bps * count + byte] = in fpAcc() 406 tmp[(bps - byte - 1) * wc + count]; in fpAcc() 578 uint32 bps = tif->tif_dir.td_bitspersample / 8; in fpDiff() local 579 tmsize_t wc = cc / bps; in fpDiff() 584 assert((cc%(bps*stride))==0); in fpDiff() [all …]
|
/external/iproute2/include/linux/ |
D | gen_stats.h | 37 __u32 bps; member 47 __u64 bps; member
|
/external/kernel-headers/original/uapi/linux/ |
D | gen_stats.h | 37 __u32 bps; member 47 __u64 bps; member
|
/external/webrtc/talk/media/base/ |
D | rtpdataengine.cc | 285 bool RtpDataMediaChannel::SetMaxSendBandwidth(int bps) { in SetMaxSendBandwidth() argument 286 if (bps <= 0) { in SetMaxSendBandwidth() 287 bps = kDataMaxBandwidth; in SetMaxSendBandwidth() 289 send_limiter_.reset(new rtc::RateLimiter(bps / 8, 1.0)); in SetMaxSendBandwidth() 290 LOG(LS_INFO) << "RtpDataMediaChannel::SetSendBandwidth to " << bps << "bps."; in SetMaxSendBandwidth()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
D | remb.cc | 152 unsigned int bps = 0; in LatestEstimate() local 153 if (!estimator_->LatestEstimate(&ssrcs, &bps)) { in LatestEstimate() 156 latest_estimate_bps_ = bps; in LatestEstimate()
|
/external/libvpx/libvpx/ |
D | y4minput.c | 744 _y4m->bps = 12; in y4m_input_open() 766 _y4m->bps = 15; in y4m_input_open() 784 _y4m->bps = 18; in y4m_input_open() 830 _y4m->bps = 16; in y4m_input_open() 843 _y4m->bps = 20; in y4m_input_open() 859 _y4m->bps = 24; in y4m_input_open() 899 _y4m->bps = 24; in y4m_input_open() 911 _y4m->bps = 30; in y4m_input_open() 926 _y4m->bps = 36; in y4m_input_open() 953 _y4m->bps = 32; in y4m_input_open() [all …]
|
/external/webp/src/enc/ |
D | picture.c | 265 size_t NAME(const uint8_t* in, int w, int h, int bps, float q, \ 267 return Encode(in, w, h, bps, IMPORTER, q, 0, out); \ 279 size_t NAME(const uint8_t* in, int w, int h, int bps, uint8_t** out) { \ 280 return Encode(in, w, h, bps, IMPORTER, LOSSLESS_DEFAULT_QUALITY, 1, out); \
|
/external/iptables/extensions/ |
D | libxt_rateest.man | 2 target. It supports matching on absolute bps/pps values, comparing two rate 9 \fBrateest\fP \fIoperator\fP \fBrateest-bps\fP 19 \fBrateest1\fP \fIoperator\fP \fBrateest2\fP \fBrateest-bps\fP(without rate!) 58 \fB\-\-rateest\-bps\fP [\fIvalue\fP]
|
/external/flac/libFLAC/ |
D | stream_decoder.c | 97 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC… 98 …ubframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full… 99 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps… 100 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, … 101 …ubframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool do_full… 2054 unsigned bps = decoder->private_->frame.header.bits_per_sample; in read_frame_() local 2062 bps++; in read_frame_() 2067 bps++; in read_frame_() 2072 bps++; in read_frame_() 2080 if(!read_subframe_(decoder, channel, bps, do_full_decode)) in read_frame_() [all …]
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_highbd_block_error_intrin_sse2.c | 18 int bps) { in vp9_highbd_block_error_sse2() argument 23 const int shift = 2 * (bps - 8); in vp9_highbd_block_error_sse2()
|