HomeSort by relevance Sort by last modified time
    Searched full:blocksize (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 19 private int blockSize;
32 this.blockSize = cipher.getBlockSize();
34 this.IV = new byte[blockSize];
35 this.cbcV = new byte[blockSize];
36 this.cbcNextV = new byte[blockSize];
71 if (iv.length != blockSize)
164 if ((inOff + blockSize) > in.length)
173 for (int i = 0; i < blockSize; i++)
207 if ((inOff + blockSize) > in.length)
212 System.arraycopy(in, inOff, cbcNextV, 0, blockSize);
    [all...]
CCMBlockCipher.java 25 private int blockSize;
42 this.blockSize = c.getBlockSize();
43 this.macBlock = new byte[blockSize];
45 if (blockSize != 16)
172 byte[] iv = new byte[blockSize];
192 while (index < inLen - blockSize) // S1...
195 outOff += blockSize;
196 index += blockSize;
199 byte[] block = new byte[blockSize];
227 while (outOff < out.length - blockSize)
    [all...]
  /external/opencv/cv/src/
cvoptflowbm.cpp 90 // blockSize, // size of basic blocks which are compared
106 CvSize blockSize, CvSize shiftSize,
118 int stand_accept_level = blockSize.height * blockSize.width * SMALL_DIFF;
119 int stand_escape_level = blockSize.height * blockSize.width * BIG_DIFF;
142 int DownStep = blockSize.height * imgStep;
147 int blSize = blockSize.width * blockSize.height;
311 NumberBlocksX = (int) imgSize.width / blockSize.width
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Half.c 53 * [in] BlockSize MacroBlock Size i.e either 16x16 or 8x8.
72 OMX_U8 BlockSize
96 outer < BlockSize;
97 outer++, index += refWidth - BlockSize)
99 for (inner = 0; inner < BlockSize; inner++, count++, index++)
119 if ((pSearchPointRefPos->x + BlockSize + 1) > (pRefRect->x + pRefRect->width))
129 if ((pSearchPointRefPos->y + BlockSize + 1) > (pRefRect->y + pRefRect->height))
151 outer < BlockSize;
152 outer++, index += refWidth - BlockSize)
154 for (inner = 0; inner < BlockSize; inner++, count++,index++
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 68 private final int blockSize;
70 public SmallBlockInputStream(byte[] data, int blockSize) {
71 this(new ByteArrayInputStream(data), blockSize);
74 public SmallBlockInputStream(InputStream in, int blockSize) {
76 this.blockSize = blockSize;
80 return super.read(b, 0, Math.min(b.length, blockSize));
84 return super.read(b, off, Math.min(len, blockSize));
101 for (int blockSize = 1; blockSize <= 16; blockSize *= 2)
    [all...]
CodedOutputStreamTest.java 106 for (int blockSize = 1; blockSize <= 16; blockSize *= 2) {
111 CodedOutputStream.newInstance(rawOutput, blockSize);
120 CodedOutputStream.newInstance(rawOutput, blockSize);
171 for (int blockSize = 1; blockSize <= 16; blockSize *= 2) {
173 output = CodedOutputStream.newInstance(rawOutput, blockSize);
193 for (int blockSize = 1; blockSize <= 16; blockSize *= 2)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
link.c 28 unsigned int blocksize; member in struct:link_struct
35 int blocksize,
55 if ((offset + curr_rec_len < blocksize - 8) &&
57 (offset + curr_rec_len + next->rec_len <= blocksize)) {
130 ls.blocksize = fs->blocksize;
i_block.c 37 num_blocks *= fs->blocksize / 512;
59 num_blocks *= fs->blocksize / 512;
80 b *= fs->blocksize / 512;
dirblock.c 36 end = (char *) buf + fs->blocksize;
78 retval = ext2fs_get_mem(fs->blocksize, &buf);
81 memcpy(buf, inbuf, fs->blocksize);
83 end = buf + fs->blocksize;
ext_attr.c 71 ext2fs_swap_ext_attr(buf, buf, fs->blocksize, 1);
83 retval = ext2fs_get_mem(fs->blocksize, &buf);
87 ext2fs_swap_ext_attr(buf, inbuf, fs->blocksize, 1);
115 retval = ext2fs_get_mem(fs->blocksize, &buf);
dblist_dir.c 33 int blocksize,
48 retval = ext2fs_get_mem(dblist->fs->blocksize, &ctx.buf);
  /external/e2fsprogs/misc/
e2image.c 57 static void write_header(int fd, struct ext2_image_hdr *hdr, int blocksize)
62 header_buf = malloc(blocksize);
72 memset(header_buf, 0, blocksize);
77 actual = write(fd, header_buf, blocksize);
82 if (actual != blocksize) {
96 write_header(fd, NULL, fs->blocksize);
133 hdr.fs_blocksize = fs->blocksize;
145 write_header(fd, &hdr, fs->blocksize);
298 static int check_zero_block(char *buf, int blocksize)
301 int left = blocksize;
    [all...]
e2freefrag.h 16 int blocksize_bits; /* fs blocksize in bits */
  /external/flac/libFLAC/include/private/
format.h 37 unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order);
38 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize);
39 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order);
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 65 int blockSize = stat.getBlockSize();
70 assertTrue(blockSize > 0);
77 blockSize = stat.getBlockSize();
82 assertTrue(blockSize > 0);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMapVector.java 48 * @param blocksize Size of block to allocate
50 public OpMapVector(int blocksize, int increaseSize, int lengthPos)
54 m_mapSize = blocksize;
56 m_map = new int[blocksize];
  /external/kernel-headers/original/linux/nfsd/
const.h 23 * Maximum blocksize supported by daemon currently at 32K
  /external/skia/gpu/src/
GrAllocPool.cpp 64 GrAllocPool::GrAllocPool(size_t blockSize) {
66 fMinBlockSize = GrMax(blockSize, GrAllocPool_MIN_BLOCK_SIZE);
91 size_t blockSize = GrMax(fMinBlockSize, size);
92 fBlock = Block::Create(blockSize, fBlock);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
smb.h 33 __u16 blocksize; member in struct:smb_dskattr
  /external/e2fsprogs/debugfs/
logdump.c 156 inodes_per_block = (current_fs->blocksize
338 unsigned int blocksize = 1024; local
363 blocksize = EXT2_BLOCK_SIZE(sb);
364 blocknr = (blocksize == 1024) ? 2 : 1;
369 fprintf(out_file, "\tblocksize=%d\n", blocksize);
377 retval = read_journal_block(cmdname, source, blocknr*blocksize,
388 blocksize = be32_to_cpu(jsb->s_blocksize);
401 blocknr*blocksize, buf,
402 blocksize, &got);
403 if (retval || got != blocksize)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscostask.c 72 int blockSize = 0;
75 while(blockSize < 5 || storeBlock[blockSize] != -1)
77 fprintf(stderr, " %d\n", storeBlock[blockSize++]);
283 int blockSize = 0;
288 while(blockSize < 5 || retBlock[blockSize] != -1) blockSize++;
289 blockSize++;
290 storeBlock = (int *)SDL_malloc(blockSize * sizeof(int))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 145 int blockSize = cipher.getBlockSize();
146 int gapLen = blockSize - bufOff;
158 while (len > blockSize)
162 len -= blockSize;
163 inOff += blockSize;
176 int blockSize = cipher.getBlockSize();
183 while (bufOff < blockSize)
191 if (bufOff == blockSize)
  /external/chromium/net/disk_cache/
addr_unittest.cc 25 EXPECT_EQ(1024, addr2.BlockSize());
34 EXPECT_EQ(4096, addr3.BlockSize());
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/
hisser2.m 7 % blockSize = histogram over blocksize blocks
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
hisser2.m 7 % blockSize = histogram over blocksize blocks

Completed in 967 milliseconds

12 3 4 5 6 7 8 91011>>