Searched refs:blocksize (Results 176 - 200 of 300) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_seeking/
H A Dmain.c204 printf("frame@%I64u(%u)... ", frame->header.number.sample_number, frame->header.blocksize);
206 printf("frame@%llu(%u)... ", (unsigned long long)frame->header.number.sample_number, frame->header.blocksize);
214 for (i = (unsigned)frame->header.number.sample_number, j = 0; j < frame->header.blocksize; i++, j++)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/udf/
H A Dinode.c541 if the extent is not a multiple of the blocksize, round up */
704 unsigned long blocksize = inode->i_sb->s_blocksize; local
712 blocksize - 1) >> blocksize_bits;
749 blocksize;
865 unsigned long blocksize = inode->i_sb->s_blocksize; local
878 blocksize - 1) >> blocksize_bits)))) {
882 blocksize - 1) & ~UDF_EXTENT_LENGTH_MASK) {
887 ~(blocksize - 1);
891 blocksize;
901 blocksize
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext4/
H A Dsuper.c2564 int blocksize; local
2599 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
2600 if (!blocksize) {
2601 ext4_msg(sb, KERN_ERR, "unable to set blocksize");
2609 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
2611 offset = do_div(logical_sb_block, blocksize);
2714 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2716 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2717 blocksize > EXT4_MAX_BLOCK_SIZE) {
2719 "Unsupported filesystem blocksize
3298 int hblock, blocksize; local
[all...]
H A Dmove_extent.c802 unsigned long blocksize = orig_inode->i_sb->s_blocksize; local
847 tmp_data_size = orig_inode->i_size & (blocksize - 1);
850 * blocksize. So we set appropriate value.
853 tmp_data_size = blocksize;
954 unsigned int blocksize = 1 << blkbits; local
1017 donor_blocks = (donor_inode->i_size + blocksize - 1) >> blkbits;
1040 orig_blocks = (orig_inode->i_size + blocksize - 1) >> blkbits;
1169 * (To easily handle blocksize != pagesize case, the offset for the
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/isofs/
H A Drock.c84 int blocksize = 1 << rs->inode->i_blkbits; local
90 if ((unsigned)rs->cont_offset > blocksize - min_de_size ||
91 (unsigned)rs->cont_size > blocksize ||
92 (unsigned)(rs->cont_offset + rs->cont_size) > blocksize) {
H A Dinode.c153 unsigned int blocksize; member in struct:iso9660_options
370 popt->blocksize = 1024;
479 popt->blocksize = n;
578 * First of all, get the hardware blocksize for this device.
579 * If we don't know what it is, or the hardware blocksize is
580 * larger than the blocksize the user specified, then use
586 opt.blocksize = sb_min_blocksize(s, opt.blocksize);
704 if (orig_zonesize < opt.blocksize)
752 * we may need to change the device blocksize, an
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/linux-2.6/
H A Dxfs_ioctl32.h187 __u32 blocksize; /* filesystem (data) block size */ member in struct:compat_xfs_fsop_geom_v1
H A Dxfs_buf.c104 * For pages in filesystems where the blocksize is smaller than the
295 size_t blocksize = bp->b_target->bt_bsize; local
355 if (blocksize >= PAGE_CACHE_SIZE) {
1149 unsigned int blocksize = bp->b_target->bt_bsize; local
1164 } else if (blocksize >= PAGE_CACHE_SIZE) {
1191 unsigned int blocksize = bp->b_target->bt_bsize; local
1220 (blocksize >= PAGE_CACHE_SIZE)) {
1505 unsigned int blocksize,
1509 btp->bt_bsize = blocksize;
1549 unsigned int blocksize,
1503 xfs_setsize_buftarg_flags( xfs_buftarg_t *btp, unsigned int blocksize, unsigned int sectorsize, int verbose) argument
1547 xfs_setsize_buftarg( xfs_buftarg_t *btp, unsigned int blocksize, unsigned int sectorsize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_attr_leaf.h263 int xfs_attr_leaf_newentsize(int namelen, int valuelen, int blocksize,
H A Dxfs_fs.h160 __u32 blocksize; /* filesystem (data) block size */ member in struct:xfs_fsop_geom_v1
186 __u32 blocksize; /* filesystem (data) block size */ member in struct:xfs_fsop_geom
H A Dxfs_attr_leaf.c1322 xfs_da_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1323 xfs_da_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1354 xfs_da_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1355 xfs_da_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1405 * GROT: Is this really necessary? With other than a 512 byte blocksize,
1442 state->blocksize, NULL);
1444 lastdelta = state->blocksize;
1457 state->blocksize, NULL);
1496 state->blocksize, NULL);
1542 if (bytes > (state->blocksize >>
2287 xfs_attr_leaf_newentsize(int namelen, int valuelen, int blocksize, int *local) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Dismindex.c81 int blocksize; member in struct:Track
363 track->blocksize = 4;
367 track->blocksize = st->codec->block_align;
519 track->channels, track->blocksize, track->tag);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/c/decode/file/
H A Dmain.c149 for(i = 0; i < frame->header.blocksize; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/cpp/decode/file/
H A Dmain.cpp152 for(i = 0; i < frame->header.blocksize; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dplugin.c436 unsigned written_time_last = 0, bh_index_last_w = 0, bh_index_last_o = BITRATE_HIST_SIZE, blocksize = 1; local
457 blocksize = sample_buffer_last_ - sample_buffer_first_ - s;
482 decode_position = decode_position_frame - (double)(sample_buffer_last_ - sample_buffer_first_) * (double)(decode_position_frame - decode_position_frame_last) / (double)blocksize;
596 const unsigned channels = stream_data->channels, wide_samples = frame->header.blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/tandem/
H A Dtanunz.c232 short maxext, filecode, blocksize; local
277 blocksize = znsk_attr->block;
295 blocksize = TANDEM_BLOCKSIZE;
300 err = (SETMODE (fnum, SET_FILE_BUFFERSIZE, blocksize) != CCE);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dflac_parser.c298 != header_fi->blocksize) &&
313 expected_sample_num += curr->fi.blocksize;
392 * bps, sample rate, channels, but not decorrelation mode, or blocksize,
461 fpc->avctx->frame_size = header->fi.blocksize;
487 avctx->frame_size = fi.blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A De_aes.c441 # define BLOCK_CIPHER_generic(nid,keylen,blocksize,ivlen,nmode,mode,MODE,flags) \
443 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
451 nid##_##keylen##_##nmode,blocksize, \
462 # define BLOCK_CIPHER_custom(nid,keylen,blocksize,ivlen,mode,MODE,flags) \
464 nid##_##keylen##_##mode,blocksize, \
473 nid##_##keylen##_##mode,blocksize, \
810 # define BLOCK_CIPHER_generic(nid,keylen,blocksize,ivlen,nmode,mode,MODE,flags) \
812 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
820 nid##_##keylen##_##nmode,blocksize, \
831 # define BLOCK_CIPHER_custom(nid,keylen,blocksize,ivle
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A De_aes.c441 # define BLOCK_CIPHER_generic(nid,keylen,blocksize,ivlen,nmode,mode,MODE,flags) \
443 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
451 nid##_##keylen##_##nmode,blocksize, \
462 # define BLOCK_CIPHER_custom(nid,keylen,blocksize,ivlen,mode,MODE,flags) \
464 nid##_##keylen##_##mode,blocksize, \
473 nid##_##keylen##_##mode,blocksize, \
810 # define BLOCK_CIPHER_generic(nid,keylen,blocksize,ivlen,nmode,mode,MODE,flags) \
812 nid##_##keylen##_##nmode,blocksize,keylen/8,ivlen, \
820 nid##_##keylen##_##nmode,blocksize, \
831 # define BLOCK_CIPHER_custom(nid,keylen,blocksize,ivle
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/hfsplus_journal/
H A Djournal.c270 int start, len, blocksize; local
276 blocksize = sb->s_blocksize;
277 start = (int)(jnl->jh_offset)/blocksize;
278 len = (int)(jh->size + jnl->jh_offset)/blocksize;
280 dprint(DBG_JOURNAL, "start: %d, len: %d, blocksize: %d, journal_maxblock: %d\n", start, len, blocksize, jnl->journal_maxblock);
281 journal = hfsplus_jbd_init_dev(sb->s_bdev, sb->s_bdev, start, len, blocksize);
641 dprint(DBG_JREPLAY, "[i:%x] bnum: %llx, bsize: %x, bufsize: %x, blocksize: %lx\n", i, blhdr->binfo[i].bnum, blhdr->binfo[i].bsize, bufsize, sb->s_blocksize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext3/
H A Dinode.c628 int blocksize = inode->i_sb->s_blocksize; local
662 memset(bh->b_data, 0, blocksize);
1119 unsigned blocksize = head->b_size; local
1128 block_end = block_start + blocksize;
1904 unsigned blocksize, iblock, length, pos; local
1909 blocksize = inode->i_sb->s_blocksize;
1910 length = blocksize - (offset & (blocksize - 1));
1914 create_empty_buffers(page, blocksize, 0);
1918 pos = blocksize;
2387 unsigned blocksize = inode->i_sb->s_blocksize; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/atm/
H A Dueagle-atm.c742 u16 blocksize; local
776 blocksize = get_unaligned_le16(dsp + pp);
780 if (pp + blocksize > len)
783 pp += blocksize;
924 u16 blockaddr, blocksize; local
965 blocksize = get_unaligned_le16(p);
968 bi.wSize = cpu_to_le16(blocksize);
977 if (uea_idma_write(sc, p, blocksize))
980 p += blocksize;
1006 unsigned int blocksize; local
1019 blockno, pageno, blocksize, local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/p54/
H A Deeprom.c726 size_t eeprom_size = 0x2020, offset = 0, blocksize, maxblocksize; local
741 blocksize = min(eeprom_size, maxblocksize);
743 offset, blocksize);
747 offset += blocksize;
748 eeprom_size -= blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dext2fs.h166 unsigned int blocksize; member in struct:struct_ext2_filsys
587 int blocksize,
616 int blocksize,
628 int blocksize,
684 extern errcode_t ext2fs_get_device_size(const char *file, int blocksize,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/host/
H A Dcb710-mmc.c215 size_t count, size_t blocksize)
219 ((count - 1) << 16)|(blocksize - 1));
222 count, count == 1 ? "" : "s", blocksize);
214 cb710_mmc_set_transfer_size(struct cb710_slot *slot, size_t count, size_t blocksize) argument

Completed in 628 milliseconds

1234567891011>>