HomeSort by relevance Sort by last modified time
    Searched defs:bps (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/libvpx/vpx/src/
vpx_image.c 24 unsigned int h, w, s, xcs, ycs, bps; local
42 bps = 32;
46 bps = 24;
55 bps = 16;
61 bps = 12;
64 bps = 16;
100 s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8;
122 img->img_data = malloc((fmt & VPX_IMG_FMT_PLANAR) ? h * w * bps / 8 : h * s);
134 img->bps = bps;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/nas/
SDL_nasaudio.h 57 int bps; member in struct:SDL_PrivateAudioData
  /external/iproute2/include/linux/
gen_stats.h 32 * @bps: current byte rate
36 __u32 bps; member in struct:gnet_stats_rate_est
pkt_sched.h 38 __u32 bps; /* Current flow byte rate */ member in struct:tc_stats
266 __u32 rate2quantum; /* bps->quantum divisor */
299 __u32 m1; /* slope of the first segment in bps */
301 __u32 m2; /* slope of the second segment in bps */
  /external/iproute2/tc/
tc_core.c 115 unsigned bps = r->rate; local
129 rtab[i] = tc_calc_xmittime(bps, sz);
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.;
519 prefix, sprint_rate(re.bps, b1), re.pps);
557 if (st.bps || st.pps || st.qlen || st.backlog) {
559 if (st.bps || st.pps) {
561 if (st.bps)
562 fprintf(fp, "%s ", sprint_rate(st.bps, b1));
  /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
pkt_sched.h 37 __u32 bps; /* Current flow byte rate */ member in struct:tc_stats
256 __u32 rate2quantum; /* bps->quantum divisor */
293 __u32 m1; /* slope of the first segment in bps */
295 __u32 m2; /* slope of the second segment in bps */
  /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
pkt_sched.h 37 __u32 bps; /* Current flow byte rate */ member in struct:tc_stats
256 __u32 rate2quantum; /* bps->quantum divisor */
293 __u32 m1; /* slope of the first segment in bps */
295 __u32 m2; /* slope of the second segment in bps */
  /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
pkt_sched.h 37 __u32 bps; /* Current flow byte rate */ member in struct:tc_stats
256 __u32 rate2quantum; /* bps->quantum divisor */
293 __u32 m1; /* slope of the first segment in bps */
295 __u32 m2; /* slope of the second segment in bps */
  /external/aac/libSYS/src/
wav_file.cpp 248 * host endianess and scaled to full scale of the INT_PCM type, from whatever bps the WAVEfile
466 int bps = Unpack(wav->header.bitsPerSample); local
470 if (bps == nBufBits && bps == nSigBits) {
471 if (FDKfwrite_EL(sampleBuffer, (bps>>3), numberOfSamples, wav->fp) != numberOfSamples)
489 shift = (nBufBits-nSigBits)-(32-bps);
492 if ( !IS_LITTLE_ENDIAN() && bps == 24) {
502 result=FDKfwrite_EL(&tmp, bps>>3, 1, wav->fp);
510 wav->header.dataSize += (numberOfSamples * (bps>>3));
  /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/iptables/extensions/
libxt_rateest.c 21 " --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 */
74 { "Bps", 8. },
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")
    [all...]
  /external/flac/libFLAC/
lpc.c 1345 FLAC__double bps = (FLAC__double)0.5 * log(error_scale * lpc_error) \/ M_LN2; local
    [all...]
stream_decoder.c 120 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
2994 unsigned bps = FLAC__stream_decoder_get_bits_per_sample(decoder); local
    [all...]
  /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/libvpx/vpx/
vpx_image.h 129 int bps; /**< bits per sample (for packed formats) */ member in struct:vpx_image
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 732 uint64_t bps = approxBitrate(); local
733 if (bps != 0) {
734 mMeta->setInt64(kKeyDuration, size * 8000000ll / bps);
  /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...]
  /bionic/libc/kernel/common/linux/
pkt_sched.h 39 __u32 bps; member in struct:tc_stats
  /development/ndk/platforms/android-3/include/linux/
pkt_sched.h 30 __u32 bps; member in struct:tc_stats
  /external/kernel-headers/original/linux/
pkt_sched.h 39 __u32 bps; /* Current flow byte rate */ member in struct:tc_stats
283 __u32 rate2quantum; /* bps->quantum divisor */
320 __u32 m1; /* slope of the first segment in bps */
322 __u32 m2; /* slope of the second segment in bps */
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
pkt_sched.h 30 __u32 bps; member in struct:tc_stats

Completed in 626 milliseconds

1 2 3 4