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

1 2

  /external/libvpx/vp8/encoder/
encodeintra.h 19 void vp8_encode_intra4x4block(const VP8_ENCODER_RTCD *, MACROBLOCK *x, BLOCK *be, BLOCKD *b, int best_mode);
20 void vp8_encode_intra4x4block_rd(const VP8_ENCODER_RTCD *, MACROBLOCK *x, BLOCK *be, BLOCKD *b, int best_mode);
quantize.h 18 void (sym)(BLOCK *b,BLOCKD *d)
50 extern void vp8_strict_quantize_b(BLOCK *b,BLOCKD *d);
mcomp.h 38 BLOCKD *d,
51 (MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *bestmv, MV *ref_mv,
63 BLOCKD *d, \
78 BLOCKD *d, \
asm_enc_offsets.c 16 #include "vp8/common/blockd.h"
46 DEFINE(vp8_blockd_qcoeff, offsetof(BLOCKD, qcoeff));
47 DEFINE(vp8_blockd_dequant, offsetof(BLOCKD, dequant));
48 DEFINE(vp8_blockd_dqcoeff, offsetof(BLOCKD, dqcoeff));
49 DEFINE(vp8_blockd_eob, offsetof(BLOCKD, eob));
57 DEFINE(vp8_blockd_predictor, offsetof(BLOCKD, predictor));
encodeintra.c 33 void vp8_encode_intra4x4block(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x, BLOCK *be, BLOCKD *b, int best_mode)
58 BLOCKD *b = &x->block[i];
94 BLOCKD *d = &x->e_mbd.block[b];
block.h 16 #include "vp8/common/blockd.h"
120 void (*quantize_b)(BLOCK *b, BLOCKD *d);
quantize.c 21 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
69 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d)
105 void vp8_regular_quantize_b(BLOCK *b, BLOCKD *d)
158 void vp8_strict_quantize_b(BLOCK *b, BLOCKD *d)
217 void vp8_regular_quantize_b(BLOCK *b, BLOCKD *d)
encodemb.h 28 void (sym)(BLOCK *be,BLOCKD *bd, int pitch)
tokenize.c 98 const BLOCKD *const b,
149 const BLOCKD *const b,
416 const BLOCKD *const b,
446 const BLOCKD *const b,
475 const BLOCKD *const b,
mcomp.c 198 int vp8_find_best_sub_pixel_step_iteratively(MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *bestmv, MV *ref_mv, int error_per_bit, const vp8_variance_fn_ptr_t *vfp, int *mvcost[2])
312 int vp8_find_best_sub_pixel_step(MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *bestmv, MV *ref_mv, int error_per_bit, const vp8_variance_fn_ptr_t *vfp, int *mvcost[2])
598 int vp8_find_best_half_pixel_step(MACROBLOCK *mb, BLOCK *b, BLOCKD *d, MV *bestmv, MV *ref_mv, int error_per_bit, const vp8_variance_fn_ptr_t *vfp, int *mvcost[2])
774 BLOCKD *d,
911 BLOCKD *d,
1027 BLOCKD *d,
    [all...]
  /external/libvpx/vp8/common/
reconintra.h 20 extern void vp8_predict_intra4x4(BLOCKD *x, int b_mode, unsigned char *Predictor);
invtrans.h 17 #include "blockd.h"
18 extern void vp8_inverse_transform_b(const vp8_idct_rtcd_vtable_t *rtcd, BLOCKD *b, int pitch);
reconinter.h 20 extern void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, vp8_subpix_fn_t sppf);
invtrans.c 18 BLOCKD *b = &x->block[24];
28 void vp8_inverse_transform_b(const vp8_idct_rtcd_vtable_t *rtcd, BLOCKD *b, int pitch)
recon.c 14 #include "blockd.h"
112 BLOCKD *b = &x->block[0];
131 BLOCKD *b = &x->block[i];
141 BLOCKD *b = &x->block[0];
169 BLOCKD *b = &x->block[i];
176 BLOCKD *b = &x->block[i];
reconinter.c 15 #include "blockd.h"
136 void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, vp8_subpix_fn_t sppf)
171 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, int pitch)
190 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, int pitch)
245 BLOCKD *d0 = &x->block[i];
246 BLOCKD *d1 = &x->block[i+1];
293 BLOCKD *d = &x->block[bbb[i]];
302 BLOCKD *d0 = &x->block[i];
303 BLOCKD *d1 = &x->block[i+1];
374 BLOCKD *d = &x->block[bbb[i]]
    [all...]
blockd.h 211 } BLOCKD;
223 BLOCKD block[25];
mbpitch.c 12 #include "blockd.h"
22 BLOCKD *b,
  /external/libvpx/vp8/decoder/arm/
dequantize_arm.c 27 void vp8_dequantize_b_neon(BLOCKD *d)
39 void vp8_dequantize_b_v6(BLOCKD *d)
  /external/libvpx/vp8/encoder/arm/
quantize_arm.c 29 void vp8_fast_quantize_b_neon(BLOCK *b, BLOCKD *d)
36 void vp8_fast_quantize_b_neon(BLOCK *b,BLOCKD *d)
  /external/libvpx/vp8/decoder/x86/
x86_dsystemdependent.c 20 static void dequantize_b_mmx(BLOCKD *d)
  /external/libvpx/vp8/decoder/
dequantize.h 14 #include "vp8/common/blockd.h"
17 void sym(BLOCKD *x)
dequantize.c 21 void vp8_dequantize_b_c(BLOCKD *d)
  /external/libvpx/vp8/encoder/ppc/
csystemdependent.c 46 void (*vp8_subtract_b)(BLOCK *be, BLOCKD *bd, int pitch);
49 void (*vp8_fast_quantize_b)(BLOCK *b, BLOCKD *d);
66 extern void vp8_subtract_b_c(BLOCK *be, BLOCKD *bd, int pitch);
69 extern void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d);
  /external/libvpx/vp8/encoder/x86/
x86_csystemdependent.c 29 static void fast_quantize_b_mmx(BLOCK *b, BLOCKD *d)
72 static void subtract_b_mmx(BLOCK *be, BLOCKD *bd, int pitch)
88 static void fast_quantize_b_sse2(BLOCK *b, BLOCKD *d)
128 static void subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch)
144 static void fast_quantize_b_ssse3(BLOCK *b, BLOCKD *d)

Completed in 86 milliseconds

1 2