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

1 2 3 4 56 7 8 91011>>

  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 72 attr_value->block.block_size = *prop;
75 static_cast<Elf_Word>(attr_value->block.block_size + 1);
83 attr_value->block.block_size =
87 static_cast<Elf_Word>(attr_value->block.block_size + 2);
95 attr_value->block.block_size =
99 static_cast<Elf_Word>(attr_value->block.block_size + 4);
108 attr_value->block.block_size = leb128.u32;
111 static_cast<Elf_Word>(attr_value->block.block_size +
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 362 def hooktester(count, block_size, total_size, count_holder=[0]):
364 self.assertIsInstance(block_size, int)
376 def hooktester(count, block_size, total_size, _report=report):
377 _report.append((count, block_size, total_size))
390 def hooktester(count, block_size, total_size, _report=report):
391 _report.append((count, block_size, total_size))
404 def hooktester(count, block_size, total_size, _report=report):
405 _report.append((count, block_size, total_size))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 362 def hooktester(count, block_size, total_size, count_holder=[0]):
364 self.assertIsInstance(block_size, int)
376 def hooktester(count, block_size, total_size, _report=report):
377 _report.append((count, block_size, total_size))
390 def hooktester(count, block_size, total_size, _report=report):
391 _report.append((count, block_size, total_size))
404 def hooktester(count, block_size, total_size, _report=report):
405 _report.append((count, block_size, total_size))
    [all...]
  /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/net/disk_cache/
block_files_unittest.cc 266 int block_size = i % 4 + 1; local
267 EXPECT_TRUE(files.CreateBlock(BLOCK_1K, block_size, &address[i]));
269 EXPECT_EQ(block_size, address[i].num_blocks());
271 EXPECT_EQ(start / 4, (start + block_size - 1) / 4);
  /external/chromium_org/net/disk_cache/
block_files.h 42 void DeleteMapBlock(int index, int block_size);
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/net/disk_cache/v3/
block_bitmaps_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/third_party/mesa/src/src/gallium/auxiliary/util/
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
  /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/util/
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
  /external/openssh/
cipher.c 63 u_int block_size; member in struct:Cipher
101 return (c->block_size);
233 if (iv != NULL && ivlen < cipher->block_size)
281 if (len % cc->cipher->block_size)
  /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/libvpx/libvpx/vp8/common/
mfqe.c 31 int block_size, int src_weight)
37 for (r = 0; r < block_size; r++)
39 for (c = 0; c < block_size; c++)
81 int block_size,
84 if (block_size == 16)
90 else /* if (block_size == 8) */
  /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...]
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/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/ml/src/
mlsvm.cpp 459 if( rows_hdr_size > storage->block_size )
1538 int block_size = 1 << 16; local
1606 int block_size = 1 << 16; local
2205 int block_size = 1 << 16, sv_size; local
    [all...]
  /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/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/e2fsprogs/ext2ed/
init.c 420 file_system_info.block_size=EXT2_MIN_BLOCK_SIZE << sb->s_log_block_size;
421 if (file_system_info.block_size == EXT2_MIN_BLOCK_SIZE)
424 file_system_info.first_group_desc_offset=file_system_info.block_size;
428 file_system_info.inodes_per_block=file_system_info.block_size/sizeof (struct ext2_inode);
431 file_system_info.file_system_size=(sb->s_blocks_count-1)*file_system_info.block_size;
436 file_system_info.block_size=DefaultBlockSize;
  /external/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/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/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_soa.py 131 if shift + width < format.block_size():
218 dst_native_type = 'uint%u_t' % format.block_size()
308 and format.block_size() <= 32 \
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.py 131 if shift + width < format.block_size():
218 dst_native_type = 'uint%u_t' % format.block_size()
308 and format.block_size() <= 32 \

Completed in 567 milliseconds

1 2 3 4 56 7 8 91011>>