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

1 2 3 4 5 6 7 891011>>

  /external/tensorflow/tensorflow/core/lib/jpeg/
jpeg_mem.cc 170 int64 total_size = static_cast<int64>(cinfo.output_height) * local
181 if (total_size >= (1LL << 29)) {
182 LOG(ERROR) << "Image too large: " << total_size;
599 int64 total_size = static_cast<int64>(width) * static_cast<int64>(height); local
606 if (total_size >= (1LL << 29)) {
607 LOG(ERROR) << "Image too large: " << total_size;
  /external/u-boot/tools/
fit_image.c 83 int size, total_size; local
88 total_size = size;
94 total_size += size;
103 total_size += size + 300;
107 total_size += 4096;
109 return total_size;
  /bootable/recovery/bootloader_message/
bootloader_message.cpp 243 auto total_size = WIPE_PACKAGE_OFFSET_IN_MISC - VENDOR_SPACE_OFFSET_IN_MISC; local
244 return size <= total_size && offset <= total_size - size;
  /external/ltp/testcases/kernel/controllers/memcg/functional/
memcg_lib.sh 186 local total_size=$3
444 local total_size=$3
463 signal_memcg_process $! $total_size "subgroup_a/"
  /external/perfetto/src/profiling/memory/
client.cc 254 uint64_t total_size,
272 metadata.total_size = total_size;
  /external/python/google-api-python-client/googleapiclient/
http.py 196 def __init__(self, resumable_progress, total_size):
201 total_size: int, total bytes in complete upload, or None if the total
205 self.total_size = total_size
214 if self.total_size is not None and self.total_size != 0:
215 return float(self.resumable_progress) / float(self.total_size)
223 def __init__(self, resumable_progress, total_size):
228 total_size: int, total bytes in complete download.
231 self.total_size = total_siz
    [all...]
  /external/u-boot/fs/cramfs/
cramfs.c 216 int size, total_size = 0; local
229 total_size += size;
234 return total_size;
  /external/vboot_reference/tests/
vb21_api_tests.c 108 memcpy((uint8_t *)pre + sig_offset, sig, sig->c.total_size);
109 sig_offset += sig->c.total_size;
110 mock_sig_size = sig->c.total_size;
  /external/webp/src/enc/
picture_enc.c 98 uint64_t y_size, uv_size, a_size, total_size; local
117 total_size = y_size + a_size + 2 * uv_size;
125 mem = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*mem));
  /external/webrtc/webrtc/base/
filerotatingstream.cc 188 size_t total_size = 0; local
193 total_size += file_size;
196 *size = total_size;
  /external/compiler-rt/lib/lsan/
lsan_common.h 65 uptr total_size; member in struct:__lsan::Leak
  /external/libchrome/mojo/core/ports/
event.cc 169 base::CheckedNumeric<size_t> total_size = port_data_size.ValueOrDie();
170 total_size += sizeof(UserMessageEventData);
171 if (!total_size.IsValid() || num_bytes < total_size.ValueOrDie())
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_resource.h 51 uint32_t total_size; member in struct:nv50_miptree
  /external/minigbm/
drv_priv.h 30 size_t total_size; member in struct:bo
  /external/python/cpython3/Lib/
crypt.py 13 class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):
83 if result and len(result) == method.total_size:
  /external/u-boot/arch/arm/mach-tegra/tegra186/
nvtboot_mem.c 170 ulong board_get_usable_ram_top(ulong total_size)
  /external/vboot_reference/host/lib21/
host_key.c 260 pkey.c.total_size = pkey.key_offset + pkey.key_size;
263 buf = calloc(1, pkey.c.total_size);
481 key.c.total_size = key.key_offset + key.key_size;
490 buf = calloc(1, key.c.total_size);
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
gralloc_vsoc_priv.h 77 int total_size; member in struct:private_handle_t
96 total_size(size),
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/
bl31_plat_setup.c 74 unsigned long total_size, \
81 total_size, \
  /external/freetype/builds/mac/
ftmac.c 971 FT_ULong total_size = 0; local
996 total_size += 2; /* just the end code */
998 total_size += 6; /* code + 4 bytes chunk length */
1001 total_size += GetHandleSize( post_data ) - 2;
1005 if ( total_size < old_total_size )
1011 old_total_size = total_size;
1014 if ( FT_ALLOC( buffer, (FT_Long)total_size ) )
1070 *size = total_size;
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_vcn_dec.h 117 unsigned int total_size; member in struct:rvcn_dec_message_header_s
455 unsigned int total_size; member in struct:rvcn_dec_feedback_header_s
  /external/python/apitools/samples/storage_sample/
uploads_test.py 126 self.__upload.total_size = size
141 self.__upload.total_size = size
  /external/python/cpython2/Lib/test/
test_urllib.py 449 def hooktester(count, block_size, total_size, count_holder=[0]):
452 self.assertIsInstance(total_size, int)
463 def hooktester(count, block_size, total_size, _report=report):
464 _report.append((count, block_size, total_size))
477 def hooktester(count, block_size, total_size, _report=report):
478 _report.append((count, block_size, total_size))
491 def hooktester(count, block_size, total_size, _report=report):
492 _report.append((count, block_size, total_size))
    [all...]
  /external/python/cpython3/Lib/test/
test_urllibnet.py 195 def recording_reporthook(blocks, block_size, total_size):
196 records.append((blocks, block_size, total_size))
  /external/tensorflow/tensorflow/core/kernels/
conv_ops_gpu.h 180 int64 total_size = 16 * std::ceil(batch_ / 16.0) * local
184 if (total_size >= threshold) {

Completed in 3384 milliseconds

1 2 3 4 5 6 7 891011>>