HomeSort by relevance Sort by last modified time
    Searched full:block_size (Results 426 - 450 of 1104) sorted by null

<<11121314151617181920>>

  /external/opencv/otherlibs/highgui/
bitstrm.h 69 void SetBlockSize( int block_size, int unGetsize = 4 );
169 void SetBlockSize( int block_size );
  /external/pdfium/third_party/agg23/
agg_path_storage.h 25 block_size = 1 << block_shift, enumerator in enum:agg::path_storage::block_scale_e
26 block_mask = block_size - 1,
  /external/syslinux/core/fs/
cache.c 146 off = offset & (fs->block_size - 1);
150 cnt = fs->block_size - off;
  /system/extras/ext4_utils/
make_ext4fs_main.c 55 fprintf(stderr, "%s [ -l <len> ] [ -j <journal size> ] [ -b <block_size> ]\n", basename(path));
100 info.block_size = parse_num(optarg);
  /external/boringssl/src/crypto/cipher/
e_tls.c 177 unsigned block_size = EVP_CIPHER_CTX_block_size(&tls_ctx->cipher_ctx); local
178 if (block_size > 1) {
179 assert(block_size <= 256);
184 unsigned padding_len = block_size - ((in_len + mac_len) % block_size);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 15 protected static final int BLOCK_SIZE = 8;
61 return BLOCK_SIZE;
75 if ((inOff + BLOCK_SIZE) > in.length)
80 if ((outOff + BLOCK_SIZE) > out.length)
87 return BLOCK_SIZE;
RC2Engine.java 56 private static final int BLOCK_SIZE = 8;
157 return BLOCK_SIZE;
171 if ((inOff + BLOCK_SIZE) > in.length)
176 if ((outOff + BLOCK_SIZE) > out.length)
190 return BLOCK_SIZE;
  /external/libmicrohttpd/src/microhttpd/
response.c 229 * @param block_size preferred block size for querying crc (advisory only,
242 size_t block_size,
249 if ((NULL == crc) || (0 == block_size))
251 if (NULL == (response = malloc (sizeof (struct MHD_Response) + block_size)))
256 response->data_buffer_size = block_size;
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 328 int block_size = 0; local
391 block_size = MIN( size.width, ICV_MATH_BLOCK_SIZE );
394 x_buffer = (float*)cvStackAlloc( block_size*sizeof(float));
395 y_buffer = (float*)cvStackAlloc( block_size*sizeof(float));
399 mag_buffer = (float*)cvStackAlloc( block_size*sizeof(float));
411 for( x = 0; x < size.width; x += block_size )
413 int len = MIN( size.width - x, block_size );
440 for( x = 0; x < size.width; x += block_size )
442 int len = MIN( size.width - x, block_size );
568 int block_size = 0 local
1708 int block_size = 0; local
    [all...]
  /external/vboot_reference/firmware/lib/cryptolib/
sha256.c 329 uint32_t block_size; local
330 block_size = (uint32_t) ((remaining_len >= UINT32_MAX) ?
332 SHA256_update(&ctx, input_ptr, block_size);
333 remaining_len -= block_size;
334 input_ptr += block_size;
sha512.c 352 uint32_t block_size; local
353 block_size = (uint32_t) ((remaining_len >= UINT32_MAX) ?
355 SHA512_update(&ctx, input_ptr, block_size);
356 remaining_len -= block_size;
357 input_ptr += block_size;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoader.java 406 int block_size = 1024; local
407 int data_size = entrySize < 1 ? block_size : entrySize;
425 byte[] temp = new byte[data_size + block_size];
427 data_size += block_size;
429 block_size *= 2;
  /external/openssh/
packet.c 984 /* explicit_bzero(enc->iv, enc->block_size);
1005 if (enc->block_size >= 16)
1006 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
1008 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
1011 state->rekey_limit / enc->block_size);
1067 int r, block_size; local
1077 block_size = enc ? enc->block_size : 8;
1114 padlen = block_size - (len % block_size);
1548 u_int maclen, aadlen = 0, authlen = 0, block_size; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
unsquashfs.c 68 unsigned int block_size; variable
752 block_size, &error);
893 if((zero_data = malloc(block_size)) == NULL)
896 memset(zero_data, 0, block_size);
900 int blocks = (hole + block_size -1) / block_size;
903 avail_bytes = hole > block_size ? block_size :
1003 int file_end = inode->data / block_size;
1036 block->size = i == file_end ? inode->data & (block_size - 1)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 318 BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
349 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *arg) {
426 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, void *argv) {
438 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
447 BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
458 int vp9_has_high_freq_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
467 int seg_skip, BLOCK_SIZE bsize) {
vp9_pickmode.c 144 BLOCK_SIZE bsize, int mi_row, int mi_col,
233 unsigned int *sse, int *sum, int block_size,
243 for (i = 0; i < h; i += block_size) {
244 for (j = 0; j < w; j += block_size) {
286 const BLOCK_SIZE unit_size = txsize_to_bsize[tx_size];
317 static void model_rd_for_sb_y_large(VP9_COMP *cpi, BLOCK_SIZE bsize,
467 const BLOCK_SIZE unit_size = txsize_to_bsize[uv_tx_size];
468 const BLOCK_SIZE uv_bsize = get_plane_block_size(bsize, pd);
529 static void model_rd_for_sb_y(VP9_COMP *cpi, BLOCK_SIZE bsize, MACROBLOCK *x,
573 const BLOCK_SIZE unit_size = txsize_to_bsize[xd->mi[0]->tx_size]
    [all...]
  /system/update_engine/payload_generator/
inplace_generator.cc 740 size_t block_size,
746 vector<Block> blocks(std::max(old_part.size, new_part.size) / block_size);
755 if (blocks.size() < (partition_size / block_size)) {
758 size_t scratch_blocks = (partition_size / block_size) - blocks.size();
799 config.hard_chunk_size / config.block_size);
800 size_t soft_chunk_blocks = config.soft_chunk_size / config.block_size;
816 old_part, new_part, partition_size, config.block_size, blob_file, aops));
  /art/runtime/gc/space/
bump_pointer_space.cc 192 size_t block_size = header->size_; local
195 const mirror::Object* end_obj = reinterpret_cast<const mirror::Object*>(pos + block_size);
204 pos += block_size;
  /external/autotest/client/cros/audio/
audio_analysis_unittest.py 161 self.block_size = 120
214 self.y, self.rate, self.freq, self.block_size)
237 self.anomaly_start_secs - float(self.block_size) / self.rate,
  /external/autotest/client/cros/
verity_utils.py 25 BLOCK_SIZE = 4096
263 def mod_nothing(self, run_count, backing_path, block_size, block_count):
280 BLOCK_SIZE,
  /external/libchrome/sandbox/win/src/
crosscall_params.h 152 // BLOCK_SIZE: the total storage that the NUMBER_PARAMS parameters can take,
187 template <size_t NUMBER_PARAMS, size_t BLOCK_SIZE>
276 char parameters_[BLOCK_SIZE - sizeof(CrossCallParams)
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 408 int mi_col, BLOCK_SIZE subsize,
409 BLOCK_SIZE bsize) {
424 int mi_col, BLOCK_SIZE bsize) {
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_denoiser_neon.c 135 BLOCK_SIZE bs, int motion_magnitude,
236 BLOCK_SIZE bs, int motion_magnitude) {
337 int increase_denoising, BLOCK_SIZE bs,
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_denoiser_sse2.c 125 int increase_denoising, BLOCK_SIZE bs,
213 int increase_denoising, BLOCK_SIZE bs,
312 int increase_denoising, BLOCK_SIZE bs,
  /system/update_engine/scripts/
paycheck.py 126 opts.block_size or opts.allow_unhashed or
196 block_size=int(options.block_size),

Completed in 1743 milliseconds

<<11121314151617181920>>