HomeSort by relevance Sort by last modified time
    Searched full:probs (Results 26 - 50 of 69) sorted by null

12 3

  /external/lzma/C/
LzmaDec.h 15 but memory usage for CLzmaDec::probs will be doubled in that case */
53 CLzmaProb *probs; member in struct:__anon15833
71 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
LzmaEnc.c 575 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol)
580 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
593 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
636 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices)
642 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1);
649 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices)
657 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
666 static void RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol)
675 RangeEnc_EncodeBit(rc, probs + m, bit);
1012 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1225 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1782 CLzmaProb *probs; local
1980 CLzmaProb *probs = p->posSlotEncoder[i]; local
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 184 where Pr{xi = k} == probs[k], 0 < k < len - 1. */
185 CV_IMPL void cvRandSeries( float probs[], int len, int sample[], int amount )
195 knots[0] = probs[0];
197 knots[i] = knots[i - 1] + probs[i];
    [all...]
_ml.h 261 /* Fills the <labels> using <probs> by choosing the maximal probability. Outliers are
266 void icvFindClusterLabels( const CvMat* probs, float outlier_thresh, float r,
318 (labels and/or centers and/or probs) back to the output arrays */
322 const CvMat* probs, CvMat* dst_probs,
mlcnn.cpp 51 CvMat* probs CV_DEFAULT(0) );
316 CvMat* probs )
345 cvPreparePredictData( _image, img_size, 0, nclasses, probs, &img_data );
362 probs_data = probs ? probs->data.fl : 0;
372 if( probs )
376 if( probs )
378 cvExp( probs, probs );
379 CvScalar sum = cvSum( probs );
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_prob.h 75 unsigned int max_update_factor, vp9_prob *probs);
vp9_entropy.h 141 // 128 lists of probabilities are stored for the following ONE node probs:
vp9_entropymv.c 191 const unsigned int *counts, vp9_prob *probs) {
193 MV_MAX_UPDATE_FACTOR, probs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_prob.h 84 unsigned int max_update_factor, vp9_prob *probs);
vp9_entropy.h 126 // 128 lists of probabilities are stored for the following ONE node probs:
vp9_entropymv.c 191 const unsigned int *counts, vp9_prob *probs) {
193 MV_MAX_UPDATE_FACTOR, probs);
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 50 const vp9_prob *probs) {
51 vp9_write_token(w, vp9_intra_mode_tree, probs, &intra_mode_encodings[mode]);
55 const vp9_prob *probs) {
57 vp9_write_token(w, vp9_inter_mode_tree, probs,
67 vp9_prob probs[/*n - 1*/],
78 vp9_cond_prob_diff_update(w, &probs[i], branch_ct[i]);
396 const vp9_prob *const probs = get_partition_probs(cm, ctx); local
401 vp9_write_token(w, vp9_partition_tree, probs, &partition_encodings[p]);
404 vp9_write(w, p == PARTITION_SPLIT, probs[1]);
407 vp9_write(w, p == PARTITION_SPLIT, probs[2])
    [all...]
vp9_encodemv.c 150 vp9_prob probs[/*n - 1*/],
161 update_mv(w, branch_ct[i], &probs[i], MV_UPDATE_PROB);
vp9_rd.c 84 vp9_prob probs[ENTROPY_NODES]; local
85 vp9_model_to_full_probs(p[t][i][j][k][l], probs);
86 vp9_cost_tokens((int *)c[t][i][j][k][0][l], probs,
88 vp9_cost_tokens_skip((int *)c[t][i][j][k][1][l], probs,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_bitstream.c 51 const vp9_prob *probs) {
52 vp9_write_token(w, vp9_intra_mode_tree, probs, &intra_mode_encodings[mode]);
56 const vp9_prob *probs) {
58 vp9_write_token(w, vp9_inter_mode_tree, probs,
68 vp9_prob probs[/*n - 1*/],
79 vp9_cond_prob_diff_update(w, &probs[i], branch_ct[i]);
399 const vp9_prob *const probs = get_partition_probs(cm, ctx); local
404 vp9_write_token(w, vp9_partition_tree, probs, &partition_encodings[p]);
407 vp9_write(w, p == PARTITION_SPLIT, probs[1]);
410 vp9_write(w, p == PARTITION_SPLIT, probs[2])
    [all...]
vp9_encodemv.c 150 vp9_prob probs[/*n - 1*/],
161 update_mv(w, branch_ct[i], &probs[i], MV_UPDATE_PROB);
  /external/libvpx/libvpx/vp8/common/
onyxc_int.h 44 vp8_prob ymode_prob [VP8_YMODES-1]; /* interframe intra mode probs */
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyxc_int.h 44 vp8_prob ymode_prob [VP8_YMODES-1]; /* interframe intra mode probs */
  /external/webrtc/src/common_audio/vad/
vad_core.c 349 WebRtc_Word32 probn[NUM_MODELS], probs[NUM_MODELS]; local
412 probs[0] = (WebRtc_Word32)(kSpeechDataWeights[n] * tmp32_1);
415 probs[1] = (WebRtc_Word32)(kSpeechDataWeights[n + NUM_CHANNELS] * tmp32_1);
416 h1test = probs[0] + probs[1]; // Q27
462 tmp32_1 = probs[0] & 0xFFFFF000;
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c 822 const unsigned int probs[PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS],
831 out[i] += probs[j][i];
864 const unsigned int (*probs)[MAX_ENTROPY_TOKENS];
869 probs = (const unsigned int (*)[MAX_ENTROPY_TOKENS])
874 probs = default_coef_counts[i][j];
876 sum_probs_over_prev_coef_context(probs, prev_coef_count_sum);
882 /* calc probs and branch cts for this frame only */
942 /* calc probs and branch cts for this frame only */
1122 /* calc probs and branch cts for this frame only */
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
bitstream.c 823 const unsigned int probs[PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS],
832 out[i] += probs[j][i];
865 const unsigned int (*probs)[MAX_ENTROPY_TOKENS];
870 probs = (const unsigned int (*)[MAX_ENTROPY_TOKENS])
875 probs = default_coef_counts[i][j];
877 sum_probs_over_prev_coef_context(probs, prev_coef_count_sum);
883 /* calc probs and branch cts for this frame only */
943 /* calc probs and branch cts for this frame only */
1123 /* calc probs and branch cts for this frame only */
    [all...]
  /external/toybox/toys/pending/
xzcat.c 1731 uint16_t *probs; local
1770 uint16_t *probs; local
1796 uint16_t *probs; local
1917 uint16_t *probs; local
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/generators/
geometric.py 339 probs = [0]
346 probs.append(d**-r)
347 cdf = list(nx.utils.cumulative_sum(probs))
  /external/libopus/celt/
celt.h 150 /* Probs: NONE: 21.875%, LIGHT: 6.25%, NORMAL: 65.625%, AGGRESSIVE: 6.25% */
  /external/valgrind/docs/internals/
3_7_BUGSTATUS.txt 12 -- amd64 toIR memcheck icc -O3 -mAVX probs?

Completed in 745 milliseconds

12 3