Searched refs:blocksize (Results 76 - 100 of 300) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dopenfs.c43 bg = (fs->blocksize / sizeof (struct ext2_group_desc)) * i;
220 fs->blocksize = EXT2_BLOCK_SIZE(fs->super);
221 if (fs->blocksize == 0) {
231 if (block_size != fs->blocksize) {
237 * Set the blocksize to the filesystem's blocksize.
239 io_channel_set_blksize(fs->io, fs->blocksize);
268 retval = ext2fs_get_mem(fs->desc_blocks * fs->blocksize,
275 groups_per_block = fs->blocksize / sizeof(struct ext2_group_desc);
288 dest += fs->blocksize;
[all...]
H A Dbmap.c69 block_buf + fs->blocksize, &b);
101 addr_per_block = (blk_t) fs->blocksize >> 2;
121 addr_per_block = (blk_t) fs->blocksize >> 2;
153 addr_per_block = (blk_t) fs->blocksize >> 2;
156 retval = ext2fs_get_mem(fs->blocksize * 2, &buf);
257 inode->i_blocks += (blocks_alloc * fs->blocksize) / 512;
H A Dmkdir.c86 inode.i_blocks = fs->blocksize / 512;
90 inode.i_size = fs->blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/
H A Docfs2_fs.h41 * blocksize of 2K, it is 4096 bytes into disk.
53 * Blocks cannot be bigger than clusters, so the maximum blocksize is the
423 on the blocksize. OCFS2's maximum
424 blocksize, 4K, requires 16 parity bits,
544 * 255 * sizeof(__le16) == 512B, within the 512B block minimum blocksize.
623 * our smallest blocksize, which is 512 bytes. To ensure this,
625 * will not be available on the smallest blocksize.
1226 static inline struct ocfs2_disk_dqtrailer *ocfs2_block_dqtrailer(int blocksize, argument
1230 ptr += blocksize - OCFS2_QBLK_RESERVED_SPACE;
1435 static inline int ocfs2_fast_symlink_chars(int blocksize) argument
1440 ocfs2_max_inline_data_with_xattr(int blocksize, struct ocfs2_dinode *di) argument
1452 ocfs2_extent_recs_per_inode(int blocksize) argument
1462 ocfs2_chain_recs_per_inode(int blocksize) argument
1472 ocfs2_extent_recs_per_eb(int blocksize) argument
1482 ocfs2_extent_recs_per_gd(int blocksize) argument
1492 ocfs2_local_alloc_size(int blocksize) argument
1502 ocfs2_group_bitmap_size(int blocksize, int suballocator, uint32_t feature_incompat) argument
1522 ocfs2_truncate_recs_per_inode(int blocksize) argument
1532 ocfs2_backup_super_blkno(int blocksize, int index) argument
1545 ocfs2_xattr_recs_per_xb(int blocksize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/test/
H A Dtest_seeking.sh94 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S- --output-name=tiny.flac noise8m32.raw || die "ERROR generating FLAC file"
95 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 -S- --output-name=small.flac noise.raw || die "ERROR generating FLAC file"
96 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S10x --output-name=tiny-s.flac noise8m32.raw || die "ERROR generating FLAC file"
97 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 -S10x --output-name=small-s.flac noise.raw || die "ERROR generating FLAC file"
139 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 --output-name=tiny.oga --ogg noise8m32.raw || die "ERROR generating Ogg FLAC file"
140 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 --output-name=small.oga --ogg noise.raw || die "ERROR generating Ogg FLAC file"
H A Dtest_streams.sh188 echo "Testing blocksize variations..."
190 for blocksize in 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ; do
192 if [ $lpc_order = 0 ] || [ $lpc_order -le $blocksize ] ; then
193 test_file noise8m32 1 8 "-8 -p -e -l $lpc_order --lax --blocksize=$blocksize $disable"
253 for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
254 if [ -z "$blocksize" ] || [ "$FLAC__TEST_LEVEL" -gt 0 ] ; then
255 test_file noise $channels $bps "-$opt $extras $blocksize $disable"
H A Dtest_bins.sh100 for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
101 test_file $binfile $channels $bps "-$opt $extras $blocksize $disable"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dflac.c107 /* blocksize */
110 "reserved blocksize code: 0\n");
113 fi->blocksize = get_bits(gb, 8) + 1;
115 fi->blocksize = get_bits(gb, 16) + 1;
117 fi->blocksize = ff_flac_blocksize_table[bs_code];
148 int ff_flac_get_max_frame_size(int blocksize, int ch, int bps) argument
160 count += (( 2*bps+1) * blocksize + 7) / 8;
162 count += ( ch*bps * blocksize + 7) / 8;
210 skip_bits(&gb, 16); /* skip min blocksize */
213 av_log(avctx, AV_LOG_WARNING, "invalid max blocksize
[all...]
H A Dvorbis_parser.c59 s->blocksize[0] = 1 << (buf[28] & 0xF);
60 s->blocksize[1] = 1 << (buf[28] >> 4);
199 s->previous_blocksize = s->blocksize[s->mode_blocksize[0]];
243 previous_blocksize = s->blocksize[flag];
245 current_blocksize = s->blocksize[s->mode_blocksize[mode]];
262 s->previous_blocksize = s->blocksize[0];
H A Dlpc.h51 int blocksize; member in struct:LPCContext
89 const int32_t *samples, int blocksize, int min_order,
101 int ff_lpc_init(LPCContext *s, int blocksize, int max_order,
H A Dmlpdsp.c30 int blocksize, int32_t *sample_buffer)
38 for (i = 0; i < blocksize; i++) {
27 mlp_filter_channel(int32_t *state, const int32_t *coeff, int firorder, int iirorder, unsigned int filter_shift, int32_t mask, int blocksize, int32_t *sample_buffer) argument
H A Droqvideoenc.c301 diff = eval_motion_dist(enc, j, i, MOTION, blocksize); \
309 static void motion_search(RoqContext *enc, int blocksize) argument
331 int max=(enc->width/blocksize)*enc->height/blocksize;
333 if (blocksize == 4) {
341 for (i=0; i<enc->height; i+=blocksize)
342 for (j=0; j<enc->width; j+=blocksize) {
344 blocksize);
348 if (blocksize == 4)
351 offset = (i/blocksize)*en
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext4/
H A Dnamei.c163 static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
167 struct dx_map_entry *offsets, int count, unsigned blocksize);
168 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
186 ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize) argument
189 ext4_rec_len_from_disk(p->rec_len, blocksize));
305 unsigned blocksize = dir->i_sb->s_blocksize; local
321 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
330 (space/bcount)*100/blocksize);
711 static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize, argument
719 while ((char *) de < base + blocksize) {
1110 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count, unsigned blocksize) argument
1133 dx_pack_dirents(char *base, unsigned blocksize) argument
1163 unsigned blocksize = dir->i_sb->s_blocksize; local
1270 unsigned int blocksize = dir->i_sb->s_blocksize; local
1347 unsigned blocksize; local
1441 unsigned blocksize; local
1629 unsigned int blocksize = dir->i_sb->s_blocksize; local
1791 unsigned int blocksize = dir->i_sb->s_blocksize; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dformat.c522 unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order) argument
526 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
527 blocksize,
532 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize) argument
535 while(!(blocksize & 1)) {
537 blocksize >>= 1;
542 unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order) argument
546 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
550 (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
551 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_orde
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dbuffer.c229 printk("device blocksize: %d\n", 1 << bd_inode->i_blkbits);
577 sector_t bblock, unsigned blocksize)
579 struct buffer_head *bh = __find_get_block(bdev, bblock + 1, blocksize);
1448 unsigned long blocksize, unsigned long b_state)
1452 head = alloc_page_buffers(page, blocksize, 1);
1552 const unsigned blocksize = 1 << inode->i_blkbits; local
1562 create_empty_buffers(page, blocksize,
1598 WARN_ON(bh->b_size != blocksize);
1759 unsigned blocksize, bbits; local
1767 blocksize
576 write_boundary_block(struct block_device *bdev, sector_t bblock, unsigned blocksize) argument
1447 create_empty_buffers(struct page *page, unsigned long blocksize, unsigned long b_state) argument
1841 unsigned blocksize; local
1993 unsigned block_start, block_end, blocksize; local
2040 unsigned int blocksize; local
2156 unsigned blocksize = 1 << inode->i_blkbits; local
2231 unsigned blocksize = 1 << inode->i_blkbits; local
2361 const unsigned blocksize = 1 << blkbits; local
2583 unsigned blocksize; local
2661 unsigned blocksize; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/shared/
H A Dnvram_rw.c187 int blocksize = nfl->blocksize; local
192 for (; off < nfl_boot_size(nfl); off += blocksize) {
196 len = blocksize;
257 uint32 blocksize; local
259 blocksize = nfl_info->blocksize;
260 off = blocksize;
261 for (; off < nfl_boot_size(nfl_info); off += blocksize) {
H A Dspiflash.c448 cmd[idx++] = (spifl->blocksize < (64 * 1024)) ?
451 cmd[idx++] = (spifl->blocksize < (64 * 1024)) ? SPI_SSE_CMD : SPI_SE_CMD;
597 mask = spifl->blocksize - 1;
602 if (byte || (len < spifl->blocksize)) {
750 spiflash.blocksize = 64 * 1024;
795 spiflash.blocksize = 4 * 1024;
863 spiflash.blocksize = 32 * 1024;
868 spiflash.blocksize = 64 * 1024;
884 spiflash.size = spiflash.blocksize * spiflash.numblocks;
934 name, spiflash.numblocks, spiflash.blocksize / 102
1187 uint blocksize = 0, mask, cur_offset, cur_length, cur_retlen, remainder; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dfile.c53 int blocksize; member in struct:FileContext
58 { "blocksize", "set I/O operation maximum block size", offsetof(FileContext, blocksize), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
63 { "blocksize", "set I/O operation maximum block size", offsetof(FileContext, blocksize), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
85 size = FFMIN(size, c->blocksize);
94 size = FFMIN(size, c->blocksize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_seektable.c115 const unsigned blocksize = frame->header.blocksize; local
117 const FLAC__uint64 frame_last_sample = frame_first_sample + (FLAC__uint64)blocksize - 1;
128 cd->seektable_template->points[i].frame_samples = blocksize;
141 cd->samples_written += blocksize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/storage/
H A Dalauda.c97 unsigned int blocksize; /* number of pages per block */ member in struct:alauda_media_info
443 MEDIA_INFO(us).blocksize = 1 << media_info->blockshift;
447 MEDIA_INFO(us).blockmask = MEDIA_INFO(us).blocksize - 1;
785 * (pagesize+64)*blocksize bytes in length.
804 (MEDIA_INFO(us).pagesize + 64) * MEDIA_INFO(us).blocksize,
826 unsigned int blocksize = MEDIA_INFO(us).blocksize; local
852 blocksize, blockbuffer);
856 memset(blockbuffer, 0, blocksize * (pagesize + 64));
864 for (i = 0; i < blocksize;
928 unsigned int blocksize = MEDIA_INFO(us).blocksize; local
1023 unsigned int blocksize = MEDIA_INFO(us).blocksize; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/include/
H A Dhndnand.h47 #define nfl_boot_size(nfl) ((((nfl)->blocksize >> 10) >= NFL_1M_BLOCK_SIZE) ? \
49 #define nfl_boot_os_size(nfl) ((((nfl)->blocksize >> 10) >= NFL_1M_BLOCK_SIZE) ? \
72 uint blocksize; /* Block size */ member in struct:hndnand
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Droqvideoenc.c298 diff = eval_motion_dist(enc, j, i, MOTION, blocksize); \
306 static void motion_search(RoqContext *enc, int blocksize) argument
328 int max=(enc->width/blocksize)*enc->height/blocksize;
330 if (blocksize == 4) {
338 for (i=0; i<enc->height; i+=blocksize)
339 for (j=0; j<enc->width; j+=blocksize) {
341 blocksize);
345 if (blocksize == 4)
348 offset = (i/blocksize)*en
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Ddeshake.h80 int blocksize; ///< Size of blocks to compare member in struct:__anon3350
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dmemp001.tcl119 proc file_create { fname nblocks blocksize } {
122 seek $fid [expr $i * $blocksize] start
125 seek $fid [expr $nblocks * $blocksize - 1]
134 if { [file size $fname] != $nblocks * $blocksize } {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dsmb.h36 __u16 blocksize; member in struct:smb_dskattr

Completed in 225 milliseconds

1234567891011>>