HomeSort by relevance Sort by last modified time
    Searched refs:total_size (Results 151 - 175 of 478) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/fs_mgr/
fs_mgr_avb_ops.cpp 159 off64_t total_size = lseek64(fd, 0, SEEK_END); local
160 if (total_size == -1) {
164 offset = total_size + offset;
fs_mgr_avb.cpp 102 size_t total_size = 0; local
107 total_size += verify_data.vbmeta_images[n].vbmeta_size;
112 return std::make_pair(total_size, matched);
206 size_t total_size = 0; local
210 std::tie(total_size, digest_matched) =
213 std::tie(total_size, digest_matched) =
217 if (total_size != vbmeta_size_) {
218 LERROR << "total vbmeta size mismatch: " << total_size << " (expected: " << vbmeta_size_
  /external/avb/libavb/
avb_cmdline.c 273 size_t n, total_size = 0; local
279 total_size += slot_data->vbmeta_images[n].vbmeta_size;
284 slot_data, "androidboot.vbmeta.size", total_size) ||
298 size_t n, total_size = 0; local
304 total_size += slot_data->vbmeta_images[n].vbmeta_size;
309 slot_data, "androidboot.vbmeta.size", total_size) ||
  /external/tensorflow/tensorflow/core/lib/strings/
strcat.cc 126 size_t total_size = 0; local
127 for (const StringPiece piece : pieces) total_size += piece.size();
128 gtl::STLStringResizeUninitialized(&result, total_size);
150 size_t total_size = old_size; local
153 total_size += piece.size();
155 gtl::STLStringResizeUninitialized(result, total_size);
  /external/vboot_reference/tests/
vb21_misc_tests.c 100 kb->c.total_size = sizeof(mock_vblock.k);
109 dk->c.total_size = dk->key_offset + dk->key_size;
112 pre->c.total_size = sizeof(mock_vblock.p);
255 kb->c.total_size = sizeof(mock_vblock) + 1;
292 TEST_EQ(sd->workbuf_preamble_size, pre->c.total_size, "preamble size");
332 pre->c.total_size = sizeof(mock_vblock);
  /device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/poplar/
bl2_plat_setup.c 130 bl33_meminfo->total_size = DDR_SIZE;
148 bl2_tzram_layout.total_size,
  /external/libmicrohttpd/src/microspdy/
session.c 430 size_t total_size; local
459 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header
463 if(NULL == (session->write_buffer = malloc(total_size)))
477 session->write_buffer_size = total_size;
521 size_t total_size; local
530 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header
534 if(NULL == (session->write_buffer = malloc(total_size)))
540 session->write_buffer_size = total_size;
574 size_t total_size; local
588 total_size = sizeof(struct SPDYF_Data_Frame) //SPDY heade
746 size_t total_size; local
791 size_t total_size; local
    [all...]
  /external/protobuf/src/google/protobuf/
api.pb.cc 543 int total_size = 0; local
547 total_size += 1 +
554 total_size += 1 +
561 total_size += 1 +
568 total_size += 1 +
573 total_size += 1 * this->methods_size();
575 total_size +=
581 total_size += 1 * this->options_size();
583 total_size +=
589 total_size += 1 * this->mixins_size()
1293 int total_size = 0; local
1837 int total_size = 0; local
    [all...]
  /art/compiler/jni/quick/arm64/
calling_convention_arm64.cc 283 size_t total_size = frame_data_size; local
286 total_size += handle_scope_size; // handle scope size
290 total_size += SizeOfReturnValue();
292 return RoundUp(total_size, kStackAlignment);
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 352 size_t total_size = frame_data_size; local
355 total_size += handle_scope_size; // Handle scope size.
359 total_size += SizeOfReturnValue();
361 return RoundUp(total_size, kStackAlignment);
  /art/compiler/jni/quick/mips64/
calling_convention_mips64.cc 193 size_t total_size = frame_data_size; local
196 total_size += handle_scope_size; // Handle scope size.
200 total_size += SizeOfReturnValue();
202 return RoundUp(total_size, kStackAlignment);
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 229 size_t total_size = frame_data_size; local
232 total_size += handle_scope_size; // handle scope size
236 total_size += SizeOfReturnValue();
238 return RoundUp(total_size, kStackAlignment);
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.cc 211 size_t total_size = frame_data_size; local
214 total_size += handle_scope_size; // handle scope size
218 total_size += SizeOfReturnValue();
220 return RoundUp(total_size, kStackAlignment);
  /device/google/cuttlefish_common/common/vsoc/lib/
circqueue_impl.h 56 size_t total_size = t.end_idx - t.start_idx; local
57 if (index + total_size <= BufferSize) {
58 std::memcpy(buffer_out, buffer_ + index, total_size);
61 uint32_t part2_size = total_size - part1_size;
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
arm_bl2_setup.c 75 .total_size = (ARM_AP_TZC_DRAM1_BASE +
214 bl2_tzram_layout.total_size,
348 bl32_meminfo->total_size =
374 bl33_meminfo->total_size = ARM_NS_DRAM1_SIZE;
  /device/linaro/bootloader/arm-trusted-firmware/plat/socionext/uniphier/
uniphier.h 54 void uniphier_mmap_setup(uintptr_t total_base, size_t total_size,
  /external/boringssl/src/util/bot/
update_clang.py 56 total_size = int(response.info().getheader('Content-Length').strip())
65 num_dots = TOTAL_DOTS * bytes_done / total_size
69 if bytes_done != total_size:
71 (bytes_done, total_size))
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.h 130 unsigned total_size; member in struct:svga_host_surface_cache
  /external/python/cpython3/Lib/
crypt.py 13 class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):
59 if _result and len(_result) == _method.total_size:
  /external/tensorflow/tensorflow/compiler/tests/
lrn_ops_test.py 104 total_size = np.prod(shape)
105 in_image_vals = np.arange(1, total_size + 1, dtype=np.float32)
106 out_image_vals = np.arange(1, total_size + 1, dtype=np.float32)
107 out_grads_vals = np.arange(1, total_size + 1, dtype=np.float32)
  /external/tensorflow/tensorflow/core/framework/
tensor_util_test.cc 151 int64 total_size = 0; local
162 total_size += size;
168 ASSERT_EQ(TensorShape({total_size, 2}), concated.shape());
169 for (int i = 0; i < total_size; ++i) {
  /external/tensorflow/tensorflow/core/kernels/
initializable_lookup_table.h 117 virtual int64 total_size() const = 0;
lookup_util.h 87 int64 total_size() const override {
  /external/webp/src/utils/
utils.c 169 const uint64_t total_size = nmemb * size; local
172 if (total_size != (size_t)total_size) return 0;
180 const uint64_t new_total_mem = (uint64_t)total_mem + total_size;
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 42 size_t total_size; member in struct:android::Leak

Completed in 1541 milliseconds

1 2 3 4 5 67 8 91011>>