HomeSort by relevance Sort by last modified time
    Searched defs:overhead (Results 1 - 19 of 19) sorted by null

  /external/e2fsprogs/resize/
online.c 34 int fd, overhead; local
128 overhead = (int) (2 + new_fs->inode_blocks_per_group);
131 overhead += 1 + new_fs->desc_blocks +
resize2fs.c 298 int overhead = 0; local
321 * Overhead is the number of bookkeeping blocks per group. It
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)) {
1910 int overhead = 0, num_of_superblocks = 0; local
    [all...]
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 65 int RingBuffer::overhead() const { function in class:video_editing::RingBuffer
91 int overhead = size_ - head_; local
93 num_channels_ * overhead * sizeof(samples[0]));
94 head_ = num_frames - overhead;
95 memcpy(samples_, samples + overhead * num_channels_,
  /external/e2fsprogs/lib/ext2fs/
initialize.c 101 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/
q_htb.c 37 "... 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 = overhead
    [all...]
q_tbf.c 30 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 = overhead
    [all...]
m_police.c 38 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 %ub ", p->rate.overhead)
    [all...]
q_cbq.c 35 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, *argv, 10))
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
Part.java 330 ByteArrayOutputStream overhead = new ByteArrayOutputStream(); local
331 sendStart(overhead);
332 sendDispositionHeader(overhead);
333 sendContentTypeHeader(overhead);
334 sendTransferEncodingHeader(overhead);
335 sendEndOfHeader(overhead);
336 sendEnd(overhead);
337 return overhead.size() + lengthOfData();
  /system/extras/tests/memtest/
memtest.cpp 55 nsecs_t overhead = -system_time(); local
59 overhead += system_time();
60 return overhead;
185 const nsecs_t overhead = loop_overhead(REPEAT); local
198 t += system_time() - overhead;
303 const nsecs_t overhead = loop_overhead(REPEAT); local
313 t += system_time() - overhead;
442 const nsecs_t overhead = loop_overhead(REPEAT); local
459 t += system_time() - overhead;
553 const nsecs_t overhead = loop_overhead(REPEAT) local
    [all...]
  /dalvik/vm/alloc/
HeapSource.cpp 77 * including any overhead. This value is NOT exact, and
364 size_t overhead = base - hs->heaps[0].base; local
367 if (overhead + HEAP_MIN_FREE >= hs->maximumSize) {
369 "(%zd overhead, %zd max)",
370 overhead, hs->maximumSize);
374 heap.maximumSize = hs->growthLimit - overhead;
378 heap.msp = createMspace(base, HEAP_MIN_FREE, hs->maximumSize - overhead);
385 hs->heaps[0].maximumSize = overhead;
1073 size_t overhead = oldHeapOverhead(gHs, false); local
1074 gHs->heaps[0].maximumSize = gHs->maximumSize - overhead;
1158 size_t overhead = getSoftFootprint(false); local
1272 size_t overhead = getSoftFootprint(false); local
    [all...]
  /external/strace/
syscall.c 2651 static struct timeval overhead = { -1, -1 }; variable in typeref:struct:timeval
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 341 // Use random fill (so it doesn't compress), subtract a little for gzip overhead
343 final int overhead = 64; local
348 addRandomEntry(dropbox, "DropBoxTest0", blockSize - overhead);
349 addRandomEntry(dropbox, "DropBoxTest0", blockSize - overhead);
351 addRandomEntry(dropbox, "DropBoxTest1", blockSize - overhead);
352 addRandomEntry(dropbox, "DropBoxTest1", blockSize - overhead);
353 addRandomEntry(dropbox, "DropBoxTest1", blockSize * 2 - overhead);
354 addRandomEntry(dropbox, "DropBoxTest1", blockSize - overhead);
355 addRandomEntry(dropbox, "DropBoxTest1", blockSize * 20 - overhead);
357 addRandomEntry(dropbox, "DropBoxTest2", blockSize * 4 - overhead);
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 430 long overhead = 0; local
435 if (overhead < sleep) {
436 wait(sleep - overhead);
440 mCurrentTime += overhead;
451 overhead = System.currentTimeMillis() - startAt - sleep;
  /bionic/libc/kernel/common/linux/
pkt_sched.h 58 unsigned short overhead; member in struct:tc_ratespec
70 int overhead; member in struct:tc_sizespec
  /external/iproute2/include/linux/
pkt_sched.h 79 unsigned short overhead; member in struct:tc_ratespec
91 int overhead; member in struct:tc_sizespec
  /external/kernel-headers/original/linux/
pkt_sched.h 82 unsigned short overhead; member in struct:tc_ratespec
94 int overhead; member in struct:tc_sizespec
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pkt_sched.h 80 unsigned short overhead; member in struct:tc_ratespec
  /dalvik/libdex/
DexFile.h 524 /* track memory overhead for auxillary structures */
525 int overhead; member in struct:DexFile

Completed in 3301 milliseconds