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

<<11121314151617181920

  /external/webp/src/enc/
histogram_enc.c 62 const size_t total_size = sizeof(VP8LHistogram) + sizeof(int) * literal_size; local
63 assert(total_size <= (size_t)0x7fffffff);
64 return (int)total_size;
101 const int total_size = VP8LGetHistogramSize(cache_bits); local
102 uint8_t* const memory = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*memory));
115 const size_t total_size = local
118 uint8_t* memory = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*memory));
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey/
hikey_bl1_setup.c 79 bl2_mem_layout->total_size = BL32_SRAM_LIMIT - BL2_BASE;
95 bl1_tzram_layout.total_size = BL1_RW_SIZE;
119 bl1_tzram_layout.total_size,
  /external/autotest/client/common_lib/cros/bluetooth/
bluetooth_sdp_socket.py 438 total_size = self._unpack_int(data, int_size)
441 scanned += int_size + total_size
445 while cur_size < total_size:
  /external/mesa3d/src/gallium/drivers/virgl/
virgl_texture.c 244 uint32_t *total_size)
275 *total_size = buffer_size;
277 *total_size = 0;
  /external/syslinux/com32/lib/libpng/
pngmem.c 176 png_uint_32 total_size; local
196 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
198 table = farmalloc(total_size);
  /external/tensorflow/tensorflow/python/kernel_tests/
depthtospace_op_test.py 235 total_size = np.prod(nhwc_input_shape)
239 x = [((f + 128) % 255) - 127 for f in range(total_size)]
249 x = [f * 1.0 for f in range(total_size)]
pooling_ops_test.py 111 total_size = 1
113 total_size *= s
126 input_sizes, total_size, pool_func, ksize, strides)
129 x = [((f + 128) % 255) - 127 for f in range(total_size)]
    [all...]
spacetodepth_op_test.py 233 total_size = np.prod(nhwc_input_shape)
237 x = [((f + 128) % 255) - 127 for f in range(total_size)]
247 x = [f * 1.0 for f in range(total_size)]
  /external/vboot_reference/firmware/2lib/
2sha256.c 126 ctx->total_size = 0;
278 ctx->total_size += (block_nb + 1) << 6;
293 size_b = (ctx->total_size + ctx->size) << 3;
2sha512.c 169 ctx->total_size = 0;
308 ctx->total_size += (block_nb + 1) << 7;
324 size_b = (ctx->total_size + ctx->size) << 3;
  /external/vboot_reference/tests/
vb21_host_key_tests.c 118 pkey->key_size += pkey->c.total_size;
228 TEST_SUCC(vb2_unpack_key(&k2, (uint8_t *)pkey, pkey->c.total_size),
274 TEST_SUCC(vb2_unpack_key(&k2, (uint8_t *)pkey, pkey->c.total_size),
  /external/webp/src/dec/
buffer_dec.c 98 uint64_t uv_size = 0, a_size = 0, total_size; local
117 total_size = size + 2 * uv_size + a_size;
120 output = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*output));
  /system/nvram/client/
nvram_client.c 103 uint64_t total_size = 0; local
104 nvram_result_t result = device->get_total_size_in_bytes(device, &total_size);
109 printf("%" PRIu64 "\n", total_size);
  /system/nvram/hal/
nvram_device_adapter.cpp 62 uint64_t* total_size) {
67 *total_size = get_info_response.total_size;
  /device/linaro/bootloader/arm-trusted-firmware/include/common/
bl_common.h 101 size_t total_size; member in struct:meminfo
  /device/linaro/bootloader/arm-trusted-firmware/include/plat/arm/common/
plat_arm.h 32 size_t total_size,
  /external/autotest/server/
site_utils.py     [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDimensions.h 95 static const std::ptrdiff_t total_size = internal::arg_prod(Indices...); member in struct:Eigen::Sizes
139 return Sizes<Indices...>::total_size;
157 static const std::size_t total_size = internal::arg_prod<Base>::value;
226 return Sizes<V1, V2, V3, V4, V5>::total_size;
TensorStorage.h 42 static const std::size_t Size = FixedDimensions::total_size;
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render_dynamic.c 232 const int total_size = cbuf0_size + clip_state_size; local
234 if (total_size) {
238 gen6_push_constant_buffer(r->builder, total_size, &pcb);
239 r->state.vs.PUSH_CONSTANT_BUFFER_size = 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/syslinux/gpxe/src/net/
infiniband.c 179 size_t total_size; local
185 total_size = ( sizeof ( *qp ) +
188 qp = zalloc ( total_size );
223 ( ( ( void * ) qp ) + total_size ) );
  /external/valgrind/coregrind/
pub_core_debuginfo.h 74 SizeT total_size,

Completed in 1186 milliseconds

<<11121314151617181920