Searched defs:overhead (Results 1 - 22 of 22) sorted by relevance

/external/e2fsprogs/resize/
H A Donline.c34 int fd, overhead; local
127 overhead = (int) (2 + new_fs->inode_blocks_per_group);
130 overhead += 1 + new_fs->desc_blocks +
H A Dresize2fs.c298 int overhead = 0; local
326 overhead = (int) (2 + fs->inode_blocks_per_group);
329 overhead += 1 + fs->desc_blocks +
339 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
341 if (rem && (rem < overhead+50)) {
1895 int overhead = 0, num_of_superblocks = 0; local
1944 overhead = META_OVERHEAD(fs);
1947 overhead += SUPER_OVERHEAD(fs);
1956 overhead;
1958 data_blocks -= overhead;
[all...]
/external/chromium_org/net/quic/crypto/
H A Dcrypto_framer.cc101 const size_t overhead = kQuicTagSize + kCryptoEndOffsetSize; local
102 if (delta > overhead) {
103 pad_length = delta - overhead;
105 len += overhead + pad_length;
/external/e2fsprogs/lib/ext2fs/
H A Dinitialize.c101 unsigned int overhead = 0; local
322 overhead = (int) (3 + fs->inode_blocks_per_group +
326 if (overhead > super->s_blocks_per_group) {
334 * it. We need to recalculate the overhead for the last block
338 overhead = (int) (2 + fs->inode_blocks_per_group);
340 overhead += 1 + fs->desc_blocks + super->s_reserved_gdt_blocks;
343 if ((fs->group_desc_count == 1) && rem && (rem < overhead)) {
347 if (rem && (rem < overhead+50)) {
/external/iproute2/tc/
H A Dm_police.c38 fprintf(stderr, " [ peakrate BPS ] [ avrate BPS ] [ overhead BYTES ]\n");
137 unsigned short overhead=0; local
240 } else if (matches(*argv, "overhead") == 0) {
242 if (get_u16(&overhead, *argv, 10)) {
243 explain1("overhead"); return -1;
279 p.rate.overhead = overhead;
289 p.peakrate.overhead = overhead;
362 fprintf(f, "overhead
[all...]
H A Dq_htb.c37 "... class add ... htb rate R1 [burst B1] [mpu B] [overhead O]\n"
43 " overhead per-packet size overhead used in rate computations\n"
110 unsigned short overhead = 0; local
133 } else if (matches(*argv, "overhead") == 0) {
135 if (get_u16(&overhead, *argv, 10)) {
136 explain1("overhead"); return -1;
214 opt.ceil.overhead = overhead;
215 opt.rate.overhead
[all...]
H A Dq_tbf.c30 fprintf(stderr, "[ overhead BYTES ] [ linklayer TYPE ]\n");
47 unsigned short overhead=0; local
134 } else if (matches(*argv, "overhead") == 0) {
136 if (overhead) {
137 fprintf(stderr, "Double \"overhead\" spec\n");
140 if (get_u16(&overhead, *argv, 10)) {
141 explain1("overhead"); return -1;
191 opt.rate.overhead = overhead;
200 opt.peakrate.overhead
[all...]
H A Dq_cbq.c35 fprintf(stderr, " [ overhead BYTES ] [ linklayer TYPE ]\n");
56 unsigned short overhead=0; local
118 } else if (matches(*argv, "overhead") == 0) {
120 if (get_u16(&overhead, *argv, 10)) {
121 explain1("overhead"); return -1;
153 r.overhead = overhead;
195 unsigned short overhead=0; local
335 } else if (matches(*argv, "overhead") == 0) {
337 if (get_u16(&overhead, *arg
[all...]
/external/strace/
H A Dcount.c131 static struct timeval overhead = { -1, -1 }; variable in typeref:struct:timeval
153 overhead.tv_sec = n / 1000000;
154 overhead.tv_usec = n % 1000000;
175 if (overhead.tv_sec == -1)
177 tv_mul(&overhead, &shortest, 8);
178 tv_div(&overhead, &overhead, 10);
185 tv_mul(&dtv, &overhead, counts[i].calls);
/external/chromium_org/ppapi/proxy/
H A Dwebsocket_resource.cc35 uint64_t overhead = kBaseFramingOverhead + kMaskingKeyLength; local
37 overhead += 8;
39 overhead += 2;
40 return SaturateAdd(payload_size, overhead);
/external/iputils/
H A Dtracepath.c51 const int overhead = 28; variable
273 if (sendto(fd, pktbuf, mtu-overhead, 0, (struct sockaddr*)&target, sizeof(target)) > 0)
328 if ((mtu = atoi(optarg)) <= overhead) {
330 overhead, INT_MAX);
H A Dtracepath6.c63 int overhead; variable
343 if (sendto(fd, pktbuf, mtu-overhead, 0, (struct sockaddr *)&target, targetlen) > 0)
473 overhead = 48;
476 if (mtu <= overhead)
507 overhead = 28;
510 if (mtu <= overhead)
586 overhead, INT_MAX);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocket.cpp614 size_t overhead = hybiBaseFramingOverhead + hybiMaskingKeyLength; local
616 overhead += 8;
618 overhead += 2;
619 return overhead;
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Ds3_cbc.c115 const unsigned overhead = 1 /* padding length byte */ + mac_size; local
119 if (overhead > rec->length)
123 good = constant_time_ge(rec->length, padding_length+overhead);
149 const unsigned overhead = 1 /* padding length byte */ + mac_size; local
156 if (overhead + block_size > rec->length)
163 else if (overhead > rec->length)
195 good = constant_time_ge(rec->length, overhead+padding_length);
771 * HMAC adds a constant overhead.
/external/openssl/ssl/
H A Ds3_cbc.c115 const unsigned overhead = 1 /* padding length byte */ + mac_size; local
119 if (overhead > rec->length)
123 good = constant_time_ge(rec->length, padding_length+overhead);
149 const unsigned overhead = 1 /* padding length byte */ + mac_size; local
156 if (overhead + block_size > rec->length)
163 else if (overhead > rec->length)
195 good = constant_time_ge(rec->length, overhead+padding_length);
771 * HMAC adds a constant overhead.
/external/libppp/src/
H A Dbundle.c1884 int sp, overhead, maxoverhead; local
1891 overhead = ccp_MTUOverhead(&dl->physical->link.ccp);
1892 if (maxoverhead < overhead)
1893 maxoverhead = overhead;
1913 overhead = ccp_MTUOverhead(&bundle->ncp.mp.link.ccp);
1914 if (maxoverhead < overhead)
1915 maxoverhead = overhead;
/external/kernel-headers/original/linux/
H A Dpkt_sched.h82 unsigned short overhead; member in struct:tc_ratespec
94 int overhead; member in struct:tc_sizespec
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c175 long overhead; member in struct:__anon19806
211 ALOGD( "%s:%s, bytes=%ld, lapse=%ld (%d.%02d kbps) (bus data rate %d.%02d kbps) overhead %d(%d percent)\n",
215 (int)(9 * (t->bytes + t->count * t->overhead) / t->lapse), (int)(900 * (t->bytes + t->count * t->overhead) / (t->lapse)) % 100,
216 (int)(t->count * t->overhead), (int)(t->count * t->overhead * 100 / t->bytes)
/external/iproute2/include/linux/
H A Dpkt_sched.h79 unsigned short overhead; member in struct:tc_ratespec
91 int overhead; member in struct:tc_sizespec
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3con.c11047 const unsigned int overhead = 1 /* padding length byte */ + macSize; local
11051 if (overhead > plaintext->len) {
11058 t -= paddingLength+overhead;
11059 /* If len >= paddingLength+overhead then the MSB of t is zero. */
11072 const unsigned int overhead = 1 /* padding length byte */ + macSize; local
11076 if (overhead > plaintext->len) {
11082 t -= paddingLength+overhead;
11083 /* If len >= paddingLength+overhead then the MSB of t is zero. */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 817 milliseconds