HomeSort by relevance Sort by last modified time
    Searched refs:blocksize (Results 201 - 225 of 418) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/e2fsprogs/lib/ext2fs/
bb_inode.c 76 retval = ext2fs_get_mem(fs->blocksize, &rec.block_buf);
79 memset(rec.block_buf, 0, fs->blocksize);
132 rec.bad_block_count * fs->blocksize);
block.c 68 limit = ctx->fs->blocksize >> 2;
157 limit = ctx->fs->blocksize >> 2;
243 limit = ctx->fs->blocksize >> 2;
363 limit = fs->blocksize >> 2;
373 retval = ext2fs_get_array(3, fs->blocksize, &ctx.ind_buf);
377 ctx.dind_buf = ctx.ind_buf + fs->blocksize;
378 ctx.tind_buf = ctx.dind_buf + fs->blocksize;
ext_attr.c 89 ext2fs_swap_ext_attr(buf, buf, fs->blocksize, 1);
116 retval = ext2fs_get_mem(fs->blocksize, &write_buf);
119 ext2fs_swap_ext_attr(write_buf, inbuf, fs->blocksize, 1);
164 retval = ext2fs_get_mem(fs->blocksize, &buf);
350 err = ext2fs_get_mem(fs->blocksize, &block_buf);
409 err = ext2fs_get_mem(fs->blocksize, &block_buf);
596 err = ext2fs_get_memzero(handle->fs->blocksize, &block_buf);
600 storage_size = handle->fs->blocksize -
845 err = ext2fs_get_mem(handle->fs->blocksize, &block_buf);
862 storage_size = handle->fs->blocksize
    [all...]
expanddir.c 132 inode.i_size += fs->blocksize;
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 80 int blocksize = util_format_get_blocksize(format); local
84 assert(blocksize > 0);
95 dst += dst_x * blocksize;
96 src += src_x * blocksize;
99 width *= blocksize;
159 int blocksize = desc->block.bits / 8; local
163 assert(blocksize > 0);
172 dst += dst_x * blocksize;
174 width_size = width * blocksize;
176 switch (blocksize) {
    [all...]
  /external/e2fsprogs/misc/
mk_hugefiles.c 295 retval = ext2fs_inode_size_set(fs, &inode, num * fs->blocksize);
336 extents_per_block = ((fs->blocksize -
426 (fs->blocksize / 512);
431 part_offset, fs->blocksize,
491 (0x80000000UL / fs->blocksize))
  /external/syslinux/core/fs/xfs/
xfs.c 145 xfs_bmdr_maxrecs(XFS_INFO(fs)->blocksize, 0));
352 info->blocksize = be32_to_cpu(sb->sb_blocksize);
399 xfs_debug("block_shift %u blocksize 0x%lX (%lu)", info->block_shift,
400 info->blocksize, info->blocksize);
405 BLOCK_SIZE(fs) = info->blocksize;
  /external/e2fsprogs/debugfs/
journal.c 124 struct buffer_head *getblk(kdev_t kdev, blk64_t blocknr, int blocksize)
127 int bufsize = sizeof(*bh) + kdev->k_fs->blocksize -
140 (unsigned long long) blocknr, blocksize, bh_count);
147 bh->b_size = blocksize;
316 journal->j_blocksize = fs->blocksize;
360 if ((pb.last_block + 1) * fs->blocksize <
429 io_channel_set_blksize(fs->journal_io, fs->blocksize);
434 start = ext2fs_journal_sb_start(fs->blocksize) - 1;
435 bh = getblk(dev_journal, start, fs->blocksize);
540 fs->blocksize-V1_SB_SIZE)
    [all...]
xattrs.c 230 err = ext2fs_get_mem(current_fs->blocksize, &buf);
233 buflen = fread(buf, 1, current_fs->blocksize, fp);
  /external/zopfli/src/zopfli/
deflate.c 592 size_t blocksize = inend - instart; local
603 ZopfliInitCache(blocksize, s.lmc);
630 blocksize, bp, out, outsize);
645 size_t blocksize = inend - instart; local
655 ZopfliInitCache(blocksize, s.lmc);
661 blocksize, bp, out, outsize);
676 size_t blocksize = inend - instart; local
677 unsigned short nlen = ~blocksize;
680 assert(blocksize < 65536); /* Non compressed blocks are max this size. */
690 ZOPFLI_APPEND_DATA(blocksize % 256, out, outsize)
    [all...]
  /frameworks/av/media/libstagefright/
FLACExtractor.cpp 673 unsigned blocksize = mWriteHeader.blocksize; local
674 if (blocksize == 0 || blocksize > getMaxBlockSize()) {
675 ALOGE("FLACParser::readBuffer write invalid blocksize %u", blocksize);
693 size_t bufferSize = blocksize * getChannels() * sizeof(short);
698 (*mCopy)(data, mWriteBuffer, blocksize, getChannels());
  /external/libjpeg-turbo/
tjunittest.c 190 int blocksize=8*sf.num/sf.denom; local
205 if(((row/blocksize)+(col/blocksize))%2==0)
233 if(((row/blocksize)+(col/blocksize))%2==0)
307 int blocksize=8*sf.num/sf.denom; local
314 if(((row/blocksize)+(col/blocksize))%2==0)
333 if(((row*vsf/blocksize)+(col*hsf/blocksize))%2==0
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
usb.c 409 int blocksize,packets; local
430 blocksize = 64;
432 blocksize = usb_drv_port_speed() ? USB_BLOCK_HIGH_SPEED_SIZE : 64;
434 packets = (len + blocksize - 1) / blocksize;
545 unsigned int blocksize = 0, data; local
558 blocksize = usb_drv_port_speed() ? USB_BLOCK_HIGH_SPEED_SIZE : 64;
559 packets = (len + blocksize - 1) / blocksize;
565 endpoints[ep].size = MAX_RX_PACKET * blocksize;
    [all...]
  /external/ImageMagick/coders/
djvu.c 148 #define BLOCKSIZE 65536
153 int blocksize = BLOCKSIZE;
154 char data[BLOCKSIZE];
158 while ((size = (size_t) ReadBlob(image,(size_t) blocksize,data)) == blocksize) {
171 size_t blocksize = BLOCKSIZE;
172 unsigned char data[BLOCKSIZE];
179 && (size = (size_t) ReadBlob(image,(size_t) blocksize,data)) == blocksize)
168 size_t blocksize = BLOCKSIZE; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_texture.c 292 uint32_t blocksize,
312 LEN(4); /* blocksize */
334 WRITE(4, uint32_t, blocksize); /* blocksize */
359 uint32_t blocksize,
375 LEN(4); /* blocksize */
392 WRITE(4, uint32_t, blocksize); /* blocksize */
585 READ(4, uint32_t, blocksize); /* blocksize */
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_miptree.c 242 const unsigned blocksize = util_format_get_blocksize(pt->format); local
253 mt->level[0].pitch = align(pt->width0 * blocksize, pitch_align);
268 const unsigned blocksize = util_format_get_blocksize(pt->format); local
277 mt->level[0].pitch = align(pt->width0 * blocksize, 64);
291 const unsigned blocksize = util_format_get_blocksize(pt->format); local
317 lvl->pitch = align(nbx * blocksize, tsx);
  /device/huawei/angler/
releasetools.py 248 blocksize = 4096
250 partial_tf = len(tf.data) % blocksize
251 partial_sf = len(sf.data) % blocksize
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ftpmirror.py 338 def __init__(self, fp, blocksize, outfp):
342 self.blocksize = blocksize
346 hashes = int(self.bytes) / self.blocksize
  /external/valgrind/coregrind/m_debuginfo/
readpdb.c 317 unsigned int blocksize; // 0x400 typical; also 0x800, 0x1000 member in struct:PDB_JG_HEADER
975 unsigned blocksize, nBlocks; local
986 blocksize = pdb->u.ds.header->block_size;
987 nBlocks = (size + blocksize - 1) / blocksize;
988 buffer = ML_(dinfo_zalloc)("di.readpe.pdr.1", nBlocks * blocksize);
990 VG_(memcpy)( buffer + i * blocksize,
991 pdb->pdbimage + block_list[i] * blocksize,
992 blocksize );
1001 unsigned blocksize, nBlocks local
1063 unsigned blocksize = pdb->u.jg.header->blocksize; local
    [all...]
  /external/flac/libFLAC/
stream_decoder.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 384 def retrbinary(self, cmd, callback, blocksize=8192, rest=None):
391 blocksize: The maximum number of bytes to read from the
401 data = conn.recv(blocksize)
438 def storbinary(self, cmd, fp, blocksize=8192, callback=None, rest=None):
444 blocksize: The maximum data size to read from fp and send over
456 buf = fp.read(blocksize)
680 def retrbinary(self, cmd, callback, blocksize=8192, rest=None):
685 data = conn.recv(blocksize)
720 def storbinary(self, cmd, fp, blocksize=8192, callback=None, rest=None):
725 buf = fp.read(blocksize)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NodeVector.java 71 * @param blocksize Size of blocks to allocate
73 public NodeVector(int blocksize)
75 m_blocksize = blocksize;
  /external/e2fsprogs/e2fsck/
readahead.c 212 EXT2_INODE_SIZE(fs->super) / fs->blocksize);
245 guess = 2ULL * fs->blocksize * fs->inode_blocks_per_group;
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceCuda.h 317 #define LAUNCH_CUDA_KERNEL(kernel, gridsize, blocksize, sharedmem, device, ...) \
318 (kernel) <<< (gridsize), (blocksize), (sharedmem), (device).stream() >>> (__VA_ARGS__); \
  /external/flac/include/FLAC/
format.h 309 /**< The residual signal, length == (blocksize minus order) samples. */
335 /**< The residual signal, length == (blocksize minus order) samples. */
412 unsigned blocksize; member in struct:__anon19332
    [all...]

Completed in 1521 milliseconds

1 2 3 4 5 6 7 891011>>