HomeSort by relevance Sort by last modified time
    Searched refs:bsize (Results 26 - 50 of 160) sorted by null

12 3 4 5 6 7

  /external/opencv/cvaux/src/
cvfindhandregion.cpp 72 float value, vmin, vmax, vl, bsize, vc; local
171 bsize = vl / nbins;
176 l = cvRound( (vv[i] - vmin) / bsize );
201 hand_left = vmin + left * bsize;
216 hand_right = vmax - (nbins - right - 1) * bsize;
294 float value, vmin, vmax, vl, bsize, bsizej, vc, vcl, vcr; local
457 bsize = vl / nbins;
462 l = cvRound( (vv[i] - vmin) / bsize );
505 hand_left = vmin + left * bsize;
511 hand_right = vmax - (nbins - right - 1) * bsize;
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_blockd.h 314 static BLOCK_SIZE get_subsize(BLOCK_SIZE bsize, PARTITION_TYPE partition) {
315 const BLOCK_SIZE subsize = subsize_lookup[partition][bsize];
368 static BLOCK_SIZE get_plane_block_size(BLOCK_SIZE bsize,
370 BLOCK_SIZE bs = ss_size_lookup[bsize][pd->subsampling_x][pd->subsampling_y];
375 static INLINE int plane_block_width(BLOCK_SIZE bsize,
377 return 4 << (b_width_log2(bsize) - plane->subsampling_x);
380 static INLINE int plane_block_height(BLOCK_SIZE bsize,
382 return 4 << (b_height_log2(bsize) - plane->subsampling_y);
391 const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
400 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd)
    [all...]
vp9_reconinter.h 19 BLOCK_SIZE bsize);
22 BLOCK_SIZE bsize);
25 BLOCK_SIZE bsize);
vp9_pred_common.c 395 void vp9_set_pred_flag_mbskip(MACROBLOCKD *xd, BLOCK_SIZE bsize,
401 BLOCK_SIZE bsize, int mi_row, int mi_col) {
403 const int bw = 1 << mi_width_log2(bsize);
404 const int bh = 1 << mi_height_log2(bsize);
vp9_entropy.h 159 static INLINE void reset_skip_context(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
163 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 179 int q, i, bsize; local
211 for (bsize = 0; bsize < BLOCK_SIZES; ++bsize) {
215 int thresh_max = INT_MAX / (q * rd_thresh_block_size_factor[bsize]);
219 cpi->rd_threshes[bsize][i] =
221 rd_thresh_block_size_factor[bsize] / (4 * 100);
223 cpi->rd_threshes[bsize][i] = INT_MAX;
230 for (bsize = 0; bsize < BLOCK_SIZES; ++bsize)
1144 const BLOCK_SIZE bsize = xd->this_mi->mbmi.sb_type; local
1518 const BLOCK_SIZE bsize = mi->mbmi.sb_type; local
1653 const BLOCK_SIZE bsize = mbmi->sb_type; local
    [all...]
vp9_tokenize.c 194 int vp9_sb_is_skippable(MACROBLOCKD *xd, BLOCK_SIZE bsize) {
197 foreach_transformed_block(xd, bsize, is_skippable, &args);
201 int vp9_is_skippable_in_plane(MACROBLOCKD *xd, BLOCK_SIZE bsize,
205 foreach_transformed_block_in_plane(xd, bsize, plane, is_skippable, &args);
210 BLOCK_SIZE bsize) {
220 mbmi->skip_coeff = vp9_sb_is_skippable(xd, bsize);
224 reset_skip_context(xd, bsize);
232 foreach_transformed_block(xd, bsize, tokenize_b, &arg);
234 foreach_transformed_block(xd, bsize, set_entropy_context_b, &arg);
vp9_encodemb.c 72 static void subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
76 const int bw = plane_block_width(bsize, pd);
77 const int bh = plane_block_height(bsize, pd);
84 void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize) {
85 subtract_plane(x, bsize, 0);
88 void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize) {
92 subtract_plane(x, bsize, i);
95 void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize) {
96 vp9_subtract_sby(x, bsize);
97 vp9_subtract_sbuv(x, bsize);
    [all...]
vp9_segmentation.c 141 const BLOCK_SIZE bsize = mi_8x8[0]->mbmi.sb_type; local
144 bsize, mi_row, mi_col);
164 BLOCK_SIZE bsize) {
168 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2;
191 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
vp9_bitstream.c 202 TX_SIZE tx_size, BLOCK_SIZE bsize,
207 if (bsize >= BLOCK_16X16 && tx_size != TX_4X4) {
209 if (bsize >= BLOCK_32X32 && tx_size != TX_8X8)
411 const BLOCK_SIZE bsize = mi->sb_type; local
438 if (bsize >= BLOCK_8X8 && cm->tx_mode == TX_MODE_SELECT &&
441 write_selected_tx_size(cpi, m, mi->tx_size, bsize, bc);
449 if (bsize >= BLOCK_8X8) {
450 write_intra_mode(bc, mode, cm->fc.y_mode_prob[size_group_lookup[bsize]]);
453 const int num_4x4_blocks_wide = num_4x4_blocks_wide_lookup[bsize];
454 const int num_4x4_blocks_high = num_4x4_blocks_high_lookup[bsize];
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 149 static int decode_tokens(VP9D_COMP *pbi, BLOCK_SIZE bsize, vp9_reader *r) {
155 reset_skip_context(xd, bsize);
163 return vp9_decode_tokens(pbi, r, bsize);
167 static void set_offsets(VP9D_COMP *pbi, BLOCK_SIZE bsize,
171 const int bh = num_8x8_blocks_high_lookup[bsize];
172 const int bw = num_8x8_blocks_wide_lookup[bsize];
183 xd->this_mi->mbmi.sb_type = bsize;
217 vp9_reader *r, BLOCK_SIZE bsize) {
220 const int less8x8 = bsize < BLOCK_8X8;
227 set_offsets(pbi, bsize, mi_row, mi_col)
    [all...]
vp9_detokenize.c 244 int vp9_decode_tokens(VP9D_COMP *pbi, vp9_reader *r, BLOCK_SIZE bsize) {
247 foreach_transformed_block(&pbi->mb, bsize, decode_block, &args);
  /external/stlport/src/
num_put_float.cpp 231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
233 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
234 { return fcvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
236 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf, size_t bsize)
237 { return qecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
238 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf, size_t bsize)
239 { return qfcvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
254 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
255 { return (ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
233 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
234 { return fcvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
236 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf, size_t bsize)
237 { return qecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
238 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf, size_t bsize)
239 { return qfcvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; }
254 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
255 { return (ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0);
    [all...]
  /external/chromium_org/third_party/zlib/
zutil.c 219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 122 int bsize = 64; local
123 int worksize = N*bsize;
139 int bsize = 64; local
140 int worksize = N*bsize;
  /external/zlib/src/
zutil.c 223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
  /external/grub/stage2/
fsys_xfs.c 36 int bsize; member in struct:xfs_info
466 xfs.bsize = le32 (super.sb_blocksize);
472 xfs.dirbsize = xfs.bsize << super.sb_dirblklog;
479 ((xfs.bsize - sizeof(xfs_btree_block_t)) /
543 char linkbuf[xfs.bsize];
558 if (di_size < xfs.bsize - 1) {
568 while (n < (xfs.bsize - 1) && (linkbuf[n++] = *dirname++));
  /external/chromium_org/third_party/openssl/openssl/apps/
enc.c 75 #undef BSIZE
79 #define BSIZE (8*1024)
108 int bsize=BSIZE,verbose=0; local
370 bsize=(int)n;
371 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
375 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
378 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
662 inl=BIO_read(rbio,(char *)buff,bsize);
  /external/openssl/apps/
enc.c 75 #undef BSIZE
79 #define BSIZE (8*1024)
108 int bsize=BSIZE,verbose=0; local
370 bsize=(int)n;
371 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
375 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
378 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
662 inl=BIO_read(rbio,(char *)buff,bsize);
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 274 unsigned char bsize; member in struct:linux_cache_key::param
276 unsigned char bsize;
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 274 unsigned char bsize; member in struct:linux_cache_key::param
276 unsigned char bsize;
  /external/qemu/
a.out.h 77 host_ulong bsize; /* uninitialized data " " */ member in struct:__anon26393
375 host_ulong bsize; /* uninitialized data " " */ member in struct:__anon26407
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 274 unsigned char bsize; member in struct:linux_cache_key::param
276 unsigned char bsize;
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 274 unsigned char bsize; member in struct:linux_cache_key::param
276 unsigned char bsize;

Completed in 783 milliseconds

12 3 4 5 6 7