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

1 2 3 4 5 6 7

  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.h 40 void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
41 void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
46 void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
47 void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize);
48 void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
50 void vp9_encode_intra_block_y(MACROBLOCK *x, BLOCK_SIZE bsize);
51 void vp9_encode_intra_block_uv(MACROBLOCK *x, BLOCK_SIZE bsize);
vp9_tokenize.h 31 int vp9_sb_is_skippable(MACROBLOCKD *xd, BLOCK_SIZE bsize);
32 int vp9_is_skippable_in_plane(MACROBLOCKD *xd, BLOCK_SIZE bsize,
37 BLOCK_SIZE bsize);
vp9_encodeframe.c 79 int mi_row, int mi_col, BLOCK_SIZE bsize);
365 BLOCK_SIZE bsize, int output_enabled) {
378 const int mi_width = num_8x8_blocks_wide_lookup[bsize];
379 const int mi_height = num_8x8_blocks_high_lookup[bsize];
385 assert(mi->mbmi.sb_type == bsize);
418 if (bsize < BLOCK_32X32) {
419 if (bsize < BLOCK_16X16)
506 int mi_row, int mi_col, BLOCK_SIZE bsize) {
513 const int mi_width = num_8x8_blocks_wide_lookup[bsize];
514 const int mi_height = num_8x8_blocks_high_lookup[bsize];
921 BLOCK_SIZE bsize = cpi->sf.always_this_block_size; local
2370 const BLOCK_SIZE bsize = mi->mbmi.sb_type; local
    [all...]
vp9_rdopt.h 30 int *r, int64_t *d, BLOCK_SIZE bsize,
38 BLOCK_SIZE bsize,
47 BLOCK_SIZE bsize,
vp9_tokenize.c 177 int vp9_sb_is_skippable(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
180 foreach_transformed_block(xd, bsize, is_skippable, &args);
184 int vp9_is_skippable_in_plane(MACROBLOCKD *xd, BLOCK_SIZE bsize,
188 foreach_transformed_block_in_plane(xd, bsize, plane, is_skippable, &args);
193 BLOCK_SIZE bsize) {
203 mbmi->skip_coeff = vp9_sb_is_skippable(xd, bsize);
207 reset_skip_context(xd, bsize);
215 foreach_transformed_block(xd, bsize, tokenize_b, &arg);
217 foreach_transformed_block(xd, bsize, set_entropy_context_b, &arg);
  /external/dropbear/libtommath/
bn_mp_prime_random_ex.c 37 int res, err, bsize, maskOR_msb_offset; local
50 bsize = (size>>3) + ((size&7)?1:0);
52 /* we need a buffer of bsize bytes */
53 tmp = OPT_CAST(unsigned char) XMALLOC(bsize);
76 if (cb(tmp, bsize, dat) != bsize) {
87 tmp[bsize-1] |= maskOR_lsb;
90 if ((err = mp_read_unsigned_bin(a, tmp, bsize)) != MP_OKAY) { goto error; }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
types.h 60 #define mem_alloc(bsize) malloc(bsize)
65 #define mem_free(ptr, bsize) free(ptr)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
types.h 60 #define mem_alloc(bsize) malloc(bsize)
65 #define mem_free(ptr, bsize) free(ptr)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
types.h 60 #define mem_alloc(bsize) malloc(bsize)
65 #define mem_free(ptr, bsize) free(ptr)
  /external/libvpx/libvpx/test/
vp9_subtract_test.cc 42 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
43 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
44 const int block_width = 4 << b_width_log2(bsize);
45 const int block_height = 4 << b_height_log2(bsize);
70 << ", bs = " << bsize; local
83 << ", bs = " << bsize; local
  /external/mksh/src/
shf.c 51 ssize_t bsize = local
57 shf = alloc(sizeof(struct shf) + bsize, ATEMP);
60 shf->bsize = bsize;
124 ssize_t bsize = local
130 if (bsize) {
131 shf->buf = alloc(bsize, ATEMP);
136 shf = alloc(sizeof(struct shf) + bsize, ATEMP);
144 shf->rbsize = bsize;
146 shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize;
159 ssize_t bsize = local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.c 125 BLOCK_SIZE bsize, int pred_w, int pred_h,
128 const int bwl = b_width_log2(bsize) - pd->subsampling_x;
130 const int bh = plane_block_height(bsize, pd);
190 static void build_inter_predictors_for_planes(MACROBLOCKD *xd, BLOCK_SIZE bsize,
197 const int bwl = b_width_log2(bsize) - xd->plane[plane].subsampling_x;
198 const int bhl = b_height_log2(bsize) - xd->plane[plane].subsampling_y;
202 assert(bsize == BLOCK_8X8);
205 build_inter_predictors(xd, plane, i++, bsize, 0, 0, mi_x, mi_y);
207 build_inter_predictors(xd, plane, 0, bsize, bwl, bhl, mi_x, mi_y);
213 BLOCK_SIZE bsize) {
    [all...]
vp9_blockd.h 228 static BLOCK_SIZE get_subsize(BLOCK_SIZE bsize, PARTITION_TYPE partition) {
229 const BLOCK_SIZE subsize = subsize_lookup[partition][bsize];
282 static BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
284 BLOCK_SIZE bs = ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
289 static INLINE int plane_block_width(BLOCK_SIZE bsize,
291 return 4 << (b_width_log2(bsize) - plane->subsampling_x);
294 static INLINE int plane_block_height(BLOCK_SIZE bsize,
296 return 4 << (b_height_log2(bsize) - plane->subsampling_y);
305 const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
314 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd)
    [all...]
  /frameworks/base/services/java/com/android/server/
DiskStatsService.java 90 long bsize = statfs.getBlockSize(); local
93 if (bsize <= 0 || total <= 0) {
95 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total);
100 pw.print(avail * bsize / 1024);
102 pw.print(total * bsize / 1024);
  /external/qemu/
ioport.c 124 static int ioport_bsize(int size, int *bsize)
127 *bsize = 0;
129 *bsize = 1;
131 *bsize = 2;
142 int i, bsize; local
144 if (ioport_bsize(size, &bsize)) {
149 ioport_read_table[bsize][i] = func;
161 int i, bsize; local
163 if (ioport_bsize(size, &bsize)) {
168 ioport_write_table[bsize][i] = func
    [all...]
  /external/e2fsprogs/misc/
findsuper.c 191 unsigned long long bsize, grpsize; local
231 bsize = 1 << (ext2.s_log_block_size + 10);
232 grpsize = bsize * ext2.s_blocks_per_group;
240 if (ext2.s_block_group_nr == 0 || bsize == 1024)
249 sk + ext2.s_blocks_count * bsize -
251 jnl_copy ? "*" : " ", ext2.s_blocks_count, bsize,
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 74 size_t bsize = strlen(dump_dir) + 32; local
75 char *fname = new char[bsize];
76 snprintf(fname,bsize,"%s/stream_%p", dump_dir, this);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 81 BLOCK_SIZE bsize, int allow_select, vp9_reader *r) {
82 const TX_SIZE max_tx_size = max_txsize_lookup[bsize];
83 if (allow_select && tx_mode == TX_MODE_SELECT && bsize >= BLOCK_8X8)
89 static void set_segment_id(VP9_COMMON *cm, BLOCK_SIZE bsize,
92 const int bw = num_8x8_blocks_wide_lookup[bsize];
93 const int bh = num_8x8_blocks_high_lookup[bsize];
109 const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type; local
119 set_segment_id(cm, bsize, mi_row, mi_col, segment_id);
126 const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type; local
133 bsize, mi_row, mi_col)
168 const BLOCK_SIZE bsize = mbmi->sb_type; local
331 const BLOCK_SIZE bsize = mi->mbmi.sb_type; local
425 const BLOCK_SIZE bsize = mbmi->sb_type; local
555 const BLOCK_SIZE bsize = mi->mbmi.sb_type; local
    [all...]
  /external/grub/stage2/
fsys_ffs.c 101 int bnum, offset, bsize; local
114 bsize = MAPBUF_LEN;
121 bsize = SUPERBLOCK->fs_bsize;
125 if (! devread (bnum, offset * sizeof (int), bsize, (char *) MAPBUF))
135 mapblock_bsize = bsize;
fsys_ufs2.c 125 int bnum, offset, bsize; local
139 bsize = MAPBUF_LEN;
146 bsize = SUPERBLOCK->fs_bsize;
150 if (! devread (bnum, offset * sizeof (int), bsize, (char *) MAPBUF))
160 mapblock_bsize = bsize;
  /system/core/toolbox/
cat.c 155 static size_t bsize; local
164 bsize = sbuf.st_blksize > CAT_BUFSIZ ?
166 buf = malloc(bsize);
170 bsize = CAT_BUFSIZ;
173 while ((nr = read(rfd, buf, bsize)) > 0)
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data

Completed in 1101 milliseconds

1 2 3 4 5 6 7