Searched defs:block_size (Results 26 - 50 of 78) sorted by relevance

1234

/external/e2fsprogs/lib/ext2fs/
H A Dext2_io.h37 int block_size; member in struct:struct_io_channel
H A Dundo_io.c136 int block_size ; local
140 block_size = channel->block_size;
170 io_channel_set_blksize(channel, block_size);
174 static errcode_t write_block_size(TDB_CONTEXT *tdb, int block_size) argument
181 tdb_data.dptr = (unsigned char *)&(block_size);
182 tdb_data.dsize = sizeof(block_size);
215 size = channel->block_size;
220 size = count * channel->block_size;
228 offset = (block * channel->block_size)
[all...]
/external/opencv/cv/src/
H A Dcvfeatureselect.cpp51 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 ));
48 cvGoodFeaturesToTrack( const void* image, void* eigImage, void* tempImage, CvPoint2D32f* corners, int *corner_count, double quality_level, double min_distance, const void* maskImage, int block_size, int use_harris, double harris_k ) argument
H A Dcvcorner.cpp203 icvCornerEigenValsVecs( const CvMat* src, CvMat* eigenv, int block_size, argument
232 if( block_size < 3 || !(block_size & 1) )
277 cvSize(el_size.width,el_size.height + block_size)));
292 max_dy = MAX( max_dy, aperture_size + block_size );
297 CV_CALL( cov = cvCreateMat( max_dy + block_size + 1, size.width, CV_32FC3 ));
305 CV_CALL(blur_filter.init(size.width, CV_32FC3, CV_32FC3, 0, cvSize(block_size,block_size)));
308 factorx = (double)(1 << (aperture_size - 1)) * block_size;
421 int block_size, in
420 cvCornerMinEigenVal( const void* srcarr, void* eigenvarr, int block_size, int aperture_size ) argument
447 cvCornerHarris( const CvArr* srcarr, CvArr* harris_responce, int block_size, int aperture_size, double k ) argument
474 cvCornerEigenValsAndVecs( const void* srcarr, void* eigenvarr, int block_size, int aperture_size ) argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc123 TestInputStream(const void* data, int size, int block_size) argument
124 : array_stream_(data, size, block_size), counter_(0) {}
H A Dzero_copy_stream_impl.cc77 FileInputStream::FileInputStream(int file_descriptor, int block_size) argument
79 impl_(&copying_input_, block_size) {
173 FileOutputStream::FileOutputStream(int file_descriptor, int block_size) argument
175 impl_(&copying_output_, block_size) {
271 IstreamInputStream::IstreamInputStream(istream* input, int block_size) argument
273 impl_(&copying_input_, block_size) {
313 OstreamOutputStream::OstreamOutputStream(ostream* output, int block_size) argument
315 impl_(&copying_output_, block_size) {
H A Dzero_copy_stream_impl_lite.cc53 int block_size)
56 block_size_(block_size > 0 ? block_size : size),
106 ArrayOutputStream::ArrayOutputStream(void* data, int size, int block_size) argument
109 block_size_(block_size > 0 ? block_size : size),
205 CopyingInputStream* copying_stream, int block_size)
210 buffer_size_(block_size > 0 ? block_size : kDefaultBlockSize),
311 CopyingOutputStream* copying_stream, int block_size)
52 ArrayInputStream(const void* data, int size, int block_size) argument
204 CopyingInputStreamAdaptor( CopyingInputStream* copying_stream, int block_size) argument
310 CopyingOutputStreamAdaptor( CopyingOutputStream* copying_stream, int block_size) argument
[all...]
/external/qemu/memcheck/
H A Dmemcheck_proc_management.h230 uint32_t block_size)
232 return allocmap_find(&proc->alloc_map, address, block_size);
228 procdesc_find_malloc_for_range(ProcDesc* proc, target_ulong address, uint32_t block_size) argument
/external/wpa_supplicant/
H A Dsha256.c299 #define block_size 64 macro
305 if (md->curlen == 0 && inlen >= block_size) {
308 md->length += block_size * 8;
309 in += block_size;
310 inlen -= block_size;
312 n = MIN(inlen, (block_size - md->curlen));
317 if (md->curlen == block_size) {
320 md->length += 8 * block_size;
H A Dcrypto_internal.c240 size_t block_size; member in struct:crypto_cipher::__anon12366::__anon12368
289 ctx->u.aes.block_size = key_len;
290 os_memcpy(ctx->u.aes.cbc, iv, ctx->u.aes.block_size);
323 if (len % ctx->u.aes.block_size)
325 blocks = len / ctx->u.aes.block_size;
327 for (j = 0; j < ctx->u.aes.block_size; j++)
332 ctx->u.aes.block_size);
333 plain += ctx->u.aes.block_size;
334 crypt += ctx->u.aes.block_size;
374 if (len % ctx->u.aes.block_size)
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dsha256.c302 #define block_size 64 macro
308 if (md->curlen == 0 && inlen >= block_size) {
311 md->length += block_size * 8;
312 in += block_size;
313 inlen -= block_size;
315 n = MIN(inlen, (block_size - md->curlen));
320 if (md->curlen == block_size) {
323 md->length += 8 * block_size;
H A Dcrypto_internal.c241 size_t block_size; member in struct:crypto_cipher::__anon12532::__anon12534
290 ctx->u.aes.block_size = key_len;
291 os_memcpy(ctx->u.aes.cbc, iv, ctx->u.aes.block_size);
324 if (len % ctx->u.aes.block_size)
326 blocks = len / ctx->u.aes.block_size;
328 for (j = 0; j < ctx->u.aes.block_size; j++)
333 ctx->u.aes.block_size);
334 plain += ctx->u.aes.block_size;
335 crypt += ctx->u.aes.block_size;
375 if (len % ctx->u.aes.block_size)
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps_common.c155 const size_t block_size = 16; local
161 if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
167 decrypted = wpabuf_alloc(encr_len - block_size);
172 wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_build.c323 const size_t block_size = 16; local
329 pad_len = block_size - wpabuf_len(plain) % block_size;
333 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
335 iv = wpabuf_put(msg, block_size);
336 if (random_get_bytes(iv, block_size) < 0)
H A Dwps_common.c160 const size_t block_size = 16; local
166 if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
172 decrypted = wpabuf_alloc(encr_len - block_size);
177 wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_build.c323 const size_t block_size = 16; local
329 pad_len = block_size - wpabuf_len(plain) % block_size;
333 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
335 iv = wpabuf_put(msg, block_size);
336 if (random_get_bytes(iv, block_size) < 0)
H A Dwps_common.c160 const size_t block_size = 16; local
166 if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
172 decrypted = wpabuf_alloc(encr_len - block_size);
177 wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_build.c323 const size_t block_size = 16; local
329 pad_len = block_size - wpabuf_len(plain) % block_size;
333 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
335 iv = wpabuf_put(msg, block_size);
336 if (random_get_bytes(iv, block_size) < 0)
H A Dwps_common.c160 const size_t block_size = 16; local
166 if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
172 decrypted = wpabuf_alloc(encr_len - block_size);
177 wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
/external/v8/src/
H A Dlog-utils.cc39 int block_size, int max_size, const char* seal, int seal_size)
40 : block_size_(block_size),
38 LogDynamicBuffer( int block_size, int max_size, const char* seal, int seal_size) argument
/external/e2fsprogs/ext2ed/
H A Dext2ed.h129 unsigned short block_size; member in struct:struct_file_system_info
208 extern short block_size;
/external/libvpx/vp8/encoder/
H A Dtemporal_filter.c95 unsigned int block_size,
106 for (i = 0,k = 0; i < block_size; i++)
108 for (j = 0; j < block_size; j++, k++)
135 byte += stride - block_size;
90 vp8_temporal_filter_apply_c( unsigned char *frame1, unsigned int stride, unsigned char *frame2, unsigned int block_size, int strength, int filter_weight, unsigned int *accumulator, unsigned short *count ) argument
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp177 void RBaseStream::SetBlockSize( int block_size, int unGetsize ) argument
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
[all...]
/external/qemu/block/
H A Dvpc.c93 uint32_t block_size; member in struct:vhd_dyndisk_header
122 uint32_t block_size; member in struct:BDRVVPCState
191 s->block_size = be32_to_cpu(dyndisk_header->block_size);
192 s->bitmap_size = ((s->block_size / (8 * 512)) + 511) & ~511;
209 s->bitmap_size + s->block_size;
245 pagetable_index = offset / s->block_size;
246 pageentry_index = (offset % s->block_size) / 512;
341 index = (sector_num * 512) / s->block_size;
353 s->free_data_block_offset += s->block_size
501 size_t block_size, num_bat_entries; local
[all...]
/external/bluetooth/bluez/test/
H A Dipctest.c105 size_t block_size; member in struct:userdata
644 u->block_size = u->a2dp.codesize;
650 u->block_size = u->link_mtu;

Completed in 3884 milliseconds

1234