HomeSort by relevance Sort by last modified time
    Searched refs:total_size (Results 176 - 200 of 397) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/src/compiler/
js-inlining-heuristic.h 54 int total_size = 0; member in struct:v8::internal::compiler::final::Candidate
  /external/vboot_reference/firmware/lib21/include/
vb2_struct.h 78 * in a contiguous region of <total_size> bytes starting at the first
81 uint32_t total_size; member in struct:vb2_struct_common
  /external/vboot_reference/tests/
vb21_common2_tests.c 29 uint32_t size = key->c.total_size;
122 size = sig->c.total_size;
133 sig2->c.total_size += 4;
186 size = sig->c.total_size;
  /external/webp/src/enc/
picture_psnr_enc.c 184 double total_size = 0., total_distortion = 0.; local
213 total_size += w * h;
216 results[4] = (type == 1) ? (float)GetLogSSIM(total_distortion, total_size)
217 : (float)GetPSNR(total_distortion, total_size);
  /art/compiler/utils/
dedupe_set-inl.h 46 size_t total_size = 0u; member in struct:art::DedupeSet::Stats
93 global_stats->total_size += keys_.size();
248 stats.total_size,
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
region_registry.cpp 189 0, hnd->total_size, PROT_READ|PROT_WRITE, MAP_SHARED, hnd->fd, 0);
197 uintptr_t addr = base + hnd->total_size - PAGE_SIZE;
237 if (recycle_munmap(region->base_, hnd->total_size) < 0) {
  /device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey960/
hikey960_bl2_setup.c 349 bl32_meminfo->total_size =
390 bl33_meminfo->total_size = DDR_SIZE;
417 bl2_tzram_layout.total_size,
  /device/linaro/bootloader/arm-trusted-firmware/plat/qemu/
qemu_bl2_setup.c 189 bl2_tzram_layout.total_size,
336 bl32_meminfo->total_size = (BL32_MEM_BASE + BL32_MEM_SIZE) - BL32_BASE;
346 bl33_meminfo->total_size = NS_DRAM0_SIZE;
  /external/ltp/testcases/kernel/syscalls/move_pages/
move_pages_support.c 276 size_t total_size = num * get_page_size(); local
278 shared = mmap(NULL, total_size,
285 numa_tonode_memory(shared, total_size, node);
  /external/minigbm/
amdgpu.c 155 gem_create.in.bo_size = bo->total_size;
222 vma->length = bo->total_size;
224 return mmap(0, bo->total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
  /external/protobuf/src/google/protobuf/
empty.pb.cc 233 int total_size = 0; local
236 _cached_size_ = total_size;
238 return total_size;
type.pb.cc 608 int total_size = 0; local
612 total_size += 1 +
619 total_size += 1 +
626 total_size += 1 +
631 total_size += 1 * this->fields_size();
633 total_size +=
639 total_size += 1 * this->oneofs_size();
641 total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
646 total_size += 1 * this->options_size();
648 total_size +
1507 int total_size = 0; local
2242 int total_size = 0; local
2735 int total_size = 0; local
3112 int total_size = 0; local
    [all...]
any.pb.cc 313 int total_size = 0; local
317 total_size += 1 +
324 total_size += 1 +
330 _cached_size_ = total_size;
332 return total_size;
  /external/tensorflow/tensorflow/lite/kernels/
test_util.cc 152 int total_size = 1; local
154 total_size *= t->dims->data[i];
156 return total_size;
  /external/tensorflow/tensorflow/python/kernel_tests/
transpose_op_test.py 165 total_size = np.prod(input_shape)
166 inp = np.arange(1, total_size + 1, dtype=datatype).reshape(input_shape)
186 total_size = np.prod(input_shape)
187 inp = np.arange(1, total_size + 1, dtype=np.float32).reshape(input_shape)
221 total_size = np.prod(input_shape)
222 inp = np.arange(1, total_size + 1, dtype=np.float32).reshape(input_shape)
243 total_size = np.prod(input_shape)
244 inp = np.arange(1, total_size + 1, dtype=datatype).reshape(input_shape)
264 total_size = np.prod(input_shape)
265 inp = np.arange(1, total_size + 1, dtype=np.float32).reshape(input_shape
    [all...]
  /external/v8/src/zone/
accounting-allocator.cc 61 size_t total_size = fits_fully * full_size; local
64 if (total_size + (size_t(1) << (power + kMinSegmentSizePower)) <=
67 total_size += size_t(1) << power;
  /external/brotli/c/dec/
huffman.c 184 int total_size; /* sum of root table size and 2nd level table sizes */ local
199 total_size = table_size;
224 while (total_size != table_size) {
241 total_size += table_size;
258 return (uint32_t)total_size;
  /external/tensorflow/tensorflow/compiler/tests/
pooling_ops_3d_test.py 58 total_size = 1
60 total_size *= s
63 x = np.arange(1.0, total_size + 1, dtype=np.float32)
211 total_size = np.prod(input_sizes)
212 x = np.arange(1, total_size + 1, dtype=np.float32).reshape(input_sizes)
  /art/tools/dexanalyze/
dexanalyze_strings.cc 542 void AnalyzeStrings::Dump(std::ostream& os, uint64_t total_size) const {
543 os << "Total string data bytes " << Percent(string_data_bytes_, total_size) << "\n";
545 << Percent(total_unique_string_data_bytes_, total_size) << "\n";
546 os << "UTF-16 string data bytes " << Percent(wide_string_bytes_, total_size) << "\n";
547 os << "ASCII string data bytes " << Percent(ascii_string_bytes_, total_size) << "\n";
555 os << "Total shared prefix bytes " << Percent(total_shared_prefix_bytes_, total_size) << "\n";
556 os << "Prefix dictionary cost " << Percent(total_prefix_dict_, total_size) << "\n";
557 os << "Prefix table cost " << Percent(total_prefix_table_, total_size) << "\n";
558 os << "Prefix index cost " << Percent(total_prefix_index_cost_, total_size) << "\n";
564 os << "Prefix base savings " << Percent(total_prefix_savings_, total_size) << "\n"
    [all...]
  /external/tensorflow/tensorflow/python/keras/utils/
data_utils.py 74 total_size = -1
76 total_size = int(content_type.strip())
82 reporthook(count, chunk_size, total_size)
237 def dl_progress(count, block_size, total_size):
239 if total_size == -1:
240 total_size = None
241 ProgressTracker.progbar = Progbar(total_size)
  /external/perf_data_converter/src/quipper/
perf_reader.cc 304 size_t total_size = 0; local
305 total_size += header.size;
306 total_size += header.attrs.size;
307 total_size += header.event_types.size;
308 total_size += header.data.size;
311 total_size +=
316 total_size += GetNumSupportedMetadata() * sizeof(struct perf_file_section);
319 total_size += tracing_data().size();
320 total_size += GetBuildIDMetadataSize();
321 total_size += GetStringMetadataSize()
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_common.cc 545 leaks_[i].total_size += leaked_size;
563 return leak1.total_size > leak2.total_size;
598 leaks_[index].total_size, leaks_[index].hit_count);
624 bytes += leaks_[i].total_size;
637 s->weight += leaks_[i].total_size;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.c 77 uint64_t total_size = 0; local
156 lpr->mip_offsets[level] = total_size;
158 total_size += align((unsigned)mipsize, mip_align);
159 if (total_size > LP_MAX_TEXTURE_SIZE) {
170 lpr->tex_data = align_malloc(total_size, mip_align);
175 memset(lpr->tex_data, 0, total_size);
  /external/skia/src/ports/
SkFontHost_win.cpp 1509 DWORD total_size = GetGlyphOutlineW(fDDC, glyph, flags, &gm, BUFFERSIZE, glyphbuf->get(), &fMat22); local
1562 DWORD total_size = getGDIGlyphPath(glyph, format, &glyphbuf); local
    [all...]
  /external/skqp/src/ports/
SkFontHost_win.cpp 1508 DWORD total_size = GetGlyphOutlineW(fDDC, glyph, flags, &gm, BUFFERSIZE, glyphbuf->get(), &fMat22); local
1561 DWORD total_size = getGDIGlyphPath(glyph, format, &glyphbuf); local
    [all...]

Completed in 5438 milliseconds

1 2 3 4 5 6 78 91011>>