/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl.cc | 77 FileInputStream::FileInputStream(int file_descriptor, int block_size) 79 impl_(©ing_input_, block_size) { 173 FileOutputStream::FileOutputStream(int file_descriptor, int block_size) 175 impl_(©ing_output_, block_size) { 271 IstreamInputStream::IstreamInputStream(istream* input, int block_size) 273 impl_(©ing_input_, block_size) { 313 OstreamOutputStream::OstreamOutputStream(ostream* output, int block_size) 315 impl_(©ing_output_, block_size) {
|
/external/wpa_supplicant/ |
sha256.c | 299 #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;
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
sha256.c | 302 #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;
|
crypto_internal.c | 241 size_t block_size; member in struct:crypto_cipher::__anon13818::__anon13820 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...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
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) {
|
ConnectionStateTLS.java | 93 block_size = cipherSuite.getBlockSize(); 104 logger.println(" block size: " + block_size); 154 if (block_size != 0) { 160 } else if (block_size != 0) { 240 int padding_length = (block_size == 0) ? 0 : getPaddingSize(++content_mac_length); 260 if (block_size != 0) { 267 + (block_size != 0 305 if (block_size != 0) {
|
/external/e2fsprogs/lib/ext2fs/ |
inode_io.c | 149 io->block_size = 1024; 203 channel->block_size = blksize; 219 block * channel->block_size, 223 count = (count < 0) ? -count : (count * channel->block_size); 245 block * channel->block_size, 249 count = (count < 0) ? -count : (count * channel->block_size);
|
dosio.c | 162 ioch->block_size = 1024; /* The smallest ext2fs block size */ 363 channel->block_size = blksize; 379 size = (size_t)((count < 0) ? -count : count * channel->block_size); 380 loc = (ext2_loff_t) block * channel->block_size; 417 size = (size_t)channel->block_size; 423 size = (size_t)(count * channel->block_size); 426 loc = (ext2_loff_t)block * channel->block_size;
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_attr_build.c | 232 const size_t block_size = 16; local 238 pad_len = block_size - wpabuf_len(plain) % block_size; 242 wpabuf_put_be16(msg, block_size + wpabuf_len(plain)); 244 iv = wpabuf_put(msg, block_size); 245 if (os_get_random(iv, block_size) < 0)
|
wps_common.c | 155 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/openssl/crypto/evp/ |
evp_enc.c | 192 OPENSSL_assert(ctx->cipher->block_size == 1 193 || ctx->cipher->block_size == 8 194 || ctx->cipher->block_size == 16); 228 ctx->block_mask=ctx->cipher->block_size-1; 303 bl=ctx->cipher->block_size; 353 b=ctx->cipher->block_size; 399 b=ctx->cipher->block_size; 445 b=ctx->cipher->block_size; 478 n=ctx->cipher->block_size-n;
|
evp_lib.c | 179 return e->block_size; 184 return ctx->cipher->block_size; 249 return md->block_size;
|
/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...] |
bitstrm.h | 69 void SetBlockSize( int block_size, int unGetsize = 4 ); 169 void SetBlockSize( int 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/qemu/memcheck/ |
memcheck_proc_management.h | 230 uint32_t block_size) 232 return allocmap_find(&proc->alloc_map, address, block_size);
|
memcheck_malloc_map.c | 142 uint32_t block_size) 146 adesc.desc.malloc_desc.requested_bytes = block_size; 187 allocmap_find(const AllocMap* map, target_ulong address, uint32_t block_size) 189 AllocMapEntry* adesc = allocmap_find_entry(map, address, block_size);
|
/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);
|
/external/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
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidJarLoader.java | 380 int block_size = 1024; local 381 int data_size = entrySize < 1 ? block_size : entrySize; 399 byte[] temp = new byte[data_size + block_size]; 401 data_size += block_size; 403 block_size *= 2;
|
/external/opencv/cv/src/ |
cvcorner.cpp | 203 icvCornerEigenValsVecs( const CvMat* src, CvMat* eigenv, int block_size, 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, int aperture_size [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_attr_build.c | 323 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)
|
/external/bluetooth/glib/tests/ |
slice-threadinit.c | 41 gsize block_size) 45 g_slice_free1 (block_size, (*trash_list)->data);
|
/external/e2fsprogs/ext2ed/ |
group_com.c | 93 offset=file_system_info.first_group_desc_offset+copy_num*file_system_info.super_block.s_blocks_per_group*file_system_info.block_size; 112 temp=(device_offset-file_system_info.first_group_desc_offset) % (file_system_info.super_block.s_blocks_per_group*file_system_info.block_size);
|
/external/grub/util/ |
mkbimage | 39 block_size=512 284 # First, find the size of the tar file in block_size. 286 file_size=$(($file_size / $block_size + 1)) 339 dd if=/dev/zero of=$image bs=$block_size count=$(($cyl_size * $cylinders)) 351 offset="$(($sectors * $block_size))"
|