/external/opencv/cv/src/ |
cvfeatureselect.cpp | 51 const void* maskImage, int block_size, 144 CV_CALL( cvCornerHarris( img, eig, block_size, 3, harris_k )); 148 CV_CALL( cvCornerMinEigenVal( img, eig, block_size, 3 ));
|
/external/opencv/otherlibs/highgui/ |
bitstrm.cpp | 177 void RBaseStream::SetBlockSize( int block_size, int unGetsize ) 179 assert( unGetsize >= 0 && block_size > 0 && 180 (block_size & (block_size-1)) == 0 ); 182 if( m_start && block_size == m_block_size && unGetsize == m_unGetsize ) return; 184 m_block_size = block_size; 799 void WBaseStream::SetBlockSize( int block_size ) 801 assert( block_size > 0 && (block_size & (block_size-1)) == 0 ) [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
ConnectionState.java | 41 protected int block_size; field in class:ConnectionState 97 int mask = block_size - 1; 98 return (block_size - (content_size & mask));
|
/external/e2fsprogs/ext2ed/ |
dir_com.c | 61 info_ptr->global_block_offset=ptr->i_block [0]*file_system_info.block_size; 66 info_ptr->blocks_count=(ptr->i_size+file_system_info.block_size-1)/file_system_info.block_size; 105 low_read (info.buffer,file_system_info.block_size,info.global_block_offset); 122 next = file_system_info.block_size - info.dir_entry_offset; 128 if (info.dir_entry_offset >= file_system_info.block_size) { /* We crossed a block boundary */ 132 info.global_block_offset=info.global_block_num*file_system_info.block_size; 133 info.file_offset=info.block_num*file_system_info.block_size; 137 low_read (info.buffer,file_system_info.block_size,info.global_block_offset); 402 low_read (file_info.buffer,file_system_info.block_size,file_info.global_block_offset) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
nt_io.c | 1127 io->block_size = 1024; 1275 if (channel->block_size != blksize) 1277 channel->block_size = blksize; 1281 NtData->BufferSize = channel->block_size; 1325 memcpy(buf, NtData->Buffer, channel->block_size); 1329 Size = (count < 0) ? (ULONG)(-count) : (ULONG)(count * channel->block_size); 1331 Offset.QuadPart = block * channel->block_size; 1351 ASSERT(0 == (SizeToRead % channel->block_size)); 1404 SizeToWrite = channel->block_size; 1416 SizeToWrite = (ULONG)(count * channel->block_size); [all...] |
/external/opencv/cxcore/src/ |
cxdatastructs.cpp | 44 ((schar*)(storage)->top + (storage)->block_size - (storage)->free_space) 83 icvInitMemStorage( CvMemStorage* storage, int block_size ) 92 if( block_size <= 0 ) 93 block_size = CV_STORAGE_BLOCK_SIZE; 95 block_size = cvAlign( block_size, CV_STRUCT_ALIGN ); 100 storage->block_size = block_size; 108 cvCreateMemStorage( int block_size ) 117 CV_CALL( icvInitMemStorage( storage, block_size )); 1461 int block_size; local 1586 int block_size; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeframe.c | 53 static INLINE uint8_t *get_sb_index(MACROBLOCK *x, BLOCK_SIZE subsize) { 79 int mi_row, int mi_col, BLOCK_SIZE bsize); 110 BLOCK_SIZE bs) { 365 BLOCK_SIZE bsize, int output_enabled) { 506 int mi_row, int mi_col, BLOCK_SIZE bsize) { 594 BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx, 719 static BLOCK_SIZE *get_sb_partitioning(MACROBLOCK *x, BLOCK_SIZE bsize) { 739 BLOCK_SIZE bsize) { 769 BLOCK_SIZE bsize) [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_common.c | 153 const size_t block_size = 16; local 159 if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size) 165 decrypted = wpabuf_alloc(encr_len - block_size); 170 wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
evp_lib.c | 183 return e->block_size; 188 return ctx->cipher->block_size; 253 return md->block_size;
|
/external/openssl/crypto/evp/ |
evp_lib.c | 183 return e->block_size; 188 return ctx->cipher->block_size; 253 return md->block_size;
|
/frameworks/base/tools/obbtool/ |
mkobb.sh | 28 BLOCK_SIZE=512 29 SLOP=512 # Amount of filesystem slop in ${BLOCK_SIZE} blocks 221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1
|
/external/ceres-solver/internal/ceres/ |
compressed_row_sparse_matrix.cc | 311 const int block_size = blocks[i]; local 312 for (int r = 0; r < block_size; ++r) { 315 for (int c = 0; c < block_size; ++c, ++idx_cursor) { 319 col_cursor += block_size;
|
/external/chromium/sdch/open-vcdiff/src/ |
vcdiffengine_test.cc | 61 // in string_without_spaces corresponds to (block_size - 1) 64 // If string_without_spaces begins "The only thing"... and block_size is 4, 68 // This makes testing simpler, because finding a block_size-byte match 75 int block_size, 78 char* padded_text = new char[(block_size * length_without_spaces) + 1]; 79 memset(padded_text, ' ', block_size * length_without_spaces); 82 padded_text_ptr += block_size - 1; 86 padded_text_ptr += block_size; 88 *(padded_text_ptr - block_size + 1) = '\0'; [all...] |
/external/chromium_org/net/disk_cache/ |
block_files_unittest.cc | 315 int block_size = i % 4 + 1; local 316 EXPECT_TRUE(files.CreateBlock(BLOCK_1K, block_size, &address[i])); 318 EXPECT_EQ(block_size, address[i].num_blocks()); 320 EXPECT_EQ(start / 4, (start + block_size - 1) / 4);
|
/external/chromium_org/sdch/open-vcdiff/src/ |
vcdiffengine_test.cc | 59 // in string_without_spaces corresponds to (block_size - 1) 62 // If string_without_spaces begins "The only thing"... and block_size is 4, 66 // This makes testing simpler, because finding a block_size-byte match 73 int block_size, 76 char* padded_text = new char[(block_size * length_without_spaces) + 1]; 77 memset(padded_text, ' ', block_size * length_without_spaces); 80 padded_text_ptr += block_size - 1; 84 padded_text_ptr += block_size; 86 *(padded_text_ptr - block_size + 1) = '\0'; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_strings.c | 80 "BLOCK_SIZE",
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_pack.py | 50 if format.block_size() in (8, 16, 32, 64): 51 print ' uint%u_t value;' % (format.block_size(),) 105 if format.is_bitmask() and not format.is_array() and format.block_size() > 8: 107 print ' pixel.value = util_bswap%u(pixel.value);' % format.block_size() 161 return 'uint%u_t' % format.block_size() 415 depth = format.block_size() 525 depth = format.block_size() 604 print ' src += %u;' % (format.block_size() / 8,) 634 print ' dst += %u;' % (format.block_size() / 8,)
|
u_format_parse.py | 130 def block_size(self): member in class:Format 169 return is_pot(self.block_size()) 190 if self.block_size() not in (8, 16, 32): 208 return self.block_size()/8
|
u_slab.h | 65 unsigned block_size; member in struct:util_slab_mempool
|
/external/e2fsprogs/e2fsck/ |
CHANGES | 38 Fixed dependency on BLOCK_SIZE in pass2. e2fsck will now handle 4k
|
/external/libvpx/libvpx/test/ |
intrapred_test.cc | 40 int block_size, 49 block_size_ = block_size; 52 data_ptr_[p] = data + stride * (block_size + 1) * p + 53 stride + block_size;
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_strings.c | 80 "BLOCK_SIZE",
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_pack.py | 50 if format.block_size() in (8, 16, 32, 64): 51 print ' uint%u_t value;' % (format.block_size(),) 105 if format.is_bitmask() and not format.is_array() and format.block_size() > 8: 107 print ' pixel.value = util_bswap%u(pixel.value);' % format.block_size() 161 return 'uint%u_t' % format.block_size() 415 depth = format.block_size() 525 depth = format.block_size() 604 print ' src += %u;' % (format.block_size() / 8,) 634 print ' dst += %u;' % (format.block_size() / 8,)
|
u_format_parse.py | 130 def block_size(self): member in class:Format 169 return is_pot(self.block_size()) 190 if self.block_size() not in (8, 16, 32): 208 return self.block_size()/8
|
u_slab.h | 65 unsigned block_size; member in struct:util_slab_mempool
|