Home
last modified time | relevance | path

Searched refs:needed_size (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/cmd/
Diotrace.c12 ulong start, size, needed_size, offset, count; in do_print_stats() local
15 iotrace_get_buffer(&start, &size, &needed_size, &offset, &count); in do_print_stats()
18 printf("Needed Size: %08lx\n", needed_size); in do_print_stats()
30 ulong start, size, needed_size, offset, count; in do_print_trace() local
34 iotrace_get_buffer(&start, &size, &needed_size, &offset, &count); in do_print_trace()
/external/u-boot/common/
Diotrace.c29 ulong needed_size; member
62 iotrace.needed_size += sizeof(struct iotrace_record); in add_record()
75 iotrace.needed_size += sizeof(struct iotrace_record); in add_record()
173 void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count) in iotrace_get_buffer() argument
177 *needed_size = iotrace.needed_size; in iotrace_get_buffer()
/external/compiler-rt/lib/asan/
Dasan_allocator.cc345 uptr needed_size = rounded_size + rz_size; in Allocate() local
347 needed_size += alignment; in Allocate()
351 if (!PrimaryAllocator::CanAllocate(needed_size, alignment)) { in Allocate()
352 needed_size += rz_size; in Allocate()
355 CHECK(IsAligned(needed_size, min_alignment)); in Allocate()
356 if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize) { in Allocate()
368 allocator.Allocate(cache, needed_size, 8, false, check_rss_limit); in Allocate()
373 allocator.Allocate(cache, needed_size, 8, false, check_rss_limit); in Allocate()
389 uptr alloc_end = alloc_beg + needed_size; in Allocate()
439 thread_stats.malloced_redzones += needed_size - size; in Allocate()
[all …]
/external/webp/src/utils/
Dbit_writer_utils.c30 const size_t needed_size = (size_t)needed_size_64b; in BitWriterResize() local
31 if (needed_size_64b != needed_size) { in BitWriterResize()
35 if (needed_size <= bw->max_pos_) return 1; in BitWriterResize()
38 if (new_size < needed_size) new_size = needed_size; in BitWriterResize()
/external/tensorflow/tensorflow/lite/experimental/micro/kernels/portable_optimized/
Ddepthwise_conv.cc131 const int needed_size = in DepthwiseConvOptimizedForFilterWidthEight() local
133 if (needed_size > kReshapedFilterDataSize) { in DepthwiseConvOptimizedForFilterWidthEight()
137 needed_size, kReshapedFilterDataSize); in DepthwiseConvOptimizedForFilterWidthEight()
345 const int needed_size = in EvalQuantized() local
349 (input_depth == 1) && (needed_size <= kReshapedFilterDataSize)) { in EvalQuantized()
/external/u-boot/include/
Diotrace.h155 void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count);
/external/v8/src/objects/
Dbigint.cc2090 int needed_size = SeqOneByteString::SizeFor(pos); in ToStringGeneric() local
2091 if (needed_size < string_size) { in ToStringGeneric()
2092 Address new_end = result->address() + needed_size; in ToStringGeneric()
2093 heap->CreateFillerObjectAt(new_end, (string_size - needed_size), in ToStringGeneric()