/external/qemu/distrib/sdl-1.2.15/src/audio/nas/ |
SDL_nasaudio.h | 57 int bps; member in struct:SDL_PrivateAudioData
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
gen_stats.h | 29 * @bps: current byte rate 34 __u32 bps; member in struct:gnet_stats_rate_est
|
wanrouter.h | 212 unsigned bps; /* data transfer rate */ member in struct:wandev_conf 427 unsigned bps; /* data transfer rate */ member in struct:wanif_conf
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
gen_stats.h | 29 * @bps: current byte rate 34 __u32 bps; member in struct:gnet_stats_rate_est
|
wanrouter.h | 212 unsigned bps; /* data transfer rate */ member in struct:wandev_conf 427 unsigned bps; /* data transfer rate */ member in struct:wanif_conf
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
gen_stats.h | 29 * @bps: current byte rate 34 __u32 bps; member in struct:gnet_stats_rate_est
|
wanrouter.h | 212 unsigned bps; /* data transfer rate */ member in struct:wandev_conf 427 unsigned bps; /* data transfer rate */ member in struct:wanif_conf
|
/external/libvpx/libvpx/vp9/ |
vp9_iface_common.h | 19 int bps = 12; local 23 bps = 24; 26 bps = 16; 45 img->bps = bps;
|
/external/libvpx/libvpx/vpx/src/ |
vpx_image.c | 51 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/ |
gen_stats.h | 32 * @bps: current byte rate 36 __u32 bps; member in struct:gnet_stats_rate_est
|
/system/core/toolbox/ |
newfs_msdos.c | 112 u_int8_t bps[2]; /* bytes per sector */ member in struct:bsbpb 156 u_int bps; /* bytes per sector */ member in struct:bpb 409 bpb.bps = opt_S; 420 bpb.bsec -= (opt_ofs / bpb.bps); 441 if (!powerof2(bpb.bps)) 442 errx(1, "bytes/sector (%u) is not a power of 2", bpb.bps); 443 if (bpb.bps < MINBPS) 445 bpb.bps, MINBPS); 461 if (opt_b < bpb.bps) 463 opt_b, bpb.bps); [all...] |
/external/iproute2/tc/ |
tc_red.c | 75 int tc_red_eval_idle_damping(int Wlog, unsigned avpkt, unsigned bps, __u8 *sbuf) 77 double xmit_time = tc_calc_xmittime(bps, avpkt);
|
tc_util.c | 133 { "Bps", 8. }, 149 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));
|
tc_core.c | 115 unsigned bps = r->rate; local 129 rtab[i] = tc_calc_xmittime(bps, sz);
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
NativeFrame.java | 180 int bps = getFormat().getBytesPerSample(); local 181 if (!setNativeBitmap(rgbaBitmap, byteCount, bps)) { 196 int bps = getFormat().getBytesPerSample(); local 197 if (!getNativeBitmap(result, byteCount, bps)) {
|
/external/chromium/net/tools/fetch/ |
fetch_client.cc | 190 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/ |
fetch_client.cc | 203 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);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
SuperFloppyFormatter.java | 272 final int bps = device.getSectorSize(); local 274 ((rootDirEntries * 32) + (bps - 1)) / bps; 365 private static int rootDirectorySize(int bps, int nbTotalSectors) { 366 final int totalSize = bps * nbTotalSectors;
|
/external/aac/libSYS/src/ |
wav_file.cpp | 247 * 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/ |
rtpdataengine.cc | 293 bool RtpDataMediaChannel::SetSendBandwidth(bool autobw, int bps) { 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.";
|
/external/chromium_org/v8/test/mjsunit/ |
debug-multiple-breakpoints.js | 93 bps = new Array(test_count); 96 bps[i] = Debug.setBreakPoint(h); 101 Debug.clearBreakPoint(bps[i]);
|
/external/v8/test/mjsunit/ |
debug-multiple-breakpoints.js | 93 bps = new Array(test_count); 96 bps[i] = Debug.setBreakPoint(h); 101 Debug.clearBreakPoint(bps[i]);
|
/bionic/libc/kernel/common/linux/ |
wanrouter.h | 171 unsigned bps; member in struct:wandev_conf 367 unsigned bps; member in struct:wanif_conf
|
/development/ndk/platforms/android-3/include/linux/ |
wanrouter.h | 150 unsigned bps; member in struct:wandev_conf 331 unsigned bps; member in struct:wanif_conf
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
filemediaengine.h | 152 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; } 187 virtual bool SetSendBandwidth(bool autobw, int bps) { return true; }
|