HomeSort by relevance Sort by last modified time
    Searched defs:block_size (Results 1 - 25 of 326) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bootable/recovery/minadbd/
fuse_adb_provider.h 26 uint32_t block_size; member in struct:adb_data
30 int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size);
minadbd_services.cpp 34 int block_size; local
35 if (sscanf(args.c_str(), "%d:%d", &file_size, &block_size) != 2) {
40 printf("sideload-host file size %d block size %d\n", file_size, block_size);
42 int result = run_adb_fuse(sfd, file_size, block_size);
  /frameworks/ml/nn/runtime/test/generated/models/
depth_to_space_float_1.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_DEPTH_TO_SPACE, {input, block_size}, {output});
depth_to_space_float_2.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_DEPTH_TO_SPACE, {input, block_size}, {output});
depth_to_space_float_3.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_DEPTH_TO_SPACE, {input, block_size}, {output});
space_to_depth_float_1.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_SPACE_TO_DEPTH, {input, block_size}, {output});
space_to_depth_float_2.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_SPACE_TO_DEPTH, {input, block_size}, {output});
space_to_depth_float_3.model.cpp 8 auto block_size = model->addOperand(&type1); local
12 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 1);
13 model->addOperation(ANEURALNETWORKS_SPACE_TO_DEPTH, {input, block_size}, {output});
  /system/core/libsparse/
sparse_file.h 27 unsigned int block_size; member in struct:sparse_file
img2simg.c 43 fprintf(stderr, "Usage: img2simg <raw_image_file> <sparse_image_file> [<block_size>]\n");
52 unsigned int block_size = 4096; local
61 block_size = atoi(argv[3]);
64 if (block_size < 1024 || block_size % 4 != 0) {
92 s = sparse_file_new(block_size, len);
  /system/extras/squashfs_utils/
squashfs_utils.h 28 uint32_t block_size; member in struct:squashfs_info
  /bootable/recovery/
fuse_sdcard_provider.cpp 34 uint32_t block_size; member in struct:file_data
40 off64_t offset = ((off64_t) block) * fd->block_size;
73 fd.block_size = 65536;
84 return run_fuse_sideload(&vtab, &fd, fd.file_size, fd.block_size) == 0;
  /external/syslinux/gpxe/src/include/gpxe/
nvs.h 36 unsigned int block_size; member in struct:nvs_device
  /external/vboot_reference/host/lib/
host_common.c 28 uint64_t block_size = signed_size + siglen_map[signing_key->algorithm]; local
35 h = (VbFirmwarePreambleHeader *)malloc(block_size);
39 Memset(h, 0, block_size);
46 h->preamble_size = block_size;
88 uint64_t block_size = signed_size + siglen_map[signing_key->algorithm]; local
94 if (block_size < desired_size)
95 block_size = desired_size;
98 h = (VbKernelPreambleHeader *)malloc(block_size);
102 Memset(h, 0, block_size);
108 h->preamble_size = block_size;
    [all...]
host_keyblock.c 21 uint64_t block_size = (signed_size + SHA512_DIGEST_SIZE + local
30 h = (VbKeyBlockHeader*)malloc(block_size);
40 h->key_block_size = block_size;
82 uint64_t block_size = (signed_size + SHA512_DIGEST_SIZE + local
90 h = (VbKeyBlockHeader*)malloc(block_size);
103 h->key_block_size = block_size;
  /art/runtime/gc/space/
bump_pointer_space-walk-inl.h 80 size_t block_size = header->size_; local
83 const mirror::Object* end_obj = reinterpret_cast<const mirror::Object*>(pos + block_size);
92 pos += block_size;
  /external/boringssl/src/crypto/fipsmodule/digest/
internal.h 87 /* block_size contains the hash's native block size. */
88 unsigned block_size; member in struct:env_md_st
  /external/valgrind/none/tests/ppc32/
data-cache-instructions.c 21 int block_size, test_block_size = 4 * MAX_DCBZL_SZB, err; local
34 for (block_size = 0, p = rb; (p - rb) < test_block_size; p++)
36 block_size++;
37 assert(block_size == 16 || block_size == 32 || block_size == 64 || block_size == 128);
40 return block_size;
44 static void test_dcbzl_at(char *addr, char *buffer, int block_size)
48 /* Note: Assumption is that the length of buffer is three times the block_size. *
64 int block_size; local
    [all...]
  /external/valgrind/none/tests/ppc64/
data-cache-instructions.c 21 int block_size, test_block_size = 4 * MAX_DCBZL_SZB, err; local
34 for (block_size = 0, p = rb; (p - rb) < test_block_size; p++)
36 block_size++;
37 assert(block_size == 16 || block_size == 32 || block_size == 64 || block_size == 128);
40 return block_size;
44 static void test_dcbzl_at(char *addr, char *buffer, int block_size)
48 /* Note: Assumption is that the length of buffer is three times the block_size. *
64 int block_size; local
    [all...]
  /external/vboot_reference/firmware/lib20/
misc.c 28 uint32_t block_size; local
59 block_size = kb->keyblock_size;
67 kb = vb2_workbuf_realloc(&wb, sizeof(*kb), block_size);
71 rv = vb2ex_read_resource(ctx, VB2_RES_FW_VBLOCK, 0, kb, block_size);
76 rv = vb2_verify_keyblock(kb, block_size, &root_key, &wb);
  /device/linaro/hikey/l-loader/
gen_loader.py 32 block_size = 512 variable in class:generator
69 fptable.read(self.block_size)
88 fptable.read(self.block_size - 84)
108 blocks = (fsize + self.block_size - 1) / self.block_size
122 for i in range (0, self.block_size):
125 self.p_file += self.block_size
138 left_bytes = fsize % self.block_size
140 left_bytes = self.block_size - left_bytes
145 buf = fimg.read(self.block_size)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/hmac/
hmac.c 115 size_t block_size = EVP_MD_block_size(md); local
116 assert(block_size <= sizeof(key_block));
117 if (block_size < key_len) {
  /frameworks/base/tools/aapt2/util/
BigBuffer.h 67 * of block_size.
69 explicit BigBuffer(size_t block_size);
115 size_t block_size() const;
136 inline BigBuffer::BigBuffer(size_t block_size)
137 : block_size_(block_size), size_(0) {}
146 inline size_t BigBuffer::block_size() const { return block_size_; } function in class:aapt::BigBuffer
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
alloc-pool.h 54 size_t block_size; member in struct:alloc_pool_def
  /system/extras/ext4_utils/include/ext4_utils/
ext4_sb.h 34 uint32_t block_size; member in struct:fs_info

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011>>