HomeSort by relevance Sort by last modified time
    Searched refs:blocksize (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/e2fsprogs/misc/
mke2fs.conf 3 blocksize = 4096
21 blocksize = 1024
26 blocksize = 1024
35 blocksize = -1
39 blocksize = -1
42 blocksize = 4096
  /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);
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_process.c 38 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) ||
39 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) {
45 while (inlen >= (unsigned long)f9->blocksize) {
46 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) {
50 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) {
53 in += f9->blocksize;
54 inlen -= f9->blocksize;
60 if (f9->buflen == f9->blocksize) {
62 for (x = 0; x < f9->blocksize; x++)
    [all...]
f9_done.c 37 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) ||
38 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) {
46 for (x = 0; x < f9->blocksize; x++) {
61 for (x = 0; x < f9->blocksize && (unsigned long)x < *outlen; x++) {
  /external/e2fsprogs/e2fsck/
extend.c 21 fprintf(stderr, _("%s: %s filename nblocks blocksize\n"),
30 int nblocks, blocksize; local
40 blocksize = strtoul(argv[3], 0, 0);
47 block = malloc(blocksize);
50 blocksize);
53 memset(block, 0, blocksize);
60 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
65 ret = read(fd, block, blocksize);
70 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
75 ret = write(fd, block, blocksize);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
hmac.py 25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses. variable in class:HMAC
54 blocksize = self.inner.block_size
55 if blocksize < 16:
56 # Very low blocksize, most likely a legacy value like
59 'default of %d.' % (blocksize, self.blocksize),
61 blocksize = self.blocksize
64 'Assuming %d.' % (self.blocksize),
66 blocksize = self.blocksiz
    [all...]
sha.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
hmac.py 25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses. variable in class:HMAC
54 blocksize = self.inner.block_size
55 if blocksize < 16:
56 # Very low blocksize, most likely a legacy value like
59 'default of %d.' % (blocksize, self.blocksize),
61 blocksize = self.blocksize
64 'Assuming %d.' % (self.blocksize),
66 blocksize = self.blocksiz
    [all...]
sha.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
  /external/dropbear/libtomcrypt/src/mac/xcbc/
xcbc_process.c 41 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher].block_length) || (xcbc->blocksize < 0) ||
42 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) {
48 while (inlen > (unsigned long)xcbc->blocksize) {
49 for (x = 0; x < xcbc->blocksize; x += sizeof(LTC_FAST_TYPE)) {
53 in += xcbc->blocksize;
54 inlen -= xcbc->blocksize;
60 if (xcbc->buflen == xcbc->blocksize) {
xcbc_done.c 37 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher].block_length) || (xcbc->blocksize < 0) ||
38 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) {
43 if (xcbc->buflen == xcbc->blocksize) {
45 for (x = 0; x < xcbc->blocksize; x++) {
51 for (x = 0; x < xcbc->blocksize; x++) {
61 for (x = 0; x < xcbc->blocksize && (unsigned long)x < *outlen; x++) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_rect.c 58 int blocksize = util_format_get_blocksize(format); local
62 assert(blocksize > 0);
73 dst += dst_x * blocksize;
74 src += src_x * blocksize;
77 width *= blocksize;
103 int blocksize = desc->block.bits / 8; local
107 assert(blocksize > 0);
116 dst += dst_x * blocksize;
118 width_size = width * blocksize;
120 switch (blocksize) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_rect.c 58 int blocksize = util_format_get_blocksize(format); local
62 assert(blocksize > 0);
73 dst += dst_x * blocksize;
74 src += src_x * blocksize;
77 width *= blocksize;
103 int blocksize = desc->block.bits / 8; local
107 assert(blocksize > 0);
116 dst += dst_x * blocksize;
118 width_size = width * blocksize;
120 switch (blocksize) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
memory_pool.c 55 unsigned int blocksize = pool->total_allocated; local
58 if (!blocksize)
59 blocksize = 2*POOL_LARGE_ALLOC;
61 newblock = (struct memory_block*)malloc(blocksize);
66 pool->end = ((unsigned char*)newblock) + blocksize;
67 pool->total_allocated += blocksize;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.c 55 unsigned int blocksize = pool->total_allocated; local
58 if (!blocksize)
59 blocksize = 2*POOL_LARGE_ALLOC;
61 newblock = (struct memory_block*)malloc(blocksize);
66 pool->end = ((unsigned char*)newblock) + blocksize;
67 pool->total_allocated += blocksize;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
HMAC.java 30 int blocksize = 64; local
32 k_xor_ipad = new byte[blocksize];
33 k_xor_opad = new byte[blocksize];
35 if (key.length > blocksize)
46 for (int i = 0; i < blocksize; i++)
  /external/e2fsprogs/lib/ext2fs/
imager.c 43 static int check_zero_block(char *buf, int blocksize)
46 int left = blocksize;
69 buf = malloc(fs->blocksize * BUF_BLOCKS);
94 if (check_zero_block(cp, fs->blocksize)) {
98 cp += fs->blocksize;
99 lseek(fd, fs->blocksize, SEEK_CUR);
104 if (check_zero_block(cp + d*fs->blocksize, fs->blocksize))
108 actual = write(fd, cp, fs->blocksize * d);
113 if (actual != (ssize_t) (fs->blocksize * d))
    [all...]
dir_iterate.c 32 if (fs->blocksize < 65536)
35 *rec_len = fs->blocksize;
45 if ((len > fs->blocksize) || (fs->blocksize > (1 << 18)) || (len & 3))
51 if (len == fs->blocksize) {
52 if (fs->blocksize == 65536)
78 (offset <= fs->blocksize - DIRENT_MIN_LENGTH)) {
99 int blocksize,
118 retval = ext2fs_get_mem(fs->blocksize, &ctx.buf);
137 int blocksize,
146 int blocksize, char *buf, void *priv_data) variable
    [all...]
  /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/e2fsprogs/debugfs/
unused.c 47 for (i=0; i < current_fs->blocksize; i++)
50 if (i >= current_fs->blocksize)
54 for (i=0; i < current_fs->blocksize; i++)
  /external/dropbear/
packet.c 99 unsigned char blocksize; local
102 blocksize = ses.keys->recv_algo_crypt->blocksize;
104 if (ses.readbuf == NULL || ses.readbuf->len < blocksize) {
105 /* In the first blocksize of a packet */
107 /* Read the first blocksize of the packet, so we can decrypt it and
112 * a whole blocksize and should exit */
150 * length. Only called during the first BLOCKSIZE of a packet. */
155 unsigned char blocksize; local
159 blocksize = ses.keys->recv_algo_crypt->blocksize
199 blocksize); local
229 unsigned char blocksize; local
413 unsigned char blocksize, macsize; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 73 * @param blocksize Size of block to allocate
75 public StringToIntTable(int blocksize)
78 m_blocksize = blocksize;
79 m_mapSize = blocksize;
80 m_map = new String[blocksize];
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringToIntTable.java 66 * @param blocksize Size of block to allocate
68 public StringToIntTable(int blocksize)
71 m_blocksize = blocksize;
72 m_mapSize = blocksize;
73 m_map = new String[blocksize];

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011