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

1 2 3 4 5 6 78 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
videoreader.py 167 blocksize = 0
172 blocksize = (bps/8)*nch
181 ## channels, encoding, blocksize=blocksize, fpb=fpb, bps=bps)
182 return channels, encoding, blocksize, fpb, bps
  /external/e2fsprogs/debugfs/
icheck.c 81 block_buf = malloc(current_fs->blocksize * 3);
ls.c 48 int blocksize EXT2FS_ATTR((unused)),
  /external/e2fsprogs/e2fsck/
pass4.c 148 fs->blocksize, "bad_inode buffer");
  /external/e2fsprogs/resize/
online.c 111 fs->device_name, *new_size, fs->blocksize / 1024);
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSetDTM.java 78 * @param blocksize Size of blocks to allocate
81 public NodeSetDTM(int blocksize, int dummy, DTMManager dtmManager)
83 super(blocksize);
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_mac.h 322 blocksize; member in struct:__anon19192
356 blocksize; member in struct:__anon19193
  /external/e2fsprogs/misc/
tune2fs.c 187 fs->blocksize, io_ptr, &jfs);
527 fs->blocksize, io_ptr, &jfs);
1103 retval = ext2fs_get_mem(fs->blocksize, &buf);
1212 retval = ext2fs_get_mem(fs->blocksize * 3, &block_buf);
1313 old_itable_size = fs->inode_blocks_per_group * fs->blocksize;
1319 fs->blocksize);
1321 new_itable_size = new_ino_blks_per_grp * fs->blocksize;
    [all...]
dumpe2fs.c 54 "[-o blocksize=<num>] device\n"), program_name);
354 size = inode.i_blocks / (fs->blocksize / 1024);
411 int *blocksize)
452 } else if (strcmp(token, "blocksize") == 0 ||
459 *blocksize = strtoul(arg, &p, 0);
462 _("Invalid blocksize parameter: %s\n"),
479 "\tblocksize=<blocksize>\n"),
  /external/libvorbis/lib/
vorbisenc.c 522 long blocksize=ci->blocksizes[block]>>1; local
529 f->n=freq/nyq*blocksize;
569 r->end=(int)((freq/nyq*blocksize*ch)/r->grouping+.9)* /* round up only if we're well past */
571 /* the blocksize and grouping may disagree at the end */
572 if(r->end>blocksize*ch)r->end=blocksize*ch/r->grouping*r->grouping;
576 r->end=(int)((freq/nyq*blocksize)/r->grouping+.9)* /* round up only if we're well past */
578 /* the blocksize and grouping may disagree at the end */
579 if(r->end>blocksize)r->end=blocksize/r->grouping*r->grouping
    [all...]
  /external/stressapptest/src/
pattern.cc 259 int blocksize = 4096; local
260 int count = blocksize / sizeof i;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
nfs_prot.x 121 unsigned blocksize; /* preferred block size */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nfs_prot.x 121 unsigned blocksize; /* preferred block size */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nfs_prot.x 121 unsigned blocksize; /* preferred block size */
  /external/chromium/net/tools/flip_server/
balsa_headers.cc 196 BalsaBuffer::BalsaBuffer(size_t blocksize) :
197 blocksize_(blocksize), can_write_to_contiguous_buffer_(true) {
205 BalsaBuffer::BufferBlock BalsaBuffer::AllocCustomBlock(size_t blocksize) {
206 return BufferBlock(new char[blocksize], blocksize, blocksize);
    [all...]
balsa_headers.h 176 size_t blocksize() const { return blocksize_; } function in class:net::BalsaBuffer
184 explicit BalsaBuffer(size_t blocksize);
188 BufferBlock AllocCustomBlock(size_t blocksize);
    [all...]
  /external/chromium_org/net/tools/flip_server/
balsa_headers.cc 210 BalsaBuffer::BalsaBuffer(size_t blocksize) :
211 blocksize_(blocksize), can_write_to_contiguous_buffer_(true) {
219 BalsaBuffer::BufferBlock BalsaBuffer::AllocCustomBlock(size_t blocksize) {
220 return BufferBlock(new char[blocksize], blocksize, blocksize);
    [all...]
balsa_headers.h 176 size_t blocksize() const { return blocksize_; } function in class:net::BalsaBuffer
184 explicit BalsaBuffer(size_t blocksize);
188 BufferBlock AllocCustomBlock(size_t blocksize);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2fs.h 205 unsigned int blocksize; member in struct:struct_ext2_filsys
786 int blocksize,
821 int blocksize,
833 int blocksize,
948 extern errcode_t ext2fs_get_device_size(const char *file, int blocksize,
950 extern errcode_t ext2fs_get_device_size2(const char *file, int blocksize,
    [all...]
extent.c 262 handle->inode->i_size + (fs->blocksize - 1))
435 retval = ext2fs_get_mem(handle->fs->blocksize,
444 memset(newpath->buf, 0, handle->fs->blocksize);
455 retval = ext2fs_extent_header_verify(eh, handle->fs->blocksize);
922 block_buf = malloc(handle->fs->blocksize);
952 neweh->eh_max = ext2fs_cpu_to_le16((handle->fs->blocksize -
1032 handle->inode->i_blocks += handle->fs->blocksize / 512;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_deque.py 527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
530 check(deque(), basesize + blocksize)
531 check(deque('a'), basesize + blocksize)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_deque.py 527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
530 check(deque(), basesize + blocksize)
531 check(deque('a'), basesize + blocksize)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)
  /external/chromium_org/tools/
bisect-builds.py 280 def ReportHook(blocknum, blocksize, totalsize):
284 size = blocknum * blocksize
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 171 scene->zsbuf.blocksize * x * TILE_VECTOR_HEIGHT);
lp_scene.h 139 unsigned blocksize; member in struct:lp_scene::__anon14535

Completed in 614 milliseconds

1 2 3 4 5 6 78 91011