HomeSort by relevance Sort by last modified time
    Searched refs:overhead (Results 51 - 75 of 189) sorted by null

1 23 4 5 6 7 8

  /external/libchrome/base/trace_event/
trace_event_impl.cc 200 TraceEventMemoryOverhead* overhead) {
201 overhead->Add("TraceEvent", sizeof(*this));
204 overhead->AddString(*parameter_copy_storage_);
208 convertable_values_[i]->EstimateTraceMemoryOverhead(overhead);
trace_log.cc 151 // overhead of ScopedTracer (trace_event.h) constructor minimum.
312 TraceEventMemoryOverhead overhead;
313 chunk_->EstimateTraceMemoryOverhead(&overhead);
314 overhead.DumpInto(dump_base_name.c_str(), pmd);
403 TraceEventMemoryOverhead overhead;
404 overhead.Add("TraceLog", sizeof(*this));
408 logged_events_->EstimateTraceMemoryOverhead(&overhead);
411 metadata_event->EstimateTraceMemoryOverhead(&overhead);
413 overhead.AddSelf();
414 overhead.DumpInto("tracing/main_trace_log", pmd)
    [all...]
heap_profiler_allocation_register.cc 156 TraceEventMemoryOverhead* overhead) const {
161 overhead->Add("AllocationRegister", allocated, resident);
process_memory_dump.cc 244 base::trace_event::TraceEventMemoryOverhead& overhead,
255 overhead.DumpInto(base_name.c_str(), this);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_support.py     [all...]
  /external/libnl/include/netlink-private/
netlink.h 183 dst->rs_overhead = src->overhead;
193 dst->overhead = src->rs_overhead;
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand_linux.go 41 // result so we only suffer the syscall overhead once in this case.
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_linux.go 41 // result so we only suffer the syscall overhead once in this case.
  /external/boringssl/src/crypto/cipher_extra/
tls_cbc.c 77 const size_t overhead = 1 /* padding length byte */ + mac_size; local
80 if (overhead > in_len) {
86 crypto_word_t good = constant_time_ge_w(in_len, overhead + padding_length);
  /external/boringssl/src/ssl/
ssl_aead_ctx.cc 235 // overhead. Otherwise the parameter is unused.
238 size_t overhead = MaxOverhead();
239 if (in.size() < overhead) {
244 plaintext_len = in.size() - overhead;
d1_both.cc 134 // protocol's overhead rather than, say, what's needed to hold a minimally-sized
135 // handshake fragment plus protocol overhead.
644 size_t overhead = dtls_max_seal_overhead(ssl, use_epoch); local
650 if (max_out < sizeof(kChangeCipherSpec) + overhead) {
680 if (max_out < DTLS1_HM_HEADER_LENGTH + 1 + overhead || max_out < prefix) {
684 if (todo > max_out - DTLS1_HM_HEADER_LENGTH - overhead) {
685 todo = max_out - DTLS1_HM_HEADER_LENGTH - overhead;
  /external/v8/src/heap/
object-stats.h 157 int subtype, size_t overhead);
  /external/boringssl/src/crypto/fipsmodule/cipher/
aead.c 32 size_t EVP_AEAD_max_overhead(const EVP_AEAD *aead) { return aead->overhead; }
119 if (in_len + ctx->aead->overhead < in_len /* overflow */) {
  /external/libnl/include/linux-private/linux/
pkt_sched.h 79 unsigned short overhead; member in struct:tc_ratespec
91 int overhead; member in struct:tc_sizespec
  /external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
llvm_executionengine.ml 55 overhead on top of the two stubs that are already invoked for each
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
pkt_sched.h 79 unsigned short overhead; member in struct:tc_ratespec
91 int overhead; member in struct:tc_sizespec
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_support.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_support.py     [all...]
  /prebuilts/go/darwin-x86/test/
chanlinear.go 52 // the effect that a constant amount of overhead has
  /prebuilts/go/linux-x86/test/
chanlinear.go 52 // the effect that a constant amount of overhead has
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py     [all...]
  /system/core/libsparse/
sparse.c 302 * overhead is sparse file header, the potential end skip
305 int overhead = sizeof(sparse_header_t) + 2 * sizeof(chunk_header_t) + local
307 len -= overhead;
  /device/google/contexthub/firmware/os/core/
bl.c 336 const uint32_t overhead = sizeof(*hdr) + 2 * RSA_WORDS; local
339 if (addr < __shared_start || addr > (__shared_end - overhead) || ((uintptr_t)addr & 3))
343 if (hdr->size > (__shared_end - addr - overhead))
  /external/libnl/python/netlink/route/
tc.py 144 def overhead(self): member in class:Tc
147 @overhead.setter
148 def overhead(self, value): member in class:Tc
212 return '{t|mtu} {t|mpu} {t|overhead} {t|linktype}'

Completed in 585 milliseconds

1 23 4 5 6 7 8