Home
last modified time | relevance | path

Searched refs:needed_size (Results 1 – 8 of 8) 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.c31 ulong needed_size; member
64 iotrace.needed_size += sizeof(struct iotrace_record); in add_record()
77 iotrace.needed_size += sizeof(struct iotrace_record); in add_record()
175 void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count) in iotrace_get_buffer() argument
179 *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/micro/kernels/portable_optimized/
Ddepthwise_conv.cc147 const int needed_size = in DepthwiseConvOptimizedForFilterWidthEight() local
149 if (needed_size > kReshapedFilterDataSize) { in DepthwiseConvOptimizedForFilterWidthEight()
153 needed_size, kReshapedFilterDataSize); in DepthwiseConvOptimizedForFilterWidthEight()
402 const int needed_size = in EvalQuantized() local
406 (needed_size <= kReshapedFilterDataSize)) { in EvalQuantized()
/external/u-boot/include/
Diotrace.h154 void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count);
/external/v8/src/objects/
Dbigint.cc2260 int needed_size = SeqOneByteString::SizeFor(pos); in ToStringGeneric() local
2261 if (needed_size < string_size) { in ToStringGeneric()
2262 Address new_end = result->address() + needed_size; in ToStringGeneric()
2263 heap->CreateFillerObjectAt(new_end, (string_size - needed_size), in ToStringGeneric()
/external/OpenCL-CTS/test_common/miniz/
Dminiz.c2780 …mz_uint64 needed_size, cur_file_ofs, comp_remaining, out_buf_ofs = 0, read_buf_size, read_buf_ofs … in mz_zip_reader_extract_to_mem_no_alloc() local
2810needed_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? file_stat.m_comp_size : file_stat.m_uncomp_s… in mz_zip_reader_extract_to_mem_no_alloc()
2811 if (buf_size < needed_size) in mz_zip_reader_extract_to_mem_no_alloc()
2828 if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, (size_t)needed_size) != needed_size) in mz_zip_reader_extract_to_mem_no_alloc()