Searched refs:block (Results 51 - 75 of 638) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/gus/
H A Dgus_instr.c35 struct snd_gf1_mem_block *block; local
42 block = snd_gf1_mem_alloc(&gus->gf1.mem_alloc,
47 if (block == NULL)
50 block->ptr, wave->size);
53 snd_gf1_mem_xfree(&gus->gf1.mem_alloc, block);
57 wave->address.memory = block->ptr;
88 struct snd_gf1_mem_block *block; local
93 block = snd_gf1_mem_alloc(&gus->gf1.mem_alloc,
98 if (block == NULL)
101 block
136 struct snd_gf1_mem_block *block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dmpegvideo_mmx.c35 DCTELEM *block, int n, int qscale)
45 level = block[0] * s->y_dc_scale;
47 level = block[0] * s->c_dc_scale;
51 level= block[0];
79 "pcmpgtw %%mm4, %%mm2 \n\t" // block[i] < 0 ? -1 : 0
80 "pcmpgtw %%mm4, %%mm3 \n\t" // block[i] < 0 ? -1 : 0
91 "pcmpeqw %%mm7, %%mm0 \n\t" // block[i] == 0 ? -1 : 0
92 "pcmpeqw %%mm7, %%mm1 \n\t" // block[i] == 0 ? -1 : 0
102 ::"r" (block+nCoeffs), "rm"(qmul), "rm" (qadd), "r" (2*(-nCoeffs))
105 block[
34 dct_unquantize_h263_intra_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
109 dct_unquantize_h263_inter_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
200 dct_unquantize_mpeg1_intra_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
269 dct_unquantize_mpeg1_inter_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
335 dct_unquantize_mpeg2_intra_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
401 dct_unquantize_mpeg2_inter_mmx(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
478 denoise_dct_mmx(MpegEncContext *s, DCTELEM *block) argument
532 denoise_dct_sse2(MpegEncContext *s, DCTELEM *block) argument
[all...]
H A Ddsputil_mmx_avg_template.c30 static void DEF(put_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
53 :"+g"(h), "+S"(pixels), "+D"(block)
336 static void DEF(put_pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
371 :"+g"(h), "+S"(pixels), "+D"(block)
552 static void DEF(put_no_rnd_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
584 :"+g"(h), "+S"(pixels), "+D"(block)
589 static void DEF(put_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
614 :"+g"(h), "+S"(pixels), "+D" (block)
620 static void DEF(put_no_rnd_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
648 :"+g"(h), "+S"(pixels), "+D" (block)
653 avg_pixels8(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
681 avg_pixels8_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
713 avg_pixels8_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
753 avg_pixels8_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
794 avg_pixels4(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
820 put_no_rnd_pixels16_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
824 put_pixels16_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
828 put_no_rnd_pixels16_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
832 avg_pixels16(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
836 avg_pixels16_x2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
840 avg_pixels16_y2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
844 avg_pixels16_xy2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
[all...]
H A Ddsputil_mmx_rnd_template.c28 static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
55 :"+g"(h), "+S"(pixels), "+D"(block)
110 static void DEF(put, pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
151 :"+g"(h), "+S"(pixels), "+D"(block)
205 static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
229 :"+g"(h), "+S"(pixels), "+D"(block)
234 static void DEF(put, pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
296 :"D"(block), "r"((x86_reg)line_size)
301 static void av_unused DEF(avg, pixels4)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
311 :"+m"(*block)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dbitops.h61 extern int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
63 blk_t block);
64 extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
72 blk_t block);
74 blk_t block);
76 blk_t block);
90 blk_t block, int num);
92 blk_t block, int num);
94 blk_t block, int num);
96 blk_t block, in
[all...]
H A Dcheck_desc.c36 blk_t block = fs->super->s_first_data_block; local
42 next = block + fs->super->s_blocks_per_group;
44 * Check to make sure block bitmap for group is
47 if (fs->group_desc[i].bg_block_bitmap < block ||
54 if (fs->group_desc[i].bg_inode_bitmap < block ||
61 if (fs->group_desc[i].bg_inode_table < block ||
66 block = next;
H A Ddirblock.c3 * dirblock.c --- directory block routines.
23 errcode_t ext2fs_read_dir_block2(ext2_filsys fs, blk_t block, argument
34 retval = io_channel_read_blk(fs->io, block, 1, buf);
69 errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block, argument
72 return ext2fs_read_dir_block2(fs, block, buf, 0);
76 errcode_t ext2fs_write_dir_block2(ext2_filsys fs, blk_t block, argument
92 return io_channel_write_blk(fs->io, block, 1, (char *) inbuf);
119 retval = io_channel_write_blk(fs->io, block, 1, buf);
123 return io_channel_write_blk(fs->io, block, 1, (char *) inbuf);
128 errcode_t ext2fs_write_dir_block(ext2_filsys fs, blk_t block, argument
[all...]
H A Dbmove.c40 blk_t block, orig; local
43 block = orig = *block_nr;
49 if (ext2fs_test_block_bitmap(pb->reserve, block)) {
51 if (++block >= fs->super->s_blocks_count)
52 block = fs->super->s_first_data_block;
53 if (block == orig) {
57 } while (ext2fs_test_block_bitmap(pb->reserve, block) ||
58 ext2fs_test_block_bitmap(pb->alloc_map, block));
65 retval = io_channel_write_blk(fs->io, block, 1, pb->buf);
70 *block_nr = block;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_object.cpp251 FLAC::Metadata::StreamInfo block; local
252 if(!block.is_valid())
253 return die_("!block.is_valid()");
255 if(block.get_length() != expected_length) {
256 printf("FAILED, bad length, expected %u, got %u\n", expected_length, block.get_length());
264 FLAC::Metadata::StreamInfo blockcopy(block);
267 if(blockcopy != block)
348 FLAC::Metadata::StreamInfo blockcopy = block;
351 if(!(blockcopy == block))
379 block
484 FLAC::Metadata::Padding block; local
645 FLAC::Metadata::Application block; local
815 FLAC::Metadata::SeekTable block; local
1168 FLAC::Metadata::VorbisComment block; local
1540 FLAC::Metadata::CueSheet block; local
1809 FLAC::Metadata::Picture block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh264pred.h80 void (*pred4x4_add [2])(uint8_t *pix/*align 4*/, const DCTELEM *block/*align 16*/, int stride);
81 void (*pred8x8l_add [2])(uint8_t *pix/*align 8*/, const DCTELEM *block/*align 16*/, int stride);
82 void (*pred8x8_add [3])(uint8_t *pix/*align 8*/, const int *block_offset, const DCTELEM *block/*align 16*/, int stride);
83 void (*pred16x16_add[3])(uint8_t *pix/*align 16*/, const int *block_offset, const DCTELEM *block/*align 16*/, int stride);
H A Drtjpeg.c28 block[i] = (c) * quant[i];
36 * \brief read one block from stream
38 * \param block where data is written to
39 * \param scan array containing the mapping stream address -> block position
46 static inline int get_block(GetBitContext *gb, DCTELEM *block, const uint8_t *scan, argument
52 // block not coded
59 // but since we do not know where they are we just clear the whole block
60 memset(block, 0, 64 * sizeof(DCTELEM));
101 DECLARE_ALIGNED_16(DCTELEM, block[64]);
110 if (get_block(&gb, block,
[all...]
H A Ddctref.c52 * Transform 8x8 block of data with a double precision forward DCT <br>
55 * @param block pointer to 8x8 block of data to transform
57 void ff_ref_fdct(short *block) argument
59 /* implement the equation: block = coefficients * block * coefficients' */
64 /* out = coefficients * block */
69 tmp += coefficients[i + k] * block[k * 8 + j];
75 /* block = out * (coefficients') */
82 block[
93 ff_ref_idct(short *block) argument
[all...]
H A Dh264enc.c183 static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, argument
200 int level = block[0]*quant_coeff[qscale+18][0];
204 block[0] = level;
207 block[0] = -level;
211 block[0] = 0;
218 int level = block[0]*quant_table[0];
222 block[0] = level;
225 block[0] = -level;
229 block[0] = 0;
241 int level = block[
[all...]
H A Dasv1.c50 DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
183 static inline int asv1_decode_block(ASV1Context *a, DCTELEM block[64]){ argument
186 block[0]= 8*get_bits(&a->gb, 8);
198 if(ccp&8) block[a->scantable.permutated[4*i+0]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+0])>>4;
199 if(ccp&4) block[a->scantable.permutated[4*i+1]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+1])>>4;
200 if(ccp&2) block[a->scantable.permutated[4*i+2]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+2])>>4;
201 if(ccp&1) block[a->scantable.permutated[4*i+3]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+3])>>4;
208 static inline int asv2_decode_block(ASV1Context *a, DCTELEM block[64]){ argument
213 block[0]= 8*asv2_get_bits(&a->gb, 8);
217 if(ccp&4) block[
236 asv1_encode_block(ASV1Context *a, DCTELEM block[64]) argument
269 asv2_encode_block(ASV1Context *a, DCTELEM block[64]) argument
308 decode_mb(ASV1Context *a, DCTELEM block[6][64]) argument
327 encode_mb(ASV1Context *a, DCTELEM block[6][64]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mmc/card/
H A DMakefile10 mmc_block-objs := block.o queue.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/efs/
H A Ddir.c29 efs_block_t block; local
39 block = filp->f_pos >> EFS_DIRBSIZE_BITS;
41 /* each block contains at most 256 slots */
45 while (block < inode->i_blocks) {
46 /* read the dir block */
47 bh = sb_bread(inode->i_sb, efs_bmap(inode, block));
50 printk(KERN_ERR "EFS: readdir(): failed to read dir block %d\n", block);
57 printk(KERN_ERR "EFS: readdir(): invalid directory block\n");
75 printk(KERN_DEBUG "EFS: readdir(): block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dfbmon.c97 static int edid_is_serial_block(unsigned char *block) argument
99 if ((block[0] == 0x00) && (block[1] == 0x00) &&
100 (block[2] == 0x00) && (block[3] == 0xff) &&
101 (block[4] == 0x00))
107 static int edid_is_ascii_block(unsigned char *block) argument
109 if ((block[0] == 0x00) && (block[1] == 0x00) &&
110 (block[
117 edid_is_limits_block(unsigned char *block) argument
127 edid_is_monitor_block(unsigned char *block) argument
137 edid_is_timing_block(unsigned char *block) argument
148 unsigned char *block = edid + ID_MANUFACTURER_NAME, manufacturer[4]; local
293 parse_vendor_block(unsigned char *block, struct fb_monspecs *specs) argument
327 get_chroma(unsigned char *block, struct fb_monspecs *specs) argument
410 get_est_timing(unsigned char *block, struct fb_videomode *mode) argument
495 get_std_timing(unsigned char *block, struct fb_videomode *mode) argument
534 get_dst_timing(unsigned char *block, struct fb_videomode *mode) argument
545 get_detailed_timing(unsigned char *block, struct fb_videomode *mode) argument
593 unsigned char *block; local
668 unsigned char *block; local
748 unsigned char c, *block; local
867 unsigned char *block; local
909 unsigned char *block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dreplaygain.c85 static FLAC__bool append_tag_(FLAC__StreamMetadata *block, const char *format, const FLAC__byte *name, float value) argument
91 FLAC__ASSERT(0 != block);
92 FLAC__ASSERT(block->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
116 return FLAC__metadata_object_vorbiscomment_append_comment(block, entry, /*copy=*/true);
373 const char *grabbag__replaygain_store_to_vorbiscomment(FLAC__StreamMetadata *block, float album_gain, float album_peak, float title_gain, float title_peak) argument
377 if(0 != (error = grabbag__replaygain_store_to_vorbiscomment_reference(block)))
380 if(0 != (error = grabbag__replaygain_store_to_vorbiscomment_title(block, title_gain, title_peak)))
383 if(0 != (error = grabbag__replaygain_store_to_vorbiscomment_album(block, album_gain, album_peak)))
389 const char *grabbag__replaygain_store_to_vorbiscomment_reference(FLAC__StreamMetadata *block) argument
391 FLAC__ASSERT(0 != block);
403 grabbag__replaygain_store_to_vorbiscomment_album(FLAC__StreamMetadata *block, float album_gain, float album_peak) argument
423 grabbag__replaygain_store_to_vorbiscomment_title(FLAC__StreamMetadata *block, float title_gain, float title_peak) argument
443 store_to_file_pre_(const char *filename, FLAC__Metadata_Chain **chain, FLAC__StreamMetadata **block) argument
523 FLAC__StreamMetadata *block; local
543 FLAC__StreamMetadata *block; local
563 FLAC__StreamMetadata *block; local
583 FLAC__StreamMetadata *block; local
625 grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, FLAC__bool strict, double *reference, double *gain, double *peak) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dfsck_minix.c32 * super-block information
82 * -s for super-block info
86 * The device may be a block device or a image of one, but this isn't
408 if (ask("Remove block", 1)) {
424 * read-block reads block nr into the buffer at addr.
433 printf("%s: cannot seek to block in file '%s'\n",
438 printf("%s: bad block in file '%s'\n",
446 * write_block writes block nr to disk.
453 printf("Internal error: trying to write bad block\
476 int block, result; local
513 int block, result; local
598 int block; local
802 int block; local
833 int block; local
864 int block; local
881 int block; local
898 int block; local
915 int block; local
931 int block; local
988 int block; local
1038 int block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_dir2_block.c64 * Add an entry to a block directory.
70 xfs_dir2_data_free_t *bf; /* bestfree table in block */
71 xfs_dir2_block_t *block; /* directory block structure */ local
72 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
73 xfs_dabuf_t *bp; /* buffer for block */
74 xfs_dir2_block_tail_t *btp; /* block tail */
76 xfs_dir2_data_entry_t *dep; /* block data entry */
78 xfs_dir2_data_unused_t *dup; /* block unused entry */
101 * Read the (one and only) directory block int
437 xfs_dir2_block_t *block; /* directory block structure */ local
560 xfs_dir2_block_t *block; /* directory block structure */ local
581 xfs_dir2_block_t *block; /* directory block structure */ local
600 xfs_dir2_block_t *block; /* block structure */ local
646 xfs_dir2_block_t *block; /* block structure */ local
739 xfs_dir2_block_t *block; /* block structure */ local
820 xfs_dir2_block_t *block; /* block structure */ local
886 xfs_dir2_block_t *block; /* block structure */ local
1027 xfs_dir2_block_t *block; /* block structure */ local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_seektable.c30 static FLAC__bool populate_seekpoint_values(const char *filename, FLAC__StreamMetadata *block, FLAC__bool *needs_write);
35 FLAC__StreamMetadata *block = 0; local
46 block = FLAC__metadata_iterator_get_block(iterator);
47 if(block->type == FLAC__METADATA_TYPE_STREAMINFO) {
48 sample_rate = block->data.stream_info.sample_rate;
49 total_samples = block->data.stream_info.total_samples;
51 else if(block->type == FLAC__METADATA_TYPE_SEEKTABLE)
56 fprintf(stderr, "%s: ERROR: cannot add seekpoints because STREAMINFO block does not specify total_samples\n", filename);
61 /* create a new block */
62 block
163 populate_seekpoint_values(const char *filename, FLAC__StreamMetadata *block, FLAC__bool *needs_write) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/atari/
H A Dstram.c93 #define BLOCK_GFP 0x08 /* block allocated with __get_dma_pages() */
109 static int remove_region( BLOCK *block );
132 * first memory block at virtual 0x0) */
168 * This is main public interface: somehow allocate a ST-RAM block
184 BLOCK *block;
200 if (!(block = add_region( addr, size ))) {
207 block->owner = owner;
208 block->flags |= flags;
216 BLOCK *block;
220 if (!(block
183 BLOCK *block; local
215 BLOCK *block; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Demu10k1_patch.c35 * allocate a sample block and copy data from userspace
84 /* try to allocate a memory block */
88 sp->block = snd_emu10k1_synth_alloc(emu, blocksize);
89 if (sp->block == NULL) {
103 snd_emu10k1_synth_bzero(emu, sp->block, offset, size);
111 if (snd_emu10k1_synth_copy_from_user(emu, sp->block, offset, data, size)) {
112 snd_emu10k1_synth_free(emu, sp->block);
113 sp->block = NULL;
125 if (snd_emu10k1_synth_copy_from_user(emu, sp->block, offset, data, size)) {
126 snd_emu10k1_synth_free(emu, sp->block);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/share/grabbag/
H A Dreplaygain.h56 const char *grabbag__replaygain_store_to_vorbiscomment(FLAC__StreamMetadata *block, float album_gain, float album_peak, float title_gain, float title_peak);
57 const char *grabbag__replaygain_store_to_vorbiscomment_reference(FLAC__StreamMetadata *block);
58 const char *grabbag__replaygain_store_to_vorbiscomment_album(FLAC__StreamMetadata *block, float album_gain, float album_peak);
59 const char *grabbag__replaygain_store_to_vorbiscomment_title(FLAC__StreamMetadata *block, float title_gain, float title_peak);
65 FLAC__bool grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, FLAC__bool strict, double *reference, double *gain, double *peak);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/sysv/
H A Dballoc.c40 /* NOTE NOTE NOTE: nr is a block number _as_ _stored_ _on_ _disk_ */
48 unsigned block = fs32_to_cpu(sbi, nr); local
58 if (block < sbi->s_firstdatazone || block >= sbi->s_nzones) {
59 printk("sysv_free_block: trying to free block not in datazone\n");
71 /* If the free list head in super-block is full, it is copied
72 * into this block being freed, ditto if it's completely empty
76 block += sbi->s_block_base;
77 bh = sb_getblk(sb, block);
102 unsigned int block; local
165 unsigned block; local
[all...]

Completed in 276 milliseconds

1234567891011>>