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

<<111213141516

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorStorage.h 42 static const std::size_t Size = FixedDimensions::total_size;
  /external/libchrome/mojo/core/
node_channel.cc 131 const size_t total_size = payload_size + sizeof(Header); local
133 capacity = total_size;
135 capacity = std::max(total_size, capacity);
137 std::make_unique<Channel::Message>(capacity, total_size, num_handles);
  /external/mesa3d/src/amd/vulkan/
radv_pipeline_cache.c 59 cache->total_size = 0;
193 cache->total_size += entry_size(entry);
214 cache->total_size = 0;
547 const size_t size = sizeof(*header) + cache->total_size;
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv98_video_ppp.c 70 PUSH_DATA (push, (mt->base.address + mt->total_size/2) >> 8);
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_video_ppp.c 70 PUSH_DATA (push, (mt->base.address + mt->total_size/2) >> 8);
  /external/squashfs-tools/squashfs-tools/
xattr.c 546 int total_size, i; local
587 for(total_size = 0, i = 0; i < xattrs; i++) {
593 total_size += get_xattr_size(xattr);
600 if(total_size <= XATTR_TARGET_MAX)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
BPFISelDAGToDAG.cpp 385 uint64_t total_size = 0; local
387 total_size =
390 total_size = DL.getTypeAllocSize(CA->getType()->getElementType()) *
395 val_vec_type Vals(total_size, 0);
  /external/tensorflow/tensorflow/core/framework/
tensor_util_test.cc 217 int64 total_size = 0; local
228 total_size += size;
234 ASSERT_EQ(TensorShape({total_size, 2}), concated.shape());
235 for (int i = 0; i < total_size; ++i) {
  /external/u-boot/arch/arm/mach-tegra/
board2.c 343 ulong board_get_usable_ram_top(ulong total_size)
  /external/u-boot/arch/x86/cpu/quark/
dram.c 180 ulong board_get_usable_ram_top(ulong total_size)
  /external/vboot_reference/firmware/lib21/
api.c 69 hash_offset += sig->c.total_size;
  /external/vboot_reference/host/lib21/
host_misc.c 86 return vb2_write_file(filename, buf, cptr->total_size);
  /external/bcc/tools/
memleak.py 137 u64 total_size;
155 cinfo.total_size += sz;
169 if (sz >= cinfo.total_size)
170 cinfo.total_size = 0;
172 cinfo.total_size -= sz;
480 key=lambda a: -a[1].total_size)
496 (info.total_size, info.number_of_allocs, trace))
  /external/minigbm/
virtio_gpu.c 154 vma->length = bo->total_size;
155 return mmap(0, bo->total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_pruning.py 390 def _progress(count, block_size, total_size):
393 float(count * block_size) / float(total_size) * 100.0))
  /external/tensorflow/tensorflow/core/kernels/
decode_image_op.cc 250 const int64 total_size = local
254 height <= 0 || height >= (1LL << 27) || total_size >= (1LL << 29)) {
  /external/tensorflow/tensorflow/lite/toco/
allocate_transient_arrays.cc 153 std::size_t total_size() const { return total_size_; } function in class:toco::__anon46241::Allocator
342 model->transient_data_size = allocator.total_size();
  /external/u-boot/lib/efi/
efi_stub.c 262 priv->info->total_size = (ulong)priv->next_hdr - (ulong)priv->info;
380 printhex8(priv->info->total_size);
  /external/webp/src/utils/
quant_levels_dec_utils.c 223 const size_t total_size = size_scratch_m + size_m + size_lut; local
224 uint8_t* mem = (uint8_t*)WebPSafeMalloc(1U, total_size);
  /art/tools/dexanalyze/
dexanalyze_bytecode.cc 167 void NewRegisterInstructions::Dump(std::ostream& os, uint64_t total_size) const {
169 os << "Total Dex code bytes: " << Percent(dex_code_bytes_, total_size) << "\n";
170 os << "Total output code bytes: " << Percent(output_size_, total_size) << "\n";
171 os << "Total deduped code bytes: " << Percent(deduped_size_, total_size) << "\n";
207 os << Percent(pairs[i].first, total_size) << " "
214 << Percent(top_instructions_savings, total_size) << "\n";
  /external/capstone/
cs.c 481 size_t total_size = 0; // total size of output buffer containing all insns local
514 total_size = sizeof(cs_insn) * cache_size;
515 total = cs_mem_malloc(total_size);
619 total_size += (sizeof(cs_insn) * cache_size);
620 tmp = cs_mem_realloc(total, total_size);
654 tmp = cs_mem_realloc(total, total_size - (cache_size - f) * sizeof(*insn_cache));
  /external/libaom/libaom/av1/encoder/
bitstream.c 3414 uint32_t total_size = 0; local
    [all...]
  /build/make/tools/signapk/src/com/android/signapk/
SignApk.java 806 int total_size = temp.size() + 6; local
807 if (total_size > 0xffff) {
811 int signature_start = total_size - message.length - 1;
    [all...]