Home
last modified time | relevance | path

Searched defs:probs (Results 1 – 25 of 37) sorted by relevance

12

/external/libvpx/libvpx/vp9/encoder/
Dvp9_cost.c38 static void cost(int *costs, vpx_tree tree, const vpx_prob *probs, in cost()
54 void vp9_cost_tokens(int *costs, const vpx_prob *probs, vpx_tree tree) { in vp9_cost_tokens()
58 void vp9_cost_tokens_skip(int *costs, const vpx_prob *probs, vpx_tree tree) { in vp9_cost_tokens_skip()
Dvp9_treewriter.h32 const vpx_prob *probs, int bits, int len, in vp9_write_tree()
42 const vpx_prob *probs, in vp9_write_token()
Dvp9_cost.h34 static INLINE int treed_cost(vpx_tree tree, const vpx_prob *probs, in treed_cost()
Dvp9_bitstream.c49 const vpx_prob *probs) { in write_intra_mode()
54 const vpx_prob *probs) { in write_inter_mode()
65 static void prob_diff_update(const vpx_tree_index *tree, in prob_diff_update()
409 const vpx_prob *const probs = xd->partition_probs[ctx]; in write_partition() local
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
DRangeDecoder.java22 public int decodeBit(short[] probs, int index) throws IOException { in decodeBit()
45 public int decodeBitTree(short[] probs) throws IOException { in decodeBitTree()
55 public int decodeReverseBitTree(short[] probs) throws IOException { in decodeReverseBitTree()
DRangeEncoder.java104 public void encodeBit(short[] probs, int index, int bit) { in encodeBit()
132 public void encodeBitTree(short[] probs, int symbol) { in encodeBitTree()
148 public static int getBitTreePrice(short[] probs, int symbol) { in getBitTreePrice()
161 public void encodeReverseBitTree(short[] probs, int symbol) { in encodeReverseBitTree()
173 public static int getReverseBitTreePrice(short[] probs, int symbol) { in getReverseBitTreePrice()
DRangeCoder.java23 public static final void initProbs(short[] probs) { in initProbs()
/external/libvpx/libvpx/vpx_dsp/
Dprob.c36 vpx_prob *probs) { in tree_merge_probs_impl()
51 const unsigned int *counts, vpx_prob *probs) { in vpx_tree_merge_probs()
Dbitreader.h127 const vpx_prob *probs) { in vpx_read_tree()
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/rangecoder/
DDecoder.java64 public int DecodeBit (short[] probs, int index) throws IOException { in DecodeBit()
87 public static void InitBitModels (short[] probs) { in InitBitModels()
DEncoder.java95 public static void InitBitModels (short[] probs) { in InitBitModels()
100 public void Encode (short[] probs, int index, int symbol) throws IOException { in Encode()
/external/lzma/Java/SevenZip/Compression/RangeCoder/
DDecoder.java54 public int DecodeBit(short []probs, int index) throws IOException in DecodeBit()
83 public static void InitBitModels(short []probs) in InitBitModels()
DEncoder.java96 public static void InitBitModels(short []probs) in InitBitModels()
102 public void Encode(short []probs, int index, int symbol) throws IOException in Encode()
/external/opencv3/modules/ml/src/
Dem.cpp121 OutputArray probs) in trainEM()
134 OutputArray probs) in trainE()
151 OutputArray probs) in trainM()
163 Mat samples = _inputs.getMat(), probs, probsrow; in predict() local
203 Mat probs; in predict2() local
236 int nclusters, int covMatType, const Mat* probs, const Mat* means, in checkTrainData()
302 static void preprocessProbability(Mat& probs) in preprocessProbability()
475 bool doTrain(int startStep, OutputArray logLikelihoods, OutputArray labels, OutputArray probs) in doTrain()
557 Vec2d computeProbabilities(const Mat& sample, Mat* probs, int ptype) const in computeProbabilities()
/external/deqp/modules/gles2/stress/
Des2sLongRunningTests.cpp79 const Probs probs; in init() member
151 const Probs probs; in init() member
208 const Probs probs; in init() member
257 const Probs probs; in init() member
/external/deqp/modules/gles3/stress/
Des3sLongRunningTests.cpp79 const Probs probs; in init() member
151 const Probs probs; in init() member
208 const Probs probs; in init() member
257 const Probs probs; in init() member
/external/opencv3/modules/java/src/
Dml+EM.java146 public double[] predict2(Mat sample, Mat probs) in predict2()
160 public boolean trainEM(Mat samples, Mat logLikelihoods, Mat labels, Mat probs) in trainEM()
183 …trainE(Mat samples, Mat means0, Mat covs0, Mat weights0, Mat logLikelihoods, Mat labels, Mat probs) in trainE()
206 public boolean trainM(Mat samples, Mat probs0, Mat logLikelihoods, Mat labels, Mat probs) in trainM()
/external/lzma/C/
DLzmaDec.c29 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } argument
30 #define TREE_DECODE(probs, limit, i) \ argument
36 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument
38 #define TREE_6_DECODE(probs, i) \ argument
65 #define TREE_DECODE_CHECK(probs, limit, i) \ argument
142 CLzmaProb *probs = p->probs; in LzmaDec_DecodeReal() local
525 CLzmaProb *probs = p->probs; in LzmaDec_TryDummy() local
744 CLzmaProb *probs = p->probs; in LzmaDec_InitStateReal() local
DLzmaEnc.c585 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) in LitEnc_Encode()
596 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) in LitEnc_EncodeMatched()
646 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) in LitEnc_GetPrice()
659 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt3… in LitEnc_GetPriceMatched()
676 static void RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) in RcTree_Encode()
690 static void RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) in RcTree_ReverseEncode()
703 static UInt32 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *Prob… in RcTree_GetPrice()
715 static UInt32 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt3… in RcTree_ReverseGetPrice()
1025 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local
1238 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local
[all …]
DLzmaDec.h51 CLzmaProb *probs; member
/external/libvpx/libvpx/vp9/common/
Dvp9_entropy.c745 static void extend_to_full_distribution(vpx_prob *probs, vpx_prob p) { in extend_to_full_distribution()
774 vp9_coeff_probs_model *const probs = cm->fc->coef_probs[tx_size]; in adapt_coef_probs() local
/external/lzma/xz-embedded/
Dxz_dec_lzma2.c520 uint16_t *probs, uint32_t limit) in rc_bittree()
536 uint16_t *probs, in rc_bittree_reverse()
583 uint16_t *probs; in lzma_literal() local
622 uint16_t *probs; in lzma_len() local
648 uint16_t *probs; in lzma_match() local
769 uint16_t *probs; in lzma_reset() local
/external/libvpx/libvpx/vp8/common/
Dtreecoder.c109 void vp8_tree_probs_from_distribution( in vp8_tree_probs_from_distribution()
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
DLZMACoder.java109 final short[] probs = new short[0x300]; field in LZMACoder.LiteralCoder.LiteralSubcoder
/external/opencv3/modules/ml/test/
Dtest_emknearestkmeans.cpp367 const cv::Mat* probs; member in EM_Params
428 Mat probs; in runCase() local
466 Mat probs(trainData.rows, params.nclusters, CV_64FC1, cv::Scalar(1)); in run() local

12