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

1 2 3 4 5 6 7 8

  /external/libvpx/vp8/common/
reconintra4x4.c 19 unsigned char *predictor)
50 predictor[c] = expected_dc;
53 predictor += 16;
72 predictor[c] = pred;
75 predictor += 16;
94 predictor[c] = ap[c];
97 predictor += 16;
117 predictor[c] = lp[r];
120 predictor += 16;
127 predictor[0 * 16 + 0] = (ptr[0] + ptr[1] * 2 + ptr[2] + 2) >> 2
    [all...]
recon.c 113 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
117 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
121 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
125 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
133 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
143 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
145 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
147 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
149 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
154 RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride)
    [all...]
mbpitch.c 91 x->block[r*4+c].predictor = x->predictor + r * 4 * 16 + c * 4;
100 x->block[16+r*2+c].predictor = x->predictor + 256 + r * 4 * 8 + c * 4;
110 x->block[20+r*2+c].predictor = x->predictor + 320 + r * 4 * 8 + c * 4;
reconintra.h 20 extern void vp8_predict_intra4x4(BLOCKD *x, int b_mode, unsigned char *Predictor);
reconinter.c 141 unsigned char *pred_ptr = d->predictor;
175 unsigned char *pred_ptr = d->predictor;
194 unsigned char *pred_ptr = d->predictor;
218 unsigned char *upred_ptr = &x->predictor[256];
219 unsigned char *vpred_ptr = &x->predictor[320];
268 unsigned char *pred_ptr = x->predictor;
328 unsigned char *pred_ptr = x->predictor;
329 unsigned char *upred_ptr = &x->predictor[256];
330 unsigned char *vpred_ptr = &x->predictor[320];
496 * situation, we can write the result directly to dst buffer instead of writing it to predictor
    [all...]
reconintra.c 27 RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
37 unsigned char *ypred_ptr = x->predictor;
155 unsigned char *ypred_ptr = x->predictor;
159 ypred_ptr = x->dst.y_buffer; /*x->predictor;*/
283 unsigned char *upred_ptr = &x->predictor[256];
284 unsigned char *vpred_ptr = &x->predictor[320];
421 unsigned char *upred_ptr = x->dst.u_buffer; /*&x->predictor[256];*/
422 unsigned char *vpred_ptr = x->dst.v_buffer; /*&x->predictor[320];*/
  /external/libvpx/vp8/decoder/
reconintra_mt.c 28 unsigned char *ypred_ptr = x->predictor;
156 unsigned char *ypred_ptr = x->predictor;
160 ypred_ptr = x->dst.y_buffer; /*x->predictor;*/
296 unsigned char *upred_ptr = &x->predictor[256];
297 unsigned char *vpred_ptr = &x->predictor[320];
452 unsigned char *upred_ptr = x->dst.u_buffer; /*&x->predictor[256];*/
453 unsigned char *vpred_ptr = x->dst.v_buffer; /*&x->predictor[320];*/
608 unsigned char *predictor,
662 predictor[c] = expected_dc;
665 predictor += 16
    [all...]
reconintra_mt.h 22 extern void vp8mt_predict_intra4x4(VP8D_COMP *pbi, MACROBLOCKD *x, int b_mode, unsigned char *predictor, int mb_row, int mb_col, int num);
  /external/chromium/chrome/browser/net/
predictor_unittest.cc 36 WaitForResolutionHelper(Predictor* predictor, const UrlList& hosts,
38 : predictor_(predictor),
57 Predictor* predictor_;
86 void WaitForResolution(Predictor* predictor, const UrlList& hosts) {
89 new WaitForResolutionHelper(predictor, hosts, timer),
112 scoped_refptr<Predictor> testing_master(
113 new Predictor(host_resolver_.get(),
126 scoped_refptr<Predictor> testing_master
    [all...]
predictor.cc 5 #include "chrome/browser/net/predictor.h"
31 const double Predictor::kPreconnectWorthyExpectedValue = 0.8;
33 const double Predictor::kDNSPreresolutionWorthyExpectedValue = 0.1;
35 const double Predictor::kDiscardableExpectedValue = 0.05;
46 const double Predictor::kReferrerTrimRatio = 0.97153;
49 const TimeDelta Predictor::kDurationBetweenTrimmings = TimeDelta::FromHours(1);
51 const TimeDelta Predictor::kDurationBetweenTrimmingIncrements =
54 const size_t Predictor::kUrlsTrimmedPerIncrement = 5u;
56 class Predictor::LookupRequest {
58 LookupRequest(Predictor* predictor
    [all...]
preconnect.h 25 // Try to preconnect. Typically used by predictor when a subresource probably
predictor_api.h 8 // provided by Predictor to be left as more generally usable code, and possibly
21 #include "chrome/browser/net/predictor.h"
33 Predictor* global_predictor,
64 // Destroy the predictor's internal state: referrers and work queue.
  /external/valgrind/main/cachegrind/
cg_branchpred.c 3 /*--- Branch predictor simulation cg_branchpred.c ---*/
32 /* This file contains the actual branch predictor simulator and its
36 - a taken/not-taken predictor for conditional branches
37 - a branch target address predictor for indirect branches
60 predictor state based on whether or not it was actually taken, as
64 The predictor is an array of 16k (== 2^14) 2-bit saturating
69 makes the predictor able to correlate this branch's behaviour with
72 TODO: use predictor written by someone who understands this stuff.
73 Perhaps it would be better to move to a standard GShare predictor
74 and/or tournament predictor
    [all...]
  /external/libvpx/vp8/common/arm/
reconintra_arm.c 30 unsigned char *ypred_ptr = x->predictor;
53 unsigned char *ypred_ptr = x->predictor;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
predict.def 24 This macro will be called once for each predictor. The ENUM will
25 be of type `enum predictor', and will enumerate all supported
27 in the first match combining heuristics, the predictor appearing
30 NAME is used in the debugging output to determine predictor type.
32 HITRATE is the probability that edge predicted by predictor as taken
cfghooks.h 70 /* Predict edge E using PREDICTOR to given PROBABILITY. */
71 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
74 PREDICTOR. */
75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
161 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
  /external/libvpx/vp8/encoder/
encodeintra.c 35 vp8_predict_intra4x4(b, best_mode, b->predictor);
45 RECON_INVOKE(&rtcd->common->recon, recon)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
72 ENCODEMB_INVOKE(&rtcd->encodemb, submby)(x->src_diff, x->src.y_buffer, x->e_mbd.predictor, x->src.y_stride);
123 ENCODEMB_INVOKE(&rtcd->encodemb, submbuv)(x->src_diff, x->src.u_buffer, x->src.v_buffer, x->e_mbd.predictor, x->src.uv_stride);
  /external/ppp/pppd/
ccp.h 36 bool predictor_1; /* do Predictor-1? */
37 bool predictor_2; /* do Predictor-2? */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cfghooks.h 70 /* Predict edge E using PREDICTOR to given PROBABILITY. */
71 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
74 PREDICTOR. */
75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
161 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
predict.def 24 This macro will be called once for each predictor. The ENUM will
25 be of type `enum predictor', and will enumerate all supported
27 in the first match combining heuristics, the predictor appearing
30 NAME is used in the debugging output to determine predictor type.
32 HITRATE is the probability that edge predicted by predictor as taken
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cfghooks.h 70 /* Predict edge E using PREDICTOR to given PROBABILITY. */
71 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
74 PREDICTOR. */
75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
161 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
predict.def 24 This macro will be called once for each predictor. The ENUM will
25 be of type `enum predictor', and will enumerate all supported
27 in the first match combining heuristics, the predictor appearing
30 NAME is used in the debugging output to determine predictor type.
32 HITRATE is the probability that edge predicted by predictor as taken
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cfghooks.h 70 /* Predict edge E using PREDICTOR to given PROBABILITY. */
71 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
74 PREDICTOR. */
75 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
161 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
162 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
predict.def 24 This macro will be called once for each predictor. The ENUM will
25 be of type `enum predictor', and will enumerate all supported
27 in the first match combining heuristics, the predictor appearing
30 NAME is used in the debugging output to determine predictor type.
32 HITRATE is the probability that edge predicted by predictor as taken
  /external/libvpx/vp8/encoder/x86/
x86_csystemdependent.c 70 short *diff, unsigned char *predictor,
77 unsigned char *predictor = &bd->predictor[0]; local
78 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
126 short *diff, unsigned char *predictor,
133 unsigned char *predictor = &bd->predictor[0]; local
134 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);

Completed in 499 milliseconds

1 2 3 4 5 6 7 8