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

<<11121314151617181920>>

  /external/libvpx/libvpx/vp8/common/
mfqe.c 30 unsigned char *dst, int dst_stride, int block_size,
36 for (r = 0; r < block_size; ++r) {
37 for (c = 0; c < block_size; ++c) {
69 int block_size, int src_weight) {
70 if (block_size == 16) {
77 } else /* if (block_size == 8) */
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
temporal_filter_msa.c 244 uint8_t *frame2, uint32_t block_size,
247 if (8 == block_size) {
250 } else if (16 == block_size) {
259 for (i = 0, k = 0; i < block_size; ++i) {
260 for (j = 0; j < block_size; ++j, ++k) {
281 byte += stride - block_size;
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 208 static void build_inter_predictors_for_planes(MACROBLOCKD *xd, BLOCK_SIZE bsize,
215 const BLOCK_SIZE plane_bsize =
236 BLOCK_SIZE bsize) {
241 BLOCK_SIZE bsize, int plane) {
246 BLOCK_SIZE bsize) {
252 BLOCK_SIZE bsize) {
  /external/regex-re2/util/
arena.cc 16 UnsafeArena::UnsafeArena(const size_t block_size)
17 : block_size_(block_size),
23 assert(block_size > kDefaultAlignment);
71 UnsafeArena::AllocatedBlock* UnsafeArena::AllocNewBlock(const size_t block_size) {
85 block->mem = reinterpret_cast<char*>(malloc(block_size));
86 block->size = block_size;
arena.h 30 UnsafeArena(const size_t block_size);
69 AllocatedBlock *AllocNewBlock(const size_t block_size);
  /external/squashfs-tools/kernel/fs/squashfs/
cache.c 122 cache->block_size);
230 * size block_size. To avoid vmalloc fragmentation issues each entry
234 int block_size)
253 cache->block_size = block_size;
254 cache->pages = block_size >> PAGE_CACHE_SHIFT;
  /external/squashfs-tools/squashfs-tools/
unsquash-1.c 30 unsigned short block_size; local
39 SQUASHFS_SWAP_SHORTS_3((&block_size), &sblock_size, 1);
41 memcpy(&block_size, block_ptr, sizeof(unsigned short));
42 block_list[i] = SQUASHFS_COMPRESSED_SIZE(block_size) |
43 (SQUASHFS_COMPRESSED(block_size) ? 0 :
142 i.blocks = (i.data + sBlk.s.block_size - 1) >>
  /external/wpa_supplicant_8/src/wps/
wps_attr_build.c 378 const size_t block_size = 16; local
384 pad_len = block_size - wpabuf_len(plain) % block_size;
388 wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
390 iv = wpabuf_put(msg, block_size);
391 if (random_get_bytes(iv, block_size) < 0)
  /toolchain/binutils/binutils-2.25/gold/
reduced_debug_output.cc 79 uint16_t block_size; local
80 block_size = read_from_pointer<16>(&die);
81 die += block_size;
86 uint32_t block_size; local
87 block_size = read_from_pointer<32>(&die);
88 die += block_size;
  /external/syslinux/gpxe/src/net/udp/
slam.c 97 7 /* block_size */ )
140 unsigned long block_size; member in struct:slam_request
436 &slam->block_size ) ) != 0 )
445 slam->num_blocks = ( ( slam->total_bytes + slam->block_size - 1 ) /
446 slam->block_size );
449 "blocks %ld\n", slam, slam->total_bytes, slam->block_size,
513 if ( len > slam->block_size ) {
515 "(block_size=%ld)\n", slam, len, slam->block_size );
520 ( len < slam->block_size ) ) {
    [all...]
  /external/autotest/client/cros/audio/
audio_analysis.py 228 block_size=ANOMALY_DETECTION_BLOCK_SIZE,
247 @param block_size: The block size in samples to detect anomaly.
256 golden_y = _generate_golden_pattern(rate, freq, block_size)
260 for start in xrange(0, len(signal), block_size / 2):
261 end = start + block_size
272 def _generate_golden_pattern(rate, freq, block_size):
288 @param block_size: The block size in samples to detect anomaly.
294 samples_in_golden_pattern = samples_in_a_period + block_size
  /external/autotest/client/site_tests/platform_CrosDisksFilesystem/
platform_CrosDisksFilesystem.py 38 block_size=config['block_size'],
  /external/e2fsprogs/e2fsck/
ehandler.c 46 for (i=0; i < count; i++, p += channel->block_size, block++) {
99 for (i=0; i < count; i++, p += channel->block_size, block++) {
  /external/e2fsprogs/ext2ed/
group_com.c 94 offset=file_system_info.first_group_desc_offset+copy_num*file_system_info.super_block.s_blocks_per_group*file_system_info.block_size;
113 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/libvpx/config/mips32-dspr2/
vp9_rtcd.h 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz);
36 int64_t vp9_block_error_fp_c(const int16_t *coeff, const int16_t *dqcoeff, int block_size);
  /external/libvpx/libvpx/test/
vp9_subtract_test.cc 40 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
41 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.h 68 MACROBLOCK *x, BLOCK_SIZE bsize,
109 int vp9_full_pixel_search(struct VP9_COMP *cpi, MACROBLOCK *x, BLOCK_SIZE bsize,
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_error_sse2.asm 18 ; int64_t vp9_block_error(int16_t *coeff, int16_t *dqcoeff, intptr_t block_size,
76 ; intptr_t block_size)
  /external/llvm/test/CodeGen/ARM/
2011-04-26-SchedTweak.ll 21 %block_size = alloca i32, align 4
44 %tmp5 = load i32, i32* %block_size, align 4
  /external/llvm/test/CodeGen/Thumb2/
v8_IT_3.ll 20 %block_size = alloca i32, align 4
44 %tmp5 = load i32, i32* %block_size, align 4
  /external/ltp/testcases/kernel/fs/ext4-new-features/ext4-delalloc-mballoc/
ext4-alloc-test.sh 124 BLOCK_SIZE=( 1024 4096 )
137 ${BLOCK_SIZE[$i]} \
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 79 FileInputStream::FileInputStream(int file_descriptor, int block_size)
81 impl_(&copying_input_, block_size) {
175 FileOutputStream::FileOutputStream(int file_descriptor, int block_size)
177 impl_(&copying_output_, block_size) {
273 IstreamInputStream::IstreamInputStream(istream* input, int block_size)
275 impl_(&copying_input_, block_size) {
315 OstreamOutputStream::OstreamOutputStream(ostream* output, int block_size)
317 impl_(&copying_output_, block_size) {
zero_copy_stream_impl.h 66 // If a block_size is given, it specifies the number of bytes that
69 explicit FileInputStream(int file_descriptor, int block_size = -1);
144 // If a block_size is given, it specifies the size of the buffers
147 explicit FileOutputStream(int file_descriptor, int block_size = -1);
218 // If a block_size is given, it specifies the number of bytes that
221 explicit IstreamInputStream(istream* stream, int block_size = -1);
262 // If a block_size is given, it specifies the size of the buffers
265 explicit OstreamOutputStream(ostream* stream, int block_size = -1);
  /external/protobuf/src/google/protobuf/stubs/
bytestream_unittest.cc 50 MockByteSource(StringPiece data, int block_size)
51 : data_(data), block_size_(block_size) {}
  /external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
2011-04-26-SchedTweak.ll 21 %block_size = alloca i32, align 4
44 %tmp5 = load i32* %block_size, align 4

Completed in 1948 milliseconds

<<11121314151617181920>>