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

1 2 3 4 5 6 7 8 91011>>

  /external/flac/libFLAC/include/private/
format.h 38 unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order);
39 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize);
40 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/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...]
  /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/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;
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 57 long n, max, mul, blocksize; local
66 if ((p = getenv("BLOCKSIZE")) != NULL && *p != '\0') {
94 fmterr: warnx("%s: unknown blocksize", p);
101 warnx("maximum blocksize is %ldG", MAXB / GB);
104 if ((blocksize = n * mul) < 512) {
105 underflow: warnx("%s: minimum blocksize is 512", p);
107 blocksize = n = 512;
110 blocksize = n = 512;
116 *blocksizep = blocksize;
  /external/e2fsprogs/lib/ext2fs/
imager.c 43 static int check_zero_block(char *buf, int blocksize)
46 int left = blocksize;
70 buf = malloc(fs->blocksize * BUF_BLOCKS);
95 if (check_zero_block(cp, fs->blocksize)) {
99 cp += fs->blocksize;
100 r = lseek(fd, fs->blocksize, SEEK_CUR);
109 if (check_zero_block(cp + d*fs->blocksize, fs->blocksize))
113 actual = write(fd, cp, fs->blocksize * d);
118 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...]
getsize.c 72 errcode_t ext2fs_get_device_size(const char *file, int blocksize,
96 *retblocks = pi.PartitionLength.QuadPart / blocksize;
106 gi.Cylinders.QuadPart / blocksize;
110 *retblocks = filesize.QuadPart / blocksize;
116 *retblocks = filesize / blocksize;
141 errcode_t ext2fs_get_device_size2(const char *file, int blocksize,
154 *retblocks = size64 / (blocksize / 512);
172 *retblocks = size64 / blocksize;
183 *retblocks = size / (blocksize / 512);
194 *retblocks = this_floppy.size / (blocksize / 512)
    [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/libdivsufsort/examples/
bwt.c 88 saint_t i, blocksize = 32, needclose = 3; local
98 blocksize = atoi(argv[i + 1]);
99 if(blocksize < 0) { blocksize = 1; }
100 else if(512 < blocksize) { blocksize = 512; }
103 blocksize <<= 20;
164 if((blocksize == 0) || (n < blocksize)) { blocksize = (saidx_t)n;
    [all...]
  /bionic/libc/kernel/uapi/linux/
cryptouser.h 69 unsigned int blocksize; member in struct:crypto_report_hash
75 unsigned int blocksize; member in struct:crypto_report_cipher
84 unsigned int blocksize; member in struct:crypto_report_blkcipher
94 unsigned int blocksize; member in struct:crypto_report_aead
  /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 866 milliseconds

1 2 3 4 5 6 7 8 91011>>