Home
last modified time | relevance | path

Searched refs:overhead (Results 1 – 25 of 185) sorted by relevance

12345678

/external/valgrind/coregrind/m_aspacemgr/
Daspacemgr-segnames.c124 overhead = refcount_size + slotsize_size, enumerator
150 aspacem_assert(ix >= overhead && ix <= segnames_used); in is_freeslot()
157 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_slotindex()
159 aspacem_assert(slotindex >= overhead && slotindex <= segnames_used); in put_slotindex()
171 aspacem_assert(ix >= overhead && ix <= segnames_used); in get_slotindex()
189 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_slotsize()
198 aspacem_assert(ix >= overhead && ix <= segnames_used); in get_slotsize()
211 aspacem_assert(ix >= overhead && ix <= segnames_used); in put_refcount()
221 aspacem_assert(ix >= overhead && ix <= segnames_used); in get_refcount()
233 aspacem_assert(ix >= overhead && ix <= segnames_used); in inc_refcount()
[all …]
/external/apache-http/android/src/com/android/internal/http/multipart/
DPart.java330 ByteArrayOutputStream overhead = new ByteArrayOutputStream(); in length() local
331 sendStart(overhead); in length()
332 sendDispositionHeader(overhead); in length()
333 sendContentTypeHeader(overhead); in length()
334 sendTransferEncodingHeader(overhead); in length()
335 sendEndOfHeader(overhead); in length()
336 sendEnd(overhead); in length()
337 return overhead.size() + lengthOfData(); in length()
/external/strace/
Dcount.c129 static struct timeval overhead = { -1, -1 }; variable
149 overhead.tv_sec = n / 1000000; in set_overhead()
150 overhead.tv_usec = n % 1000000; in set_overhead()
173 if (overhead.tv_sec == -1) { in call_summary_pers()
174 tv_mul(&overhead, &shortest, 8); in call_summary_pers()
175 tv_div(&overhead, &overhead, 10); in call_summary_pers()
181 tv_mul(&dtv, &overhead, counts[i].calls); in call_summary_pers()
/external/iproute2/tc/
Dq_tbf.c47 unsigned short overhead=0; in tbf_parse_opt() local
147 if (overhead) { in tbf_parse_opt()
151 if (get_u16(&overhead, *argv, 10)) { in tbf_parse_opt()
215 opt.rate.overhead = overhead; in tbf_parse_opt()
224 opt.peakrate.overhead = overhead; in tbf_parse_opt()
316 if (qopt->rate.overhead) { in tbf_print_opt()
317 fprintf(f, "overhead %d", qopt->rate.overhead); in tbf_print_opt()
Dtc_stab.c49 s->overhead != 0; in check_size_table_opts()
80 if (s.overhead) in parse_size_table()
82 if (get_integer(&s.overhead, *argv, 10)) in parse_size_table()
126 if (s.overhead) in print_size_table()
127 fprintf(fp, "overhead %d ", s.overhead); in print_size_table()
Dq_htb.c121 unsigned short overhead = 0; in htb_parse_class_opt() local
147 if (get_u16(&overhead, *argv, 10)) { in htb_parse_class_opt()
232 opt.ceil.overhead = overhead; in htb_parse_class_opt()
233 opt.rate.overhead = overhead; in htb_parse_class_opt()
306 if (hopt->rate.overhead) in htb_print_opt()
307 fprintf(f, "overhead %u ", hopt->rate.overhead); in htb_print_opt()
Dm_police.c136 unsigned short overhead=0; in act_parse_police() local
240 if (get_u16(&overhead, *argv, 10)) { in act_parse_police()
277 p.rate.overhead = overhead; in act_parse_police()
287 p.peakrate.overhead = overhead; in act_parse_police()
362 fprintf(f, "overhead %ub ", p->rate.overhead); in print_police()
Dq_cbq.c56 unsigned short overhead=0; in cbq_parse_opt() local
120 if (get_u16(&overhead, *argv, 10)) { in cbq_parse_opt()
153 r.overhead = overhead; in cbq_parse_opt()
195 unsigned short overhead=0; in cbq_parse_class_opt() local
337 if (get_u16(&overhead, *argv, 10)) { in cbq_parse_class_opt()
364 r.overhead = overhead; in cbq_parse_class_opt()
498 if (r->overhead) in cbq_print_opt()
499 fprintf(f, "overhead %ub ", r->overhead); in cbq_print_opt()
/external/libchrome/base/trace_event/
Dtrace_buffer.cc116 TraceEventMemoryOverhead* overhead) override { in EstimateTraceMemoryOverhead() argument
117 overhead->Add("TraceBufferRingBuffer", sizeof(*this)); in EstimateTraceMemoryOverhead()
123 chunks_[chunk_index]->EstimateTraceMemoryOverhead(overhead); in EstimateTraceMemoryOverhead()
266 TraceEventMemoryOverhead* overhead) override { in EstimateTraceMemoryOverhead() argument
271 overhead->Add("TraceBufferVector", chunks_ptr_vector_allocated_size, in EstimateTraceMemoryOverhead()
278 chunk->EstimateTraceMemoryOverhead(overhead); in EstimateTraceMemoryOverhead()
320 TraceEventMemoryOverhead* overhead) { in EstimateTraceMemoryOverhead() argument
335 overhead->Update(*cached_overhead_estimate_); in EstimateTraceMemoryOverhead()
349 overhead->Add("TraceEvent (unused)", in EstimateTraceMemoryOverhead()
353 overhead->Update(*cached_overhead_estimate_); in EstimateTraceMemoryOverhead()
Dheap_profiler_type_name_deduplicator.cc66 TraceEventMemoryOverhead* overhead) { in EstimateTraceMemoryOverhead() argument
71 overhead->Add("TypeNameDeduplicator", in EstimateTraceMemoryOverhead()
Dtrace_buffer.h44 void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
81 TraceEventMemoryOverhead* overhead) = 0;
Dheap_profiler_stack_frame_deduplicator.cc98 TraceEventMemoryOverhead* overhead) { in EstimateTraceMemoryOverhead() argument
109 overhead->Add("StackFrameDeduplicator", in EstimateTraceMemoryOverhead()
Dtrace_event_impl.cc191 TraceEventMemoryOverhead* overhead) { in EstimateTraceMemoryOverhead() argument
192 overhead->Add("TraceEvent", sizeof(*this)); in EstimateTraceMemoryOverhead()
198 overhead->AddRefCountedString(*parameter_copy_storage_.get()); in EstimateTraceMemoryOverhead()
202 convertable_values_[i]->EstimateTraceMemoryOverhead(overhead); in EstimateTraceMemoryOverhead()
Dtrace_event_impl.h56 virtual void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
120 void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead);
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dtmmbr.h40 void WithOverhead(uint16_t overhead) { in WithOverhead() argument
41 assert(overhead <= 0x1ff); in WithOverhead()
42 tmmbr_item_.MeasuredOverhead = overhead; in WithOverhead()
Dtmmbn.cc90 bool Tmmbn::WithTmmbr(uint32_t ssrc, uint32_t bitrate_kbps, uint16_t overhead) { in WithTmmbr() argument
91 assert(overhead <= 0x1ff); in WithTmmbr()
99 tmmbn_item.MeasuredOverhead = overhead; in WithTmmbr()
/external/e2fsprogs/resize/
Dresize2fs.c317 blk64_t overhead = 0; in adjust_fs_info() local
345 overhead = (int) (2 + fs->inode_blocks_per_group); in adjust_fs_info()
348 overhead += 1 + fs->desc_blocks + in adjust_fs_info()
358 if ((fs->group_desc_count == 1) && rem && (rem < overhead)) in adjust_fs_info()
360 if ((fs->group_desc_count > 1) && rem && (rem < overhead+50)) { in adjust_fs_info()
2026 int overhead; in calc_group_overhead() local
2029 overhead = fs->inode_blocks_per_group + 2; in calc_group_overhead()
2034 overhead++; in calc_group_overhead()
2036 overhead += old_desc_blocks; in calc_group_overhead()
2038 overhead++; in calc_group_overhead()
[all …]
/external/libnl/lib/route/sch/
Dhtb.c273 uint8_t overhead = 0, mpu = 0; in htb_class_get_opts() local
325 overhead = d->ch_overhead; in htb_class_get_opts()
330 opts.rate.mpu = mpu | (overhead << 8); in htb_class_get_opts()
331 opts.ceil.mpu = mpu | (overhead << 8); in htb_class_get_opts()
335 rtnl_tc_build_rate_table(rtable, mpu, overhead, in htb_class_get_opts()
340 rtnl_tc_build_rate_table(ctable, mpu, overhead, in htb_class_get_opts()
488 void rtnl_htb_set_overhead(struct rtnl_class *class, uint8_t overhead) in rtnl_htb_set_overhead() argument
494 d->ch_overhead = overhead; in rtnl_htb_set_overhead()
/external/iputils/
Dtracepath6.c63 int overhead; variable
343 if (sendto(fd, pktbuf, mtu-overhead, 0, (struct sockaddr *)&target, targetlen) > 0) in probe_ttl()
473 overhead = 48; in main()
476 if (mtu <= overhead) in main()
507 overhead = 28; in main()
510 if (mtu <= overhead) in main()
586 overhead, INT_MAX); in main()
Dtracepath.c51 const int overhead = 28; variable
273 if (sendto(fd, pktbuf, mtu-overhead, 0, (struct sockaddr*)&target, sizeof(target)) > 0) in probe_ttl()
328 if ((mtu = atoi(optarg)) <= overhead) { in main()
330 overhead, INT_MAX); in main()
/external/e2fsprogs/lib/ext2fs/
Dinitialize.c91 unsigned int overhead = 0; in ext2fs_initialize() local
378 overhead = (int) (3 + fs->inode_blocks_per_group + in ext2fs_initialize()
382 if (overhead > super->s_blocks_per_group) { in ext2fs_initialize()
394 overhead = (int) (2 + fs->inode_blocks_per_group); in ext2fs_initialize()
396 overhead += 1 + fs->desc_blocks + super->s_reserved_gdt_blocks; in ext2fs_initialize()
399 if ((fs->group_desc_count == 1) && rem && (rem < overhead)) { in ext2fs_initialize()
403 if (rem && (rem < overhead+50)) { in ext2fs_initialize()
/external/skia/bench/
Dnanobench.cpp238 double overhead = 0; in estimate_timer_overhead() local
241 overhead += now_ms() - start; in estimate_timer_overhead()
243 return overhead / FLAGS_overheadLoops; in estimate_timer_overhead()
301 static int setup_cpu_bench(const double overhead, Target* target, Benchmark* bench) { in setup_cpu_bench() argument
307 while (bench_plus_overhead < overhead) { in setup_cpu_bench()
310 bench->getUniqueName(), HUMANIZE(bench_plus_overhead), HUMANIZE(overhead)); in setup_cpu_bench()
334 const double numer = overhead / FLAGS_overheadGoal - overhead; in setup_cpu_bench()
335 const double denom = bench_plus_overhead - overhead; in setup_cpu_bench()
1074 const double overhead = estimate_timer_overhead(); in nanobench_main() local
1075 SkDebugf("Timer overhead: %s\n", HUMANIZE(overhead)); in nanobench_main()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
DPerfOutputWriter.java73 double overhead = 100 * (subject - reference) / reference; in writeResult() local
77 Double.valueOf(overhead)); in writeResult()
/external/autotest/site_utils/
Dcollect_suite_time_stats.py317 overhead = get_dut_overhead(dut, jobs, job_info_dict)
318 avg_overhead += overhead
319 print_verbose('Dut overhead: %f', overhead)
320 dut_overheads.append(overhead)
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp8.cc350 const size_t overhead = in GeneratePacketsBalancedAggregates() local
352 const size_t max_payload_len = max_payload_len_ - overhead; in GeneratePacketsBalancedAggregates()
363 remaining_partition, max_payload_len, overhead, min_size, max_size); in GeneratePacketsBalancedAggregates()
412 const size_t overhead = in AggregateSmallPartitions() local
414 const size_t max_payload_len = max_payload_len_ - overhead; in AggregateSmallPartitions()
434 aggregator.FindOptimalConfiguration(max_payload_len, overhead); in AggregateSmallPartitions()

12345678