Searched refs:quantum (Results 1 - 8 of 8) sorted by relevance

/external/okhttp/src/main/java/libcore/io/
H A DBase64.java72 // holds the value of the input quantum
73 int quantum = 0;
103 // append the value to the quantum
104 quantum = (quantum << 6) | (byte) bits;
107 out[outIndex++] = (byte) (quantum >> 16);
108 out[outIndex++] = (byte) (quantum >> 8);
109 out[outIndex++] = (byte) quantum;
114 // adjust the quantum value according to the padding
115 quantum
[all...]
/external/iproute2/tc/
H A Dq_sfq.c28 fprintf(stderr, "Usage: ... sfq [ limit NUMBER ] [ perturb SECS ] [ quantum BYTES ]\n");
39 if (strcmp(*argv, "quantum") == 0) {
41 if (get_size(&opt.quantum, *argv)) {
92 fprintf(f, "quantum %s ", sprint_size(qopt->quantum, b1));
H A Dq_htb.c39 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
49 " quantum how much bytes to serve from leaf at once {use r2q}\n"
143 } else if (matches(*argv, "quantum") == 0) {
145 if (get_u32(&opt.quantum, *argv, 10)) {
146 explain1("quantum"); return -1;
264 fprintf(f, "quantum %d ", (int)hopt->quantum);
/external/iproute2/examples/
H A Dcbqinit.eth140 # Attach "sfq" qdisc to this class, quantum is MTU, perturb
43 $TC qdisc add dev $DEVICE parent 1:2 sfq quantum 1514b perturb 15
51 $TC qdisc add dev $DEVICE parent 1:3 sfq quantum 1514b perturb 15
59 $TC qdisc add dev $DEVICE parent 1:4 sfq quantum 1514b perturb 15
H A Dcbq.init-v0.7.3638 QUANTUM=${QUANTUM:+quantum $QUANTUM}
/external/iproute2/testsuite/tests/
H A Dcls-testbed.t33 htb rate 100Mbit quantum 1514
/external/iproute2/include/linux/
H A Dpkt_sched.h158 unsigned quantum; /* Bytes per round allocated to flow */ member in struct:tc_sfq_qopt
260 __u32 quantum; member in struct:tc_htb_opt
266 __u32 rate2quantum; /* bps->quantum divisor */
/external/kernel-headers/original/linux/
H A Dpkt_sched.h166 unsigned quantum; /* Bytes per round allocated to flow */ member in struct:tc_sfq_qopt
276 __u32 quantum; member in struct:tc_htb_opt
283 __u32 rate2quantum; /* bps->quantum divisor */

Completed in 154 milliseconds