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

1 2 3 4 5 6 7 8

  /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 */
  /prebuilt/linux-x86/toolchain/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
serial.h 86 #define ASYNC_SPD_HI 0x0010 /* Use 56000 instead of 38400 bps */
88 #define ASYNC_SPD_VHI 0x0020 /* Use 115200 instead of 38400 bps */
99 #define ASYNC_SPD_SHI 0x1000 /* Use 230400 instead of 38400 bps */
100 #define ASYNC_SPD_WARP 0x1010 /* Use 460800 instead of 38400 bps */
  /external/webp/src/dec/
dsp.c 59 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
100 dst += BPS;
114 VP8Transform(in + 2 * 16, dst + 4 * BPS, 1);
130 if (in[2 * 16]) TransformDC(in + 2 * 16, dst + 4 * BPS);
131 if (in[3 * 16]) TransformDC(in + 3 * 16, dst + 4 * BPS + 4);
177 #define OUT(x, y) dst[(x) + (y) * BPS]
180 const uint8_t* top = dst - BPS;
189 dst += BPS;
202 memcpy(dst + j * BPS, dst - BPS, 16)
    [all...]
frame.c 228 dec->yuv_b_ + Y_OFF + y * BPS, 16);
232 dec->yuv_b_ + U_OFF + y * BPS, 8);
234 dec->yuv_b_ + V_OFF + y * BPS, 8);
383 0 + 0 * BPS, 4 + 0 * BPS, 8 + 0 * BPS, 12 + 0 * BPS,
384 0 + 4 * BPS, 4 + 4 * BPS, 8 + 4 * BPS, 12 + 4 * BPS
    [all...]
vp8i.h 90 // With this layout, BPS (=Bytes Per Scan-line) is one cacheline size.
91 #define BPS 32 // this is the common stride used by yuv[]
92 #define YUV_SIZE (BPS * 17 + BPS * 9)
93 #define Y_SIZE (BPS * 17)
94 #define Y_OFF (BPS * 1 + 8)
95 #define U_OFF (Y_OFF + BPS * 16 + BPS)
318 // *dst is the destination block, with stride BPS. Boundary samples are
  /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...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/
AMRWBEncoder.cpp 53 static VOAMRWBMODE pickModeFromBitRate(int32_t bps) {
54 CHECK(bps >= 0);
55 if (bps <= 6600) {
57 } else if (bps <= 8850) {
59 } else if (bps <= 12650) {
61 } else if (bps <= 14250) {
63 } else if (bps <= 15850) {
65 } else if (bps <= 18250) {
67 } else if (bps <= 19850) {
69 } else if (bps <= 23050)
    [all...]
  /external/webp/src/enc/
vp8enci.h 112 #define BPS 16 // this is the common stride
113 #define Y_SIZE (BPS * 16)
114 #define UV_SIZE (BPS * 8)
116 #define PRED_SIZE (6 * 16 * BPS + 12 * BPS)
130 #define I16DC16 (0 * 16 * BPS)
131 #define I16TM16 (1 * 16 * BPS)
132 #define I16VE16 (2 * 16 * BPS)
133 #define I16HE16 (3 * 16 * BPS)
135 #define C8DC8 (4 * 16 * BPS)
    [all...]
dsp_sse2.c 248 ref0 = _mm_loadl_epi64((__m128i*)&ref[0 * BPS]);
249 ref1 = _mm_loadl_epi64((__m128i*)&ref[1 * BPS]);
250 ref2 = _mm_loadl_epi64((__m128i*)&ref[2 * BPS]);
251 ref3 = _mm_loadl_epi64((__m128i*)&ref[3 * BPS]);
254 ref0 = _mm_cvtsi32_si128(*(int*)&ref[0 * BPS]);
255 ref1 = _mm_cvtsi32_si128(*(int*)&ref[1 * BPS]);
256 ref2 = _mm_cvtsi32_si128(*(int*)&ref[2 * BPS]);
257 ref3 = _mm_cvtsi32_si128(*(int*)&ref[3 * BPS]);
277 _mm_storel_epi64((__m128i*)&dst[0 * BPS], ref0);
278 _mm_storel_epi64((__m128i*)&dst[1 * BPS], ref1)
    [all...]
iterator.c 95 ydst += BPS;
99 memcpy(ydst, ydst - BPS, 16);
100 ydst += BPS;
112 udst += BPS;
113 vdst += BPS;
118 memcpy(udst, udst - BPS, 8);
119 memcpy(vdst, vdst - BPS, 8);
120 udst += BPS;
121 vdst += BPS;
148 memcpy(ydst + i * pic->y_stride, ysrc + i * BPS, w)
    [all...]
dsp.c 94 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
144 for (i = 0; i < 4; ++i, src += BPS, ref += BPS) {
232 #define OUT(x, y) dst[(x) + (y) * BPS]
237 memset(dst + j * BPS, value, size);
244 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size);
254 memset(dst + j * BPS, left[j], size);
273 dst += BPS;
360 memcpy(dst + i * BPS, vals, 4)
    [all...]
quant.c 335 0 + 0 * BPS, 4 + 0 * BPS, 8 + 0 * BPS, 12 + 0 * BPS,
336 0 + 4 * BPS, 4 + 4 * BPS, 8 + 4 * BPS, 12 + 4 * BPS,
337 0 + 8 * BPS, 4 + 8 * BPS, 8 + 8 * BPS, 12 + 8 * BPS
    [all...]
  /external/iptables/extensions/
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!)
33 BPS/PPS options. If the flow rate is higher than the specified BPS/PPS, 0 will
58 \fB\-\-rateest\-bps\fP [\fIvalue\fP]
72 [KMGT]ibit, Bps, [KMGT]Bps, [KMGT]iBps.
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...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/
AMRNBEncoder.cpp 52 static Mode PickModeFromBitrate(int32_t bps) {
53 if (bps <= 4750) {
55 } else if (bps <= 5150) {
57 } else if (bps <= 5900) {
59 } else if (bps <= 6700) {
61 } else if (bps <= 7400) {
63 } else if (bps <= 7950) {
65 } else if (bps <= 10200) {
  /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);
  /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);
440 if (!powerof2(bpb.bps))
441 errx(1, "bytes/sector (%u) is not a power of 2", bpb.bps);
442 if (bpb.bps < MINBPS)
444 bpb.bps, MINBPS);
460 if (opt_b < bpb.bps)
462 opt_b, bpb.bps);
    [all...]
  /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]);
  /external/iproute2/tc/
tc_red.c 72 int tc_red_eval_idle_damping(int Wlog, unsigned avpkt, unsigned bps, __u8 *sbuf)
74 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.;
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));
  /frameworks/base/media/libstagefright/codecs/common/include/
voAMRWB.h 38 VOAMRWB_MD1585 = 4, /*!< 15.85bps */
39 VOAMRWB_MD1825 = 5, /*!< 18.25bps */
  /external/qemu/distrib/sdl-1.2.12/src/audio/nas/
SDL_nasaudio.h 57 int bps; member in struct:SDL_PrivateAudioData
  /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 */

Completed in 3842 milliseconds

1 2 3 4 5 6 7 8