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

12 3 4

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_cost.c 39 const vp9_prob prob = probs[i / 2]; local
43 const int cc = c + vp9_cost_bit(prob, b);
  /external/guava/guava-tests/benchmark/com/google/common/base/
CharMatcherBenchmark.java 169 int r = prob.length - 1;
170 int c = prob.length / 2;
171 int lv = prob[l];
172 int rv = prob[r];
173 int cv = prob[c];
186 cv = prob[c];
193 cv = prob[c];
199 private static int[] prob; field in class:CharMatcherBenchmark.CharSamples
202 prob = new int[10003];
    [all...]
  /external/lzma/C/
Bcj2.c 61 CProb *prob; local
85 prob = p + prevByte;
87 prob = p + 256;
89 prob = p + 257;
91 IF_BIT_0(prob)
93 UPDATE_0(prob)
100 UPDATE_1(prob)
Ppmd7Enc.c 117 UInt16 *prob = Ppmd7_GetBinSumm(p); local
121 RangeEnc_EncodeBit_0(rc, *prob);
122 *prob = (UInt16)PPMD_UPDATE_PROB_0(*prob);
129 RangeEnc_EncodeBit_1(rc, *prob);
130 *prob = (UInt16)PPMD_UPDATE_PROB_1(*prob);
131 p->InitEsc = PPMD7_kExpEscape[*prob >> 10];
Ppmd7Dec.c 122 UInt16 *prob = Ppmd7_GetBinSumm(p); local
123 if (rc->DecodeBit(rc, *prob) == 0)
126 *prob = (UInt16)PPMD_UPDATE_PROB_0(*prob);
131 *prob = (UInt16)PPMD_UPDATE_PROB_1(*prob);
132 p->InitEsc = PPMD7_kExpEscape[*prob >> 10];
  /external/libvpx/libvpx/vp9/decoder/
vp9_reader.h 55 static INLINE int vp9_read(vp9_reader *r, int prob) {
61 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_reader.h 47 static int vp9_read(vp9_reader *r, int prob) {
53 unsigned int split = (r->range * prob + (256 - prob)) >> CHAR_BIT;
  /external/libvpx/libvpx/vp9/common/
vp9_prob.h 67 const vp9_prob prob = get_binary_prob(ct[0], ct[1]); local
70 return weighted_prob(pre_prob, prob, factor);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_prob.h 76 const vp9_prob prob = get_binary_prob(ct[0], ct[1]); local
79 return weighted_prob(pre_prob, prob, factor);
vp9_entropy.h 51 const vp9_prob *prob; member in struct:__anon24191
  /external/libnl/lib/route/sch/
netem.c 395 * @arg prob New re-ordering probability.
398 int rtnl_netem_set_reorder_probability(struct rtnl_qdisc *qdisc, int prob)
406 netem->qnm_ro.nmro_probability = prob;
431 * @arg prob New re-ordering correlation probability.
434 int rtnl_netem_set_reorder_correlation(struct rtnl_qdisc *qdisc, int prob)
442 netem->qnm_ro.nmro_correlation = prob;
474 * @arg prob New corruption probability.
477 int rtnl_netem_set_corruption_probability(struct rtnl_qdisc *qdisc, int prob)
485 netem->qnm_crpt.nmcr_probability = prob;
510 * @arg prob New corruption correlation probability
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 29 const vp8_prob *p = mvc->prob;
102 const vp8_prob *p = mvc->prob;
156 mvcost [0] [i] = cost0 + vp8_cost_zero(mvc[0].prob[MVPsign]);
157 mvcost [0] [-i] = cost0 + vp8_cost_one(mvc[0].prob[MVPsign]);
172 mvcost [1] [i] = cost1 + vp8_cost_zero(mvc[1].prob[MVPsign]);
173 mvcost [1] [-i] = cost1 + vp8_cost_one(mvc[1].prob[MVPsign]);
233 vp8_prob *Pcur = cur_mvc->prob;
234 const vp8_prob *default_mvc = default_mvc_->prob;
235 const vp8_prob *Pupdate = update_mvc->prob;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
encodemv.c 29 const vp8_prob *p = mvc->prob;
102 const vp8_prob *p = mvc->prob;
156 mvcost [0] [i] = cost0 + vp8_cost_zero(mvc[0].prob[MVPsign]);
157 mvcost [0] [-i] = cost0 + vp8_cost_one(mvc[0].prob[MVPsign]);
172 mvcost [1] [i] = cost1 + vp8_cost_zero(mvc[1].prob[MVPsign]);
173 mvcost [1] [-i] = cost1 + vp8_cost_one(mvc[1].prob[MVPsign]);
233 vp8_prob *Pcur = cur_mvc->prob;
234 const vp8_prob *default_mvc = default_mvc_->prob;
235 const vp8_prob *Pupdate = update_mvc->prob;
  /external/libvpx/libvpx/vp8/common/
entropy.h 47 const vp8_prob *prob; member in struct:__anon13769
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
entropy.h 47 const vp8_prob *prob; member in struct:__anon24132
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 89 static int GetCoeffs(BOOL_DECODER *br, ProbaArray prob,
92 const uint8_t* p = prob[n][ctx];
102 p = prob[kBands[n]][0];
109 p = prob[kBands[n]][1];
152 p = prob[kBands[n]][2];
decodemv.c 124 const vp8_prob *up = vp8_mv_update_probs[i].prob;
221 const vp8_prob * prob; local
223 prob = vp8_sub_mv_ref_prob3[(aez << 2) |
227 return prob;
261 const vp8_prob *prob; local
286 prob = get_sub_mv_ref_prob(leftmv.as_int, abovemv.as_int);
288 if( vp8_read(bc, prob[0]) )
290 if( vp8_read(bc, prob[1]) )
293 if( vp8_read(bc, prob[2]) )
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
detokenize.c 89 static int GetCoeffs(BOOL_DECODER *br, ProbaArray prob,
92 const uint8_t* p = prob[n][ctx];
102 p = prob[kBands[n]][0];
109 p = prob[kBands[n]][1];
152 p = prob[kBands[n]][2];
decodemv.c 124 const vp8_prob *up = vp8_mv_update_probs[i].prob;
221 const vp8_prob * prob; local
223 prob = vp8_sub_mv_ref_prob3[(aez << 2) |
227 return prob;
261 const vp8_prob *prob; local
286 prob = get_sub_mv_ref_prob(leftmv.as_int, abovemv.as_int);
288 if( vp8_read(bc, prob[0]) )
290 if( vp8_read(bc, prob[1]) )
293 if( vp8_read(bc, prob[2]) )
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
mqc.h 115 @param prob Number that identifies the probability of the symbols for the new state of the context
117 void opj_mqc_setstate(opj_mqc_t *mqc, OPJ_UINT32 ctxno, OPJ_UINT32 msb, OPJ_INT32 prob);
  /external/webp/src/enc/
cost.h 33 ProbaArray* prob; member in struct:__anon21227
  /external/webp/src/utils/
bit_reader_inl.h 108 // Read a bit with proba 'prob'. Speed-critical function!
109 static WEBP_INLINE int VP8GetBit(VP8BitReader* const br, int prob) {
119 const range_t split = (range * prob) >> 8;
150 // simplified version of VP8GetBit() for prob=0x80 (note shift is always 1 here)
bit_writer.h 46 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob);
  /external/opencv/ml/src/
ml_inner_functions.cpp 1854 double prob, maxprob, sum; local
1930 double prob; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 942 check_probability (int prob)
944 gcc_checking_assert (prob >= 0 && prob <= REG_BR_PROB_BASE);
958 /* Apply probability PROB on frequency or count FREQ. */
    [all...]

Completed in 339 milliseconds

12 3 4