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

1 2

  /external/libvpx/libvpx/vp8/common/
mbpitch.c 18 x->block[r * 4 + c].predictor = x->predictor + r * 4 * 16 + c * 4;
24 x->block[16 + r * 2 + c].predictor =
25 x->predictor + 256 + r * 4 * 8 + c * 4;
31 x->block[20 + r * 2 + c].predictor =
32 x->predictor + 320 + r * 4 * 8 + c * 4;
blockd.h 185 unsigned char *predictor; member in struct:blockd
198 DECLARE_ALIGNED(16, unsigned char, predictor[384]);
reconinter.c 62 unsigned char *pred_ptr = d->predictor;
138 unsigned char *upred_ptr = &x->predictor[256];
139 unsigned char *vpred_ptr = &x->predictor[320];
212 build_inter_predictors2b(x, d0, d0->predictor, 8, base_pre, pre_stride);
227 build_inter_predictors2b(x, d0, d0->predictor, 8, base_pre, pre_stride);
  /external/pdfium/core/fxcodec/codec/
ccodec_flatemodule.h 24 int predictor,
32 int predictor,
fx_codec_flate.cpp 626 int predictor,
674 int predictor,
687 if (predictor) {
688 if (predictor >= 10) {
690 } else if (predictor == 2) {
783 int predictor,
788 pDecoder->Create(src_buf, src_size, width, height, nComps, bpc, predictor,
797 int predictor,
807 if (predictor) {
808 if (predictor >= 10)
    [all...]
  /external/pdfium/third_party/libtiff/
tif_predict.h 30 * ``Library-private'' Support for the Predictor Tag
34 * Codecs that want to support the Predictor tag must place
36 * the predictor code can cast tif_data to find its state.
39 int predictor; /* predictor tag value */ member in struct:__anon28637
tif_predict.c 30 * Predictor Tag Support (used by multiple codecs).
62 switch (sp->predictor) /* no differencing */
71 "Horizontal differencing \"Predictor\" not supported with %d-bit samples",
79 "Floating point \"Predictor\" not supported with %d data format",
86 "\"Predictor\" value %d not supported",
87 sp->predictor);
117 if (sp->predictor == 2) {
125 * predictor stuff.
155 else if (sp->predictor == 3) {
159 * predictor stuff
    [all...]
tif_aux.c 213 *va_arg(ap, uint16*) = (uint16) sp->predictor;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfghooks.h 69 /* Predict edge E using PREDICTOR to given PROBABILITY. */
70 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
73 PREDICTOR. */
74 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
176 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
177 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 55 vp8_intra4x4_predict(Above, yleft, dst_stride, b->bmi.as_mode, b->predictor,
65 vp8_short_idct4x4llm(b->dqcoeff, b->predictor, 16, dst, dst_stride);
67 vp8_dc_only_idct_add(b->dqcoeff[0], b->predictor, 16, dst, dst_stride);
temporal_filter.c 201 DECLARE_ALIGNED(16, unsigned char, predictor[16 * 16 + 8 * 8 + 8 * 8]);
269 mbd->block[0].bmi.mv.as_mv.col, predictor);
273 predictor, 16, strength, filter_weight,
277 predictor + 256, 8, strength, filter_weight,
281 predictor + 320, 8, strength, filter_weight,
rdopt.c 419 int pt; /* surrounding block/prev coef predictor */
479 mb->block[0].src_stride, mb->e_mbd.predictor, 16);
509 static void copy_predictor(unsigned char *dst, const unsigned char *predictor) {
510 const unsigned int *p = (const unsigned int *)predictor;
532 * The predictor buffer is a 2d buffer with a stride of 16. Create
551 vp8_intra4x4_predict(Above, yleft, dst_stride, mode, b->predictor, 16,
574 copy_predictor(best_predictor, b->predictor);
660 xd->predictor, 16);
711 x->src.uv_stride, &x->e_mbd.predictor[256],
712 &x->e_mbd.predictor[320], 8)
    [all...]
pickinter.c 241 dptr = b->predictor;
269 vp8_intra4x4_predict(Above, yleft, dst_stride, mode, b->predictor, 16,
957 x->e_mbd.predictor, 16, &sse);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 307 uint8_t *predictor; local
309 DECLARE_ALIGNED(16, uint8_t, predictor[16 * 16 * 3]);
320 predictor = CONVERT_TO_BYTEPTR(predictor16);
322 predictor = predictor8;
383 mb_uv_width, mb_uv_height, ref_mv.row, ref_mv.col, predictor, scale,
391 f->y_buffer + mb_y_offset, f->y_stride, predictor, 16, 16,
394 f->u_buffer + mb_uv_offset, f->uv_stride, predictor + 256,
398 f->v_buffer + mb_uv_offset, f->uv_stride, predictor + 512,
404 predictor, 16, 16, strength, filter_weight,
407 predictor + 256, mb_uv_width, mb_uv_height
    [all...]
  /external/libyuv/files/tools/ubsan/
vptr_blacklist.txt 89 # obj/chrome/libbrowser.a(obj/chrome/browser/net/browser.predictor.o):../../chrome/browser/net/predictor.cc:__unnamed_577: error: undefined reference to 'typeinfo for ProxyAdvisor'
90 src:*/chrome/browser/net/predictor.cc
  /external/libvpx/libvpx/vp8/encoder/x86/
temporal_filter_apply_sse2.asm 59 mov rdx, arg(2) ; predictor frame
94 movdqa xmm2, [rdx] ; predictor (frame2)
141 ; load and extract the predictor up to shorts
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_decode.cpp 284 int predictor = 0; local
287 predictor = pParams->GetIntegerFor("Predictor");
295 src_buf, src_size, width, height, nComps, bpc, predictor, Colors,
306 int predictor = 0; local
312 predictor = pParams->GetIntegerFor("Predictor");
321 bLZW, src_buf, src_size, bEarlyChange, predictor, Colors,
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 53 * Note that k=1 results in a much smaller predictor for the
  /external/dng_sdk/source/
dng_lossless_jpeg.cpp 1221 // pixels for predictor calculation.
1386 * Calculate the predictor for sample curRowBuf[col][curComp].
1394 * predictor is passed out.
2515 int32 predictor = QuickPredict (col, local
2978 int32 predictor [4]; local
3084 int32 predictor [4]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 43 ; * [out]predQP quantization parameter of the predictor block
omxVCM4P2_PredictReconCoefIntra_s.s 51 ; * the predictor block are in the same macroblock.
52 ; * [in] predQP quantization parameter of the predictor block
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 43 ; * [out]predQP quantization parameter of the predictor block
omxVCM4P2_PredictReconCoefIntra_s.s 51 ; * the predictor block are in the same macroblock.
52 ; * [in] predQP quantization parameter of the predictor block
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Common/Arm/
ArmLibSupport.S 131 mcr p15,0,R9,c7,c5,6 @ BPIALL Invalidate Branch predictor array. R9 == NoOp
139 mcr p15,0,R9,c7,c5,6 @ BPIALL Invalidate Branch predictor array. R9 == NoOp
  /external/libavc/common/arm/
ih264_inter_pred_luma_horz_qpel_vert_qpel_a9q.s 49 @* predictor values, then applies the same filter in the
50 @* vertical direction on the predictor values. It then averages these

Completed in 594 milliseconds

1 2