HomeSort by relevance Sort by last modified time
    Searched full:block_size (Results 126 - 150 of 585) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/media/filters/
wsola_internals.cc 109 int block_size = target_block->frames(); local
110 int num_candidate_blocks = search_segment->frames() - (block_size - 1);
115 MultiChannelDotProduct(target_block, 0, search_segment, n, block_size,
130 MultiChannelDotProduct(target_block, 0, search_segment, n, block_size,
144 MultiChannelDotProduct(target_block, 0, search_segment, n, block_size,
188 int block_size = target_block->frames(); local
198 MultiChannelDotProduct(target_block, 0, search_block, n, block_size,
  /external/e2fsprogs/lib/ext2fs/
openfs.c 62 unsigned int block_size, io_manager manager,
65 return ext2fs_open2(name, 0, flags, superblock, block_size,
71 * Superblock and block_size can be zero to use the default size.
82 unsigned int block_size, io_manager manager,
150 block_size = fs->image_header->fs_blocksize;
163 if (!block_size) {
167 io_channel_set_blksize(fs->io, block_size);
252 if (block_size) {
253 if (block_size != fs->blocksize) {
  /system/core/libsparse/
sparse_read.c 104 unsigned int len = blocks * s->block_size;
106 if (chunk_size % s->block_size != 0) {
110 if (chunk_size / s->block_size != blocks) {
141 int64_t len = (int64_t)blocks * s->block_size;
182 int64_t len = (int64_t)blocks * s->block_size;
362 uint32_t *buf = malloc(s->block_size);
376 to_read = min(remain, s->block_size);
383 if (to_read == s->block_size) {
385 for (i = 1; i < s->block_size / sizeof(uint32_t); i++) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.c 51 (pool->block_size * index));
146 pool->block_size = sizeof(struct util_slab_block) + item_size;
147 pool->block_size = align(pool->block_size, sizeof(intptr_t));
149 num_blocks * pool->block_size;
u_format_rgtc.c 55 unsigned block_size = 8; local
69 src += block_size;
102 int block_size = 8; local
117 src += block_size;
200 int block_size = 8; local
215 src += block_size;
247 unsigned block_size = 16; local
261 src += block_size;
327 int block_size = 16; local
343 src += block_size;
384 int block_size = 16; local
    [all...]
u_format_latc.c 72 int block_size = 8; local
88 src += block_size;
140 int block_size = 8; local
156 src += block_size;
206 int block_size = 16; local
223 src += block_size;
265 int block_size = 16; local
282 src += block_size;
  /external/libvpx/libvpx/vp8/encoder/x86/
temporal_filter_apply_sse2.asm 18 ; unsigned int block_size, | 3
34 %define block_size 0
45 mov [rsp + block_size], rdx
73 cmp dword ptr [rsp + block_size], 8
181 cmp dword ptr [rsp + block_size], 16
  /external/libvpx/libvpx/vp9/encoder/
vp9_block.h 191 BLOCK_SIZE b_partitioning[4][4][4];
192 BLOCK_SIZE mb_partitioning[4][4];
193 BLOCK_SIZE sb_partitioning[4];
194 BLOCK_SIZE sb64_partitioning;
202 static PICK_MODE_CONTEXT *get_block_context(MACROBLOCK *x, BLOCK_SIZE bsize) {
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_temporal_filter_apply_sse2.asm 18 ; unsigned int block_size, | 3
34 %define block_size 0
45 mov [rsp + block_size], rdx
73 cmp dword ptr [rsp + block_size], 8
181 cmp dword ptr [rsp + block_size], 16
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
hmm_intrnl.h 49 HMM_UNIQUE(size_bau) previous_block_size, block_size; member in struct:head_struct
77 (((head_record *) (HEAD_PTR))->block_size & ~HIGH_BIT_BAU_SIZE)
102 (((((head_record *) (HEAD_PTR))->block_size | \
108 h_ptr->block_size &= ~HIGH_BIT_BAU_SIZE; \
115 h_ptr->block_size |= HIGH_BIT_BAU_SIZE; }
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.c 51 (pool->block_size * index));
146 pool->block_size = sizeof(struct util_slab_block) + item_size;
147 pool->block_size = align(pool->block_size, sizeof(intptr_t));
149 num_blocks * pool->block_size;
u_format_rgtc.c 55 unsigned block_size = 8; local
69 src += block_size;
102 int block_size = 8; local
117 src += block_size;
200 int block_size = 8; local
215 src += block_size;
247 unsigned block_size = 16; local
261 src += block_size;
327 int block_size = 16; local
343 src += block_size;
384 int block_size = 16; local
    [all...]
u_format_latc.c 72 int block_size = 8; local
88 src += block_size;
140 int block_size = 8; local
156 src += block_size;
206 int block_size = 16; local
223 src += block_size;
265 int block_size = 16; local
282 src += block_size;
  /external/grub/stage2/
fsys_minix.c 41 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
46 #define SBLOCK (WHICH_SUPER * BLOCK_SIZE / DEV_BSIZE) /* = 2 */
72 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
73 #define MINIX2_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix2_inode)))
141 ((struct minix_inode *)((int) SUPERBLOCK + BLOCK_SIZE))
145 ((int)((int)DATABLOCK1 + BLOCK_SIZE))
195 return devread (fsblock * (BLOCK_SIZE / DEV_BSIZE), 0,
196 BLOCK_SIZE, (char *) buffer);
258 offset = filepos & (BLOCK_SIZE - 1);
266 size = BLOCK_SIZE;
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.h 19 BLOCK_SIZE bsize);
22 BLOCK_SIZE bsize);
25 BLOCK_SIZE bsize);
  /system/core/libsparse/include/sparse/
sparse.h 28 * @block_size - minimum size of a chunk
33 * block_size specifies the minimum size of a chunk in the file. The maximum
34 * size of the file is 2**32 * block_size (16TB for 4k block size).
38 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len);
59 * [block * block_size : block * block_size + len) must not already be used in
80 * The region [block * block_size : block * block_size + len) must not already
99 * The region [block * block_size : block * block_size + len) must not alread
    [all...]
  /external/chromium_org/build/android/gyp/util/
md5_check.py 29 def _UpdateMd5ForFile(md5, path, block_size=2**16):
32 data = infile.read(block_size)
  /external/e2fsprogs/e2fsck/
ehandler.c 45 for (i=0; i < count; i++, p += channel->block_size, block++) {
93 for (i=0; i < count; i++, p += channel->block_size, block++) {
  /external/libvpx/libvpx/test/
vp9_subtract_test.cc 42 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
43 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
  /libcore/crypto/src/main/java/org/conscrypt/
ConnectionStateSSLv3.java 71 block_size = cipherSuite.getBlockSize();
82 logger.println(" block size: " + block_size);
134 if (block_size != 0) {
142 } else if (block_size != 0) {
232 int padding_length = (block_size == 0) ? 0 : getPaddingSize(++content_mac_length);
259 if (block_size != 0) {
266 + (block_size != 0
295 if (block_size != 0) {
  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.c 617 size_t block_size, icv_len, pad; local
621 block_size = AES_BLOCK_SIZE;
632 pad = data_len % block_size;
634 pad = block_size - pad;
636 if (*prot_len < block_size + data_len + pad + icv_len) {
641 if (random_get_bytes(pos, block_size))
644 wpa_hexdump(MSG_DEBUG, "EAP-EKE: IV for Prot()", iv, block_size);
645 pos += block_size;
672 size_t block_size, icv_len; local
676 block_size = AES_BLOCK_SIZE
    [all...]
  /external/openssh/
packet.c 780 enc->iv, enc->block_size, crypt_type);
782 /* memset(enc->iv, 0, enc->block_size);
799 if (enc->block_size >= 16)
800 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
802 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
805 active_state->rekey_limit / enc->block_size);
854 int block_size; local
861 block_size = enc ? enc->block_size : 8;
894 padlen = block_size - (len % block_size)
1239 u_int maclen, block_size; local
    [all...]
  /bootable/recovery/mtdutils/
flash_image.c 121 size_t block_size; local
122 if (mtd_partition_info(partition, NULL, &block_size, NULL))
128 int left = block_size - headerlen;
129 while (left < 0) left += block_size;
  /external/compiler-rt/BlocksRuntime/tests/
byrefsanity.c 51 int Block_size; // XXX should be packed into Block_flags
  /external/e2fsprogs/misc/
e2undo.c 98 int block_size; local
112 block_size = *(int *)tdb_data.dptr;
114 printf("Block size %d\n", block_size);
116 io_channel_set_blksize(channel, block_size);

Completed in 566 milliseconds

1 2 3 4 56 7 8 91011>>