HomeSort by relevance Sort by last modified time
    Searched refs:blk (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
idct.h 48 void idctrow0(int16 *blk, uint8 *pred, uint8 *dst, int width);
49 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width);
50 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width);
51 void idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width);
52 void idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width);
53 void idctcol0(int16 *blk);
54 void idctcol1(int16 *blk);
55 void idctcol2(int16 *blk);
56 void idctcol3(int16 *blk);
57 void idctcol4(int16 *blk);
    [all...]
idct_vca.cpp 40 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width)
52 blk -= 8;
56 tmp = (*(blk += 8) + 32) >> 6;
57 *blk = 0;
90 void idctcol1(int16 *blk)
92 blk[0] = blk[8] = blk[16] = blk[24] = blk[32] = blk[40] = blk[48] = blk[56]
    [all...]
block_idct.cpp 123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
125 static void idctcol(int16 *blk);
510 int16 *blk, uint8 *pred, uint8 *dst, int width
535 blk -= 8;
539 x1 = (int32)blk[12] << 8;
540 blk[12] = 0;
541 x2 = blk[14];
542 blk[14] = 0;
543 x3 = blk[10]
    [all...]
idct.cpp 43 blk = pointer to the buffer containing the dequantized DCT
57 blk points to the found IDCT values for an 8r8 image block.
122 int *blk, uint8 *comp, int width
145 r1 = blk[B_SIZE * 4 + i] << 11;
151 r2 = blk[B_SIZE * 6 + i];
152 r3 = blk[B_SIZE * 2 + i];
153 r4 = blk[B_SIZE * 1 + i];
154 r5 = blk[B_SIZE * 7 + i];
155 r6 = blk[B_SIZE * 5 + i];
156 r7 = blk[B_SIZE * 3 + i]
    [all...]
  /external/e2fsprogs/lib/ext2fs/
write_bb_file.c 22 blk_t blk; local
29 while (ext2fs_badblocks_list_iterate(bb_iter, &blk)) {
30 fprintf(f, "%u\n", blk);
check_desc.c 39 blk_t blk, b; local
63 blk = fs->group_desc[i].bg_block_bitmap;
64 if (blk < first_block || blk > last_block ||
65 ext2fs_test_block_bitmap(bmap, blk)) {
69 ext2fs_mark_block_bitmap(bmap, blk);
74 blk = fs->group_desc[i].bg_inode_bitmap;
75 if (blk < first_block || blk > last_block ||
76 ext2fs_test_block_bitmap(bmap, blk)) {
    [all...]
bb_compat.c 39 errcode_t badblocks_list_add(badblocks_list bb, blk_t blk)
41 return ext2fs_badblocks_list_add(bb, blk);
44 int badblocks_list_test(badblocks_list bb, blk_t blk)
46 return ext2fs_badblocks_list_test(bb, blk);
55 int badblocks_list_iterate(badblocks_iterate iter, blk_t *blk)
57 return ext2fs_badblocks_list_iterate(iter, blk);
badblocks.c 107 errcode_t ext2fs_u32_list_add(ext2_u32_list bb, __u32 blk)
130 if ((bb->num != 0) && (bb->list[i] == blk))
132 if ((bb->num == 0) || (bb->list[i] < blk)) {
133 bb->list[bb->num++] = blk;
139 if (bb->list[i] == blk)
141 if (bb->list[i] > blk) {
148 bb->list[j] = blk;
153 errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb, blk_t blk)
155 return ext2fs_u32_list_add((ext2_u32_list) bb, (__u32) blk);
162 int ext2fs_u32_list_find(ext2_u32_list bb, __u32 blk)
    [all...]
alloc_stats.c 64 void ext2fs_block_alloc_stats(ext2_filsys fs, blk_t blk, int inuse)
66 int group = ext2fs_group_of_blk(fs, blk);
69 if (blk >= fs->super->s_blocks_count) {
71 "Illegal block number: %lu", (unsigned long) blk);
76 ext2fs_mark_block_bitmap(fs->block_map, blk);
78 ext2fs_unmark_block_bitmap(fs->block_map, blk);
87 (fs->block_alloc_stats)(fs, (blk64_t) blk, inuse);
92 blk64_t blk,
95 blk64_t blk,
ind_block.c 22 errcode_t ext2fs_read_ind_block(ext2_filsys fs, blk_t blk, void *buf)
35 retval = io_channel_read_blk(fs->io, blk, 1, buf);
47 errcode_t ext2fs_write_ind_block(ext2_filsys fs, blk_t blk, void *buf)
63 return io_channel_write_blk(fs->io, blk, 1, buf);
mkdir.c 40 blk_t blk; local
58 retval = ext2fs_new_block(fs, 0, 0, &blk);
86 inode.i_block[0] = blk;
93 retval = ext2fs_write_dir_block(fs, blk, block);
131 ext2fs_block_alloc_stats(fs, blk, +1);
rw_bitmaps.c 39 blk_t blk; local
91 blk = fs->group_desc[i].bg_block_bitmap;
92 if (blk) {
93 retval = io_channel_write_blk(fs->io, blk, 1,
114 blk = fs->group_desc[i].bg_inode_bitmap;
115 if (blk) {
116 retval = io_channel_write_blk(fs->io, blk, 1,
147 blk_t blk; local
195 blk = (fs->image_header->offset_inodemap / fs->blocksize);
198 retval = io_channel_read_blk(fs->image_io, blk++
    [all...]
  /external/e2fsprogs/debugfs/
unused.c 29 unsigned long blk; local
38 for (blk=current_fs->super->s_first_data_block;
39 blk < current_fs->super->s_blocks_count; blk++) {
40 if (ext2fs_test_block_bitmap(current_fs->block_map,blk))
42 retval = io_channel_read_blk(current_fs->io, blk, 1, buf);
53 blk);
  /external/e2fsprogs/e2fsck/
ea_refcount.c 113 blk_t blk, int pos)
144 el->ea_blk = blk;
155 blk_t blk, int create)
167 (blk > refcount->list[high].ea_blk))) {
171 return insert_refcount_el(refcount, blk,
179 if (blk == refcount->list[refcount->cursor].ea_blk)
182 printf("Non-cursor get_refcount_el: %u\n", blk);
195 if (blk < lowval)
197 else if (blk > highval)
200 range = ((float) (blk - lowval))
393 blk_t blk; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct.h 51 void idct_col0(Short *blk);
52 void idct_col1(Short *blk);
53 void idct_col2(Short *blk);
54 void idct_col3(Short *blk);
55 void idct_col4(Short *blk);
56 void idct_col0x40(Short *blk);
57 void idct_col0x20(Short *blk);
58 void idct_col0x10(Short *blk);
61 void idct_row0Inter(Short *blk, UChar *rec, Int lx);
62 void idct_row1Inter(Short *blk, UChar *rec, Int lx)
    [all...]
fastidct.cpp 65 void idct_col0(Short *blk)
67 OSCL_UNUSED_ARG(blk);
72 void idct_col1(Short *blk)
74 blk[0] = blk[8] = blk[16] = blk[24] = blk[32] = blk[40] = blk[48] = blk[56]
    [all...]
sad_mb_offset.h 27 __inline int32 sad_mb_offset3(UChar *ref, UChar *blk, Int lx, Int dmin)
29 __inline int32 sad_mb_offset2(UChar *ref, UChar *blk, Int lx, Int dmin)
31 __inline int32 sad_mb_offset1(UChar *ref, UChar *blk, Int lx, Int dmin)
42 blk -= 16;
62 x12 = *((uint32*)(blk += 16));
63 x14 = *((uint32*)(blk + 4));
88 x12 = *((uint32*)(blk + 8));
89 x14 = *((uint32*)(blk + 12));
130 __inline int32 sad_mb_offset3(UChar *ref, UChar *blk, Int lx, Int dmin, int32 x8)
132 __inline int32 sad_mb_offset2(UChar *ref, UChar *blk, Int lx, Int dmin, int32 x8
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.h 43 #define ISO15693_GET_VALUE_FIELD_BLOCK_NO(blk, byte_addr, ndef_size) \
45 (ISO15693_BYTES_PER_BLOCK - 1)) ? (blk + 1) : blk)
47 #define ISO15693_GET_VALUE_FIELD_BYTE_NO(blk, byte_addr, ndef_size) \
  /external/yaffs2/yaffs2/direct/
yaffs_ramdisk.c 121 int blk; local
127 blk = chunkInNAND/32;
133 memcpy(ramdisk.block[blk]->page[pg].data,data,512);
142 memcpy(&ramdisk.block[blk]->page[pg].data[512],&pt,sizeof(pt));
152 int blk; local
158 blk = chunkInNAND/32;
164 memcpy(data,ramdisk.block[blk]->page[pg].data,512);
172 memcpy(&pt,&ramdisk.block[blk]->page[pg].data[512],sizeof(pt));
183 int blk; local
190 blk = chunkInNAND/32
    [all...]
yaffs_ramem2k.c 93 nandemul_Block *blk; local
100 blk = ned.block[blockNumber];
104 memset(blk->page[i],0xff,sizeof(nandemul_Page));
105 blk->page[i]->empty = 1;
149 nandemul_Block *blk; local
151 if(!(blk = ned.block[i] = YMALLOC(sizeof(nandemul_Block))))
159 if((blk->page[j] = YMALLOC(sizeof(nandemul_Page))) == 0)
194 int blk; local
201 blk = chunkInNAND/PAGES_PER_BLOCK;
207 x = ned.block[blk]->page[pg]->data
237 int blk; local
267 int blk; local
    [all...]
yaffs_flashif.c 117 int blk; local
123 blk = chunkInNAND/32;
129 memcpy(ramdisk.block[blk]->page[pg].data,data,512);
137 memcpy(&ramdisk.block[blk]->page[pg].data[512],&pt,sizeof(pt));
147 int blk; local
153 blk = chunkInNAND/32;
159 memcpy(data,ramdisk.block[blk]->page[pg].data,512);
166 memcpy(&pt,&ramdisk.block[blk]->page[pg].data[512],sizeof(yaffs_PackedTags));
176 int blk; local
183 blk = chunkInNAND/32
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 22 __inline int32 sad_mb_offset3(uint8 *ref, uint8 *blk, int lx, int dmin)
24 __inline int32 sad_mb_offset2(uint8 *ref, uint8 *blk, int lx, int dmin)
26 __inline int32 sad_mb_offset1(uint8 *ref, uint8 *blk, int lx, int dmin)
37 blk -= 16;
57 x12 = *((uint32*)(blk += 16));
58 x14 = *((uint32*)(blk + 4));
83 x12 = *((uint32*)(blk + 8));
84 x14 = *((uint32*)(blk + 12));
125 __inline int32 sad_mb_offset3(uint8 *ref, uint8 *blk, int lx, int dmin, int32 x8)
127 __inline int32 sad_mb_offset2(uint8 *ref, uint8 *blk, int lx, int dmin, int32 x8
    [all...]
sad_inline.h 77 __inline int32 simd_sad_mb(uint8 *ref, uint8 *blk, int dmin, int lx)
97 blk -= 16;
105 x12 = *((uint32*)(blk += 16));
106 x14 = *((uint32*)(blk + 4));
124 x12 = *((uint32*)(blk + 8));
125 x14 = *((uint32*)(blk + 12));
158 return sad_mb_offset3(ref, blk, lx, dmin);
162 return sad_mb_offset2(ref, blk, lx, dmin);
166 return sad_mb_offset1(ref, blk, lx, dmin);
252 __inline int32 simd_sad_mb(uint8 *ref, uint8 *blk, int dmin, int lx
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 61 #define IS_BLOCK_BM(fs, i, blk) ((blk) == FS_BLOCK_BM((fs),(i)))
62 #define IS_INODE_BM(fs, i, blk) ((blk) == FS_INODE_BM((fs),(i)))
64 #define IS_INODE_TB(fs, i, blk) (((blk) >= FS_INODE_TB((fs), (i))) && \
65 ((blk) < (FS_INODE_TB((fs), (i)) + \
193 blk_t i, blk, super_blk, old_desc_blk, new_desc_blk; local
205 blk = (g * fs->super->s_blocks_per_group) +
217 for (i=0; i < fs->super->s_blocks_per_group; i++, blk++)
257 blk_t blk; local
300 blk_t blk, group_block; local
777 blk_t blk, group_blk; local
1081 blk_t blk; local
1100 blk_t blk, old_blk, new_blk; local
1587 blk_t old_blk, new_blk, blk; local
1714 blk_t blk; local
1777 blk_t blk; local
    [all...]
  /external/zlib/examples/
fitblk.c 132 unsigned char *blk; /* intermediate and final stream */ local
147 blk = malloc(size + EXCESS);
152 if (ret != Z_OK || blk == NULL)
157 def.next_out = blk;
166 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
172 free(blk);
194 inf.next_in = blk;
211 def.next_out = blk;
219 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
228 free(blk);
    [all...]

Completed in 331 milliseconds

1 2 3 4 5