Searched refs:block (Results 151 - 175 of 638) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext2/
H A Dballoc.c9 * Enhanced block allocation by Stephen Tweedie (sct@redhat.com), 1993
26 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
27 * block for inodes, N blocks for the inode table and data blocks.
30 * super block. Each descriptor contains the number of the bitmap block and
31 * the free blocks count in the block. The descriptors are loaded in memory
90 "Cannot read block bitmap - "
177 void ext2_free_blocks (struct inode * inode, unsigned long block, argument
192 if (block < le32_to_cpu(es->s_first_data_block) ||
193 block
336 int block = 0; local
587 block_in_use(unsigned long block, struct super_block *sb, unsigned char *map) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_fsops.c124 xfs_btree_sblock_t *block; local
185 * AG freelist header block
217 * AG inode header block
241 * BNO btree root block
246 block = XFS_BUF_TO_SBLOCK(bp);
247 memset(block, 0, mp->m_sb.sb_blocksize);
248 block->bb_magic = cpu_to_be32(XFS_ABTB_MAGIC);
249 block->bb_level = 0;
250 block->bb_numrecs = cpu_to_be16(1);
251 block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfs/
H A Dextent.c21 static void hfs_ext_build_key(hfs_btree_key *key, u32 cnid, u16 block, u8 type) argument
26 key->ext.FABN = cpu_to_be16(block);
37 * and the allocation block number field is the least significant
72 * Find a block within an extent record
82 return be16_to_cpu(ext->block) + off;
107 return be16_to_cpu(ext->block) + be16_to_cpu(ext->count);
142 u32 cnid, u32 block, u8 type)
146 hfs_ext_build_key(fd->search_key, cnid, block, type);
160 static inline int __hfs_ext_cache_extent(struct hfs_find_data *fd, struct inode *inode, u32 block) argument
168 block, HFS_IS_RSR
141 __hfs_ext_read_extent(struct hfs_find_data *fd, struct hfs_extent *extent, u32 cnid, u32 block, u8 type) argument
179 hfs_ext_read_extent(struct inode *inode, u16 block) argument
319 hfs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dsha1.c37 #define blk0(i) (block[i] = be2me_32(((const uint32_t*)buffer)[i]))
38 #define blk(i) (block[i] = rol(block[i-3]^block[i-8]^block[i-14]^block[i-16],1))
46 /* Hash a single 512-bit block. This is the core of the algorithm. */
49 uint32_t block[80]; local
61 else t= rol(block[i-3]^block[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Ddnxhdenc.c32 int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
36 static av_always_inline void dnxhd_get_pixels_8x4(DCTELEM *restrict block, const uint8_t *pixels, int line_size) argument
40 block[0] = pixels[0]; block[1] = pixels[1];
41 block[2] = pixels[2]; block[3] = pixels[3];
42 block[4] = pixels[4]; block[5] = pixels[5];
43 block[6] = pixels[6]; block[
277 dnxhd_encode_block(DNXHDEncContext *ctx, DCTELEM *block, int last_index, int n) argument
300 dnxhd_unquantize_c(DNXHDEncContext *ctx, DCTELEM *block, int n, int qscale, int last_index) argument
329 dnxhd_ssd_block(DCTELEM *qblock, DCTELEM *block) argument
338 dnxhd_calc_ac_bits(DNXHDEncContext *ctx, DCTELEM *block, int last_index) argument
467 DCTELEM *block = ctx->blocks[i]; local
[all...]
H A Dmjpegenc.h58 void ff_mjpeg_encode_mb(MpegEncContext *s, DCTELEM block[6][64]);
H A Dmpeg12.h59 extern inline int ff_mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n);
H A Dsimple_idct.c371 void ff_simple_idct_put(uint8_t *dest, int line_size, DCTELEM *block) argument
375 idctRowCondDC(block + i*8);
378 idctSparseColPut(dest + i, line_size, block + i);
381 void ff_simple_idct_add(uint8_t *dest, int line_size, DCTELEM *block) argument
385 idctRowCondDC(block + i*8);
388 idctSparseColAdd(dest + i, line_size, block + i);
391 void ff_simple_idct(DCTELEM *block) argument
395 idctRowCondDC(block + i*8);
398 idctSparseCol(block + i);
449 void ff_simple_idct248_put(uint8_t *dest, int line_size, DCTELEM *block) argument
539 ff_simple_idct84_add(uint8_t *dest, int line_size, DCTELEM *block) argument
554 ff_simple_idct48_add(uint8_t *dest, int line_size, DCTELEM *block) argument
569 ff_simple_idct44_add(uint8_t *dest, int line_size, DCTELEM *block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/adfs/
H A Dadfs.h109 * Calculate the address of a block in an object given the block offset
116 unsigned int block)
122 block += off << ADFS_SB(sb)->s_log2sharesize;
125 return adfs_map_lookup(sb, object_id >> 8, block);
115 __adfs_block_map(struct super_block *sb, unsigned int object_id, unsigned int block) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/bfs/
H A Ddir.c34 int block; local
47 block = BFS_I(dir)->i_sblock + (f->f_pos >> BFS_BSIZE_BITS);
48 bh = sb_bread(dir->i_sb, block);
275 int block, sblock, eblock, off, eoff; local
288 for (block=sblock; block<=eblock; block++) {
289 bh = sb_bread(dir->i_sb, block);
294 if (block==eblock && off>=eoff) {
299 if ((block
328 unsigned long block, offset; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dmkdir.c42 char *block = 0; local
57 * Allocate a data block for the directory
66 retval = ext2fs_new_dir_block(fs, ino, parent, &block);
93 * Write out the inode and inode data block
95 retval = ext2fs_write_dir_block(fs, blk, block);
137 ext2fs_free_mem(&block);
H A Dnewdir.c3 * newdir.c --- create a new directory block
27 * Create new directory block
30 ext2_ino_t parent_ino, char **block)
71 *block = buf;
29 ext2fs_new_dir_block(ext2_filsys fs, ext2_ino_t dir_ino, ext2_ino_t parent_ino, char **block) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dnetlink.h41 int avahi_netlink_work(AvahiNetlink *n, int block);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_cuesheet.c49 FLAC__StreamMetadata *block = FLAC__metadata_iterator_get_block(iterator); local
50 if(block->type == FLAC__METADATA_TYPE_STREAMINFO) {
51 lead_out_offset = block->data.stream_info.total_samples;
57 is_cdda = (block->data.stream_info.channels == 1 || block->data.stream_info.channels == 2) && (block->data.stream_info.bits_per_sample == 16) && (block->data.stream_info.sample_rate == 44100);
59 else if(block->type == FLAC__METADATA_TYPE_CUESHEET)
60 cuesheet = block;
64 fprintf(stderr, "%s: ERROR: FLAC stream has no STREAMINFO block\
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Dradeon_mem.c44 /* Maybe cut off the start of an existing block */
61 /* Maybe cut off the end of an existing block */
78 /* Our block is in the middle */
225 struct mem_block *block, **heap; local
245 block = alloc_block(*heap, alloc.size, alloc.alignment, filp);
247 if (!block)
250 if (DRM_COPY_TO_USER(alloc.region_offset, &block->start, sizeof(int))) {
263 struct mem_block *block, **heap; local
277 block = find_block(*heap, memfree.region_offset);
278 if (!block)
[all...]
H A Di915_mem.c43 * block to allocate, and the ring is drained prior to allocations --
94 /* Maybe cut off the start of an existing block */
111 /* Maybe cut off the end of an existing block */
128 /* Our block is in the middle */
275 struct mem_block *block, **heap; local
295 block = alloc_block(*heap, alloc.size, alloc.alignment, filp);
297 if (!block)
300 mark_block(dev, block, 1);
302 if (DRM_COPY_TO_USER(alloc.region_offset, &block->start, sizeof(int))) {
315 struct mem_block *block, **hea local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DgenUnicode.py20 # blockAliases is a small hack - it is used for mapping block names which
40 # block range
73 for block in blockAliases:
74 alias = string.split(block,':')
281 for block in bkeys:
282 name = string.replace(block, '-', '')
287 output.write(' {"%s", xmlUCSIs%s}' % (block, name))
374 for block in bkeys:
375 name = string.replace(block, '-', '')
379 (block))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/mod/
H A Dsumversion.c42 uint32_t block[MD4_BLOCK_WORDS]; member in struct:md4_ctx
155 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(uint32_t));
156 md4_transform(ctx->hash, ctx->block);
171 const uint32_t avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
176 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
181 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
188 while (len >= sizeof(mctx->block)) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/minix/
H A Dbitmap.c12 /* bitmap.c contains the code that handles the inode and block bitmaps */
52 void minix_free_block(struct inode *inode, unsigned long block) argument
60 if (block < sbi->s_firstdatazone || block >= sbi->s_nzones) {
61 printk("Trying to free block not in datazone\n");
64 zone = block - sbi->s_firstdatazone + 1;
75 sb->s_id, block);
117 int block; local
127 block = 2 + sbi->s_imap_blocks + sbi->s_zmap_blocks +
129 *bh = sb_bread(sb, block);
141 int block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/lib/
H A Drheap.c45 rh_block_t *block, *blk; local
55 block = kmalloc(sizeof(rh_block_t) * max_blocks, GFP_KERNEL);
56 if (block == NULL)
61 /* copy old block area */
62 memcpy(block, info->block,
65 delta = (char *)block - (char *)info->block;
68 blks = (unsigned long)info->block;
69 blke = (unsigned long)(info->block
295 rh_init(rh_info_t * info, unsigned int alignment, int max_blocks, rh_block_t * block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/reiserfs/
H A Dbitmap.c4 /* Reiserfs block (de)allocator, bitmap-based. */
19 /* different reiserfs block allocator options */
50 b_blocknr_t block, int *bmap_nr, int *offset)
52 /* It is in the bitmap block number equal to the block
53 * number divided by the number of bits in a block. */
54 *bmap_nr = block >> (s->s_blocksize_bits + 3);
55 /* Within that bitmap block it is located at bit offset *offset. */
56 *offset = block & ((s->s_blocksize << 3) - 1);
60 int is_reusable(struct super_block *s, b_blocknr_t block, in argument
49 get_bit_address(struct super_block *s, b_blocknr_t block, int *bmap_nr, int *offset) argument
380 _reiserfs_free_block(struct reiserfs_transaction_handle *th, struct inode *inode, b_blocknr_t block, int for_unformatted) argument
432 reiserfs_free_block(struct reiserfs_transaction_handle *th, struct inode *inode, b_blocknr_t block, int for_unformatted) argument
449 reiserfs_free_prealloc_block(struct reiserfs_transaction_handle *th, struct inode *inode, b_blocknr_t block) argument
1290 b_blocknr_t block = (sb->s_blocksize << 3) * bitmap; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Drgrp.h45 unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block);
64 u64 block);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Drheap.h30 rh_block_t *block; member in struct:_rh_info
55 /* Initialize in place a remote info block */
57 rh_block_t * block);
86 /* Set owner of taken block */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/mtd/
H A Dblktrans.h6 * Interface to Linux block layer for MTD 'translation layers'.
43 unsigned long block, char *buffer);
45 unsigned long block, char *buffer);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Ddsputil_altivec.c346 * Sum of Squared Errors for a 8x8 block.
400 * Sum of Squared Errors for a 16x16 block.
481 void get_pixels_altivec(DCTELEM *restrict block, const uint8_t *pixels, int line_size) argument
499 // save the data to the block, we assume the block is 16-byte aligned
500 vec_st(shorts, i*16, (vector signed short*)block);
506 void diff_pixels_altivec(DCTELEM *restrict block, const uint8_t *s1, argument
525 // Do the same for the second block of pixels
536 // save the data to the block, we assume the block i
578 clear_block_altivec(DCTELEM *block) argument
609 put_pixels16_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
665 avg_pixels16_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
689 avg_pixels8_altivec(uint8_t * block, const uint8_t * pixels, int line_size, int h) argument
725 put_pixels8_xy2_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
788 put_no_rnd_pixels8_xy2_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
852 put_pixels16_xy2_altivec(uint8_t * block, const uint8_t * pixels, int line_size, int h) argument
925 put_no_rnd_pixels16_xy2_altivec(uint8_t * block, const uint8_t * pixels, int line_size, int h) argument
1357 avg_pixels8_xy2_altivec(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
[all...]

Completed in 285 milliseconds

1234567891011>>