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

1 2 3 4 5 6

  /prebuilts/gdb/darwin-x86/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
sha.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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
sha.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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
sha.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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
md5.py 13 blocksize = 1 # legacy value (wrong in any useful sense) variable
sha.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...]
  /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...]
  /system/extras/verity/fec/tests/
fec.py 23 blocksize = 4096 variable
36 blocks = int(math.ceil(float(size) / blocksize))
39 max_errors = int(math.floor(rounds * roots / 2)) * blocksize
81 corrupt(temp_cor.name, 0, blocksize)
  /external/flac/libFLAC/include/protected/
stream_decoder.h 48 unsigned blocksize; /* in samples (per channel) */ member in struct:FLAC__StreamDecoderProtected
  /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/
link.c 28 unsigned int blocksize; member in struct:link_struct
35 int blocksize,
58 if ((offset + (int) curr_rec_len < blocksize - 8) &&
60 (offset + (int) curr_rec_len + (int) next->rec_len <= blocksize)) {
133 ls.blocksize = fs->blocksize;
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/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...]
unbwt.c 90 saint_t err, blocksize, needclose = 3; local
146 /* Read the blocksize. */
147 if(read_int(fp, &blocksize) != 4) {
153 /* Allocate 5blocksize bytes of memory. */
154 T = (sauchar_t *)malloc(blocksize * sizeof(sauchar_t));
155 A = (saidx_t *)malloc(blocksize * sizeof(saidx_t));
161 fprintf(stderr, "UnBWT (blocksize %" PRIdSAINT_T ") ... ", blocksize);
164 /* Read blocksize bytes of data. */
165 if((m != 4) || ((m = fread(T, sizeof(sauchar_t), blocksize, fp)) == 0))
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
allocator.h 72 const size_t BLOCKSIZE=8192;
85 int blocksize; member in class:cvflann::PooledAllocator
95 PooledAllocator(int blockSize = BLOCKSIZE)
97 blocksize = blockSize;
125 int blockSize;
141 blockSize = (size + sizeof(void*) + (WORDSIZE-1) > BLOCKSIZE) ?
142 size + sizeof(void*) + (WORDSIZE-1) : BLOCKSIZE;
    [all...]
  /development/ndk/platforms/android-3/include/linux/
smb.h 35 __u16 blocksize; member in struct:smb_dskattr
  /external/e2fsprogs/debugfs/
dump.c 110 unsigned int got, blocksize = current_fs->blocksize; local
120 retval = ext2fs_get_mem(blocksize, &buf);
126 retval = ext2fs_file_read(e2_file, buf, blocksize, &got);
309 int blocksize EXT2FS_ATTR((unused)),

Completed in 1059 milliseconds

1 2 3 4 5 6