Searched refs:block (Results 126 - 150 of 638) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/
H A DMakefile8 obj-y += cio/ block/ char/ crypto/ net/ scsi/
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ufs/
H A Dutil.h294 * Extract the bits for a block from a map inside ufs_buffer_head
444 #define ubh_isblockclear(ubh,begin,block) (!_ubh_isblockset_(uspi,ubh,begin,block))
446 #define ubh_isblockset(ubh,begin,block) _ubh_isblockset_(uspi,ubh,begin,block)
448 struct ufs_buffer_head * ubh, unsigned begin, unsigned block)
452 return (*ubh_get_addr (ubh, begin + block) == 0xff);
454 return (*ubh_get_addr (ubh, begin + (block >> 1)) == (0x0f << ((block & 0x01) << 2)));
456 return (*ubh_get_addr (ubh, begin + (block >>
447 _ubh_isblockset_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
464 _ubh_clrblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
484 _ubh_setblock_(struct ufs_sb_private_info * uspi, struct ufs_buffer_head * ubh, unsigned begin, unsigned block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsquashfs_fs_sb.h29 long long block; member in struct:squashfs_cache
36 long long block; member in struct:squashfs_fragment_cache
H A Dbuffer_head.h52 * Historically, a buffer_head was used to map a single block
54 * filesystem and block layers. Nowadays the basic I/O unit
55 * is the bio, and buffer_heads are used for extracting block
65 sector_t b_blocknr; /* start block number */
165 void unmap_underlying_metadata(struct block_device *bdev, sector_t block);
177 struct buffer_head *__find_get_block(struct block_device *bdev, sector_t block,
179 struct buffer_head *__getblk(struct block_device *bdev, sector_t block,
183 void __breadahead(struct block_device *, sector_t block, unsigned int size);
184 struct buffer_head *__bread(struct block_device *, sector_t block, unsigned size);
261 sb_bread(struct super_block *sb, sector_t block) argument
267 sb_breadahead(struct super_block *sb, sector_t block) argument
273 sb_getblk(struct super_block *sb, sector_t block) argument
279 sb_find_get_block(struct super_block *sb, sector_t block) argument
285 map_bh(struct buffer_head *bh, struct super_block *sb, sector_t block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/aoe/
H A Dstatus.sh13 test ! -d "$sysd/block" && {
18 for d in `ls -d $sysd/block/etherd* 2>/dev/null | grep -v p` end; do
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/test/
H A Dudevstart-test.pl49 my $block = int(`find $udev_root -type b -print | wc -l`);
52 print "block devices: $block/10\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dmd4.c37 u32 block[MD4_BLOCK_WORDS]; member in struct:md4_ctx
150 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(u32));
151 md4_transform(ctx->hash, ctx->block);
168 const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
173 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
178 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
185 while (len >= sizeof(mctx->block)) {
[all...]
H A Dmd5.c40 u32 block[MD5_BLOCK_WORDS]; member in struct:md5_ctx
145 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(u32));
146 md5_transform(ctx->hash, ctx->block);
163 const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
168 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
173 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
180 while (len >= sizeof(mctx->block)) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_btree.c59 * Checking routine: return maxrecs for the block.
61 STATIC int /* number of records fitting in block */
64 xfs_btree_block_t *block);/* generic btree block pointer */
71 * Retrieve the block pointer from the cursor at the given level.
74 STATIC xfs_btree_block_t * /* generic btree block pointer */
78 struct xfs_buf **bpp); /* buffer containing the block */
81 * Checking routine: return maxrecs for the block.
83 STATIC int /* number of records fitting in block */
86 xfs_btree_block_t *block) /* generi
84 xfs_btree_maxrecs( xfs_btree_cur_t *cur, xfs_btree_block_t *block) argument
114 xfs_btree_check_block( xfs_btree_cur_t *cur, xfs_btree_block_t *block, int level, xfs_buf_t *bp) argument
187 xfs_btree_check_lblock( xfs_btree_cur_t *cur, xfs_btree_lblock_t *block, int level, xfs_buf_t *bp) argument
303 xfs_btree_check_sblock( xfs_btree_cur_t *cur, xfs_btree_sblock_t *block, int level, xfs_buf_t *bp) argument
468 xfs_btree_block_t *block; /* generic btree block pointer */ local
498 xfs_btree_block_t *block; /* return value */ local
662 xfs_btree_block_t *block; /* generic btree block pointer */ local
682 xfs_btree_block_t *block; /* generic btree block pointer */ local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dext_attr.c24 errcode_t ext2fs_read_ext_attr(ext2_filsys fs, blk_t block, void *buf) argument
28 retval = io_channel_read_blk(fs->io, block, 1, buf);
39 errcode_t ext2fs_write_ext_attr(ext2_filsys fs, blk_t block, void *inbuf) argument
54 retval = io_channel_write_blk(fs->io, block, 1, write_buf);
63 * This function adjusts the reference count of the EA block.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsignal.c67 void BlockSignals(BOOL block,int signum) argument
73 sigprocmask(block?SIG_BLOCK:SIG_UNBLOCK,&set,NULL);
75 if (block) {
81 /* yikes! This platform can't block signals? */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/sysv/
H A Ditree.c22 static int block_to_path(struct inode *inode, long block, int offsets[DEPTH]) argument
31 if (block < 0) {
32 printk("sysv_block_map: block < 0\n");
33 } else if (block < DIRECT) {
34 offsets[n++] = block;
35 } else if ( (block -= DIRECT) < indirect_blocks) {
37 offsets[n++] = block;
38 } else if ((block -= indirect_blocks) < double_blocks) {
40 offsets[n++] = block >> ptrs_bits;
41 offsets[n++] = block
102 int block = block_to_cpu(SYSV_SB(sb), p->key); local
344 int block; local
464 sysv_bmap(struct address_space *mapping, sector_t block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/isofs/
H A Disofs.h28 * iso9660 super-block data in memory
119 unsigned long block,
126 static inline unsigned long isofs_get_ino(unsigned long block, argument
130 return (block << (bufbits - 5)) | (offset >> 5);
144 * block and offset by always making them point to the "." directory.
160 * You should pass the directory entry in "de". On return, "block"
166 unsigned long *block,
172 *block = (unsigned long)isonum_733(de->extent)
165 isofs_normalize_block_and_offset(struct iso_directory_record* de, unsigned long *block, unsigned long *offset) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/mac80211/
H A Dmichael.c64 size_t block, blocks, left; local
84 for (block = 0; block < blocks; block++) {
85 l ^= michael_get32(&data[block * 4]);
89 /* Partial block of 0..3 bytes and padding: 0x5a + 4..7 zeros to make
99 /* last block is zero, so l ^ 0 = l */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_picture.c50 /* append PICTURE block */
54 print_error_with_chain_status(chain, "%s: ERROR: adding new PICTURE block to metadata", filename);
60 /* check global PICTURE constraints (max 1 block each of type=1 and type=2) */
64 FLAC__StreamMetadata *block = FLAC__metadata_iterator_get_block(iterator); local
65 if(block->type == FLAC__METADATA_TYPE_PICTURE) {
66 if(block->data.picture.type == FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD) {
68 print_error_with_chain_status(chain, "%s: ERROR: FLAC stream can only have one 32x32 standard icon (type=1) PICTURE block", filename);
73 else if(block->data.picture.type == FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON) {
75 print_error_with_chain_status(chain, "%s: ERROR: FLAC stream can only have one icon (type=2) PICTURE block", filename);
90 FLAC__StreamMetadata *block local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/udf/
H A Dmisc.c33 udf_tgetblk(struct super_block *sb, int block) argument
36 return sb_getblk(sb, udf_fixed_to_variable(block));
38 return sb_getblk(sb, block);
42 udf_tread(struct super_block *sb, int block) argument
45 return sb_bread(sb, udf_fixed_to_variable(block));
47 return sb_bread(sb, block);
199 * Read the first block of a tagged descriptor.
206 udf_read_tagged(struct super_block *sb, uint32_t block, uint32_t location, uint16_t *ident) argument
213 /* Read the block */
214 if (block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dslob.c60 * the block using call_rcu.
130 static void slob_free(void *block, int size) argument
132 slob_t *cur, *b = (slob_t *)block;
135 if (!block)
228 void kfree(const void *block) argument
233 if (!block)
236 if (!((unsigned long)block & (PAGE_SIZE-1))) {
237 /* might be on the big block list */
240 if (bb->pages == block) {
243 free_pages((unsigned long)block, b
257 ksize(const void *block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Duptodate.c162 sector_t block)
170 if (block < item->c_block)
172 else if (block > item->c_block)
189 mlog(0, "Inode %llu, query block %llu (inline = %u)\n",
209 * the block is stored in our inode metadata cache.
223 * block at the same time. */
244 sector_t block)
248 mlog(0, "block %llu takes position %u\n", (unsigned long long) block,
251 ci->ci_cache.ci_array[ci->ci_num_cached] = block;
161 ocfs2_search_cache_tree(struct ocfs2_caching_info *ci, sector_t block) argument
243 ocfs2_append_cache_array(struct ocfs2_caching_info *ci, sector_t block) argument
261 sector_t block = new->c_block; local
339 __ocfs2_set_buffer_uptodate(struct ocfs2_inode_info *oi, sector_t block, int expand_tree) argument
521 sector_t block = bh->b_blocknr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dvc1dsp_altivec.c131 /** Do inverse transform on 8x8 block
133 static void vc1_inv_trans_8x8_altivec(DCTELEM block[64]) argument
149 src0 = vec_ld( 0, block);
150 src1 = vec_ld( 16, block);
151 src2 = vec_ld( 32, block);
152 src3 = vec_ld( 48, block);
153 src4 = vec_ld( 64, block);
154 src5 = vec_ld( 80, block);
155 src6 = vec_ld( 96, block);
156 src7 = vec_ld(112, block);
230 vc1_inv_trans_8x4_altivec(uint8_t *dest, int stride, DCTELEM *block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dfdct_mmx.c536 void ff_fdct_mmx(int16_t *block) argument
543 fdct_col_mmx(block, block1, 0);
544 fdct_col_mmx(block, block1, 4);
547 fdct_row_mmx(block1, block, table);
550 block += 8;
554 void ff_fdct_mmx2(int16_t *block) argument
561 fdct_col_mmx(block, block1, 0);
562 fdct_col_mmx(block, block1, 4);
565 fdct_row_mmx2(block1, block, table);
568 block
572 ff_fdct_sse2(int16_t *block) argument
[all...]
H A Dvp3dsp_mmx.c386 void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block) argument
388 ff_vp3_idct_mmx(block);
389 put_signed_pixels_clamped_mmx(block, dest, line_size);
392 void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block) argument
394 ff_vp3_idct_mmx(block);
395 add_pixels_clamped_mmx(block, dest, line_size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh261enc.c36 static void h261_encode_block(H261Context * h, DCTELEM * block,
145 DCTELEM block[6][64])
156 DCTELEM block[6][64],
169 cbp= get_cbp(s, block);
171 /* mvd indicates if this block is motion compensated */
227 /* encode each block */
228 h261_encode_block(h, block[i], i);
253 * encodes a 8x8 block.
254 * @param block the 8x8 block
144 get_cbp(MpegEncContext * s, DCTELEM block[6][64]) argument
155 ff_h261_encode_mb(MpegEncContext * s, DCTELEM block[6][64], int motion_x, int motion_y) argument
257 h261_encode_block(H261Context * h, DCTELEM * block, int n) argument
[all...]
H A D4xm.c140 DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
155 static void idct(DCTELEM block[64]){ argument
163 tmp10 = block[8*0 + i] + block[8*4 + i];
164 tmp11 = block[8*0 + i] - block[8*4 + i];
166 tmp13 = block[8*2 + i] + block[8*6 + i];
167 tmp12 = MULTIPLY(block[8*2 + i] - block[
411 decode_i_block(FourXContext *f, DCTELEM *block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dmce_amd.c51 unsigned int block; member in struct:threshold_block
119 unsigned int bank, block; local
124 for (block = 0; block < NR_BLOCKS; ++block) {
125 if (block == 0)
127 else if (block == 1) {
140 if (block)
150 if (!block)
181 unsigned int bank, block; local
389 allocate_threshold_blocks(unsigned int cpu, unsigned int bank, unsigned int block, u32 address) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dvorbisenc.c54 int block[P_BANDS]; member in struct:vp_adjblock
199 static void vorbis_encode_floor_setup(vorbis_info *vi,double s,int block, argument
209 f->n=ci->blocksizes[block]>>1;
319 int block){
321 vorbis_info_psy *p=ci->psy_param[block];
325 if(block>=ci->psys)
326 ci->psys=block+1;
329 ci->psy_param[block]=p;
333 p->blockflag=block>>1;
346 static void vorbis_encode_tonemask_setup(vorbis_info *vi,double s,int block, argument
315 vorbis_encode_psyset_setup(vorbis_info *vi,double s, const int *nn_start, const int *nn_partition, const double *nn_thresh, int block) argument
371 vorbis_encode_compand_setup(vorbis_info *vi,double s,int block, const compandblock *in, const double *x) argument
393 vorbis_encode_peak_setup(vorbis_info *vi,double s,int block, const int *suppress) argument
405 vorbis_encode_noisebias_setup(vorbis_info *vi,double s,int block, const int *suppress, const noise3 *in, const noiseguard *guard, double userbias) argument
437 vorbis_encode_ath_setup(vorbis_info *vi,int block) argument
468 vorbis_encode_residue_setup(vorbis_info *vi, int number, int block, const vorbis_residue_template *res) argument
[all...]

Completed in 281 milliseconds

1234567891011>>