/aosp_15_r20/external/xz-java/src/org/tukaani/xz/rangecoder/ |
H A D | RangeEncoder.java | 99 public void encodeBit(short[] probs, int index, int bit) in encodeBit() 128 public void encodeBitTree(short[] probs, int symbol) throws IOException { in encodeBitTree() 144 public static int getBitTreePrice(short[] probs, int symbol) { in getBitTreePrice() 157 public void encodeReverseBitTree(short[] probs, int symbol) in encodeReverseBitTree() 170 public static int getReverseBitTreePrice(short[] probs, int symbol) { in getReverseBitTreePrice()
|
H A D | RangeDecoder.java | 21 public int decodeBit(short[] probs, int index) throws IOException { in decodeBit() 44 public int decodeBitTree(short[] probs) throws IOException { in decodeBitTree() 54 public int decodeReverseBitTree(short[] probs) throws IOException { in decodeReverseBitTree()
|
/aosp_15_r20/external/lzma/C/ |
H A D | LzmaEnc.c | 789 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 sym) in LitEnc_Encode() 806 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 sym, UInt32 matchByte) in LitEnc_EncodeMatched() 868 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 sym, const CProbPrice *ProbPrices) in LitEnc_GetPrice() 883 static UInt32 LitEnc_Matched_GetPrice(const CLzmaProb *probs, UInt32 sym, UInt32 matchByte, const C… in LitEnc_Matched_GetPrice() 900 static void RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, unsigned numBits, unsigned sym) in RcTree_ReverseEncode() 931 CLzmaProb *probs = p->low; in LenEnc_Encode() local 963 static void SetPrices_3(const CLzmaProb *probs, UInt32 startPrice, UInt32 *prices, const CProbPrice… in SetPrices_3() 997 const CLzmaProb *probs = enc->low + (posState << (1 + kLenNumLowBits)); in LenPriceEnc_UpdateTables() local 1026 const CLzmaProb *probs = enc->high; in LenPriceEnc_UpdateTables() local 1313 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local [all …]
|
H A D | LzmaDec.c | 31 #define TREE_GET_BIT(probs, i) { GET_BIT2(probs + i, i, ;, ;); } argument 40 #define TREE_DECODE(probs, limit, i) \ argument 46 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument 48 #define TREE_6_DECODE(probs, i) \ argument 79 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 236 CLzmaProb *probs = GET_PROBS; in LZMA_DECODE_REAL() local 720 const CLzmaProb *probs = GET_PROBS; in LzmaDec_TryDummy() local 991 CLzmaProb *probs = p->probs; in LzmaDec_DecodeToDic() local
|
/aosp_15_r20/external/pytorch/torch/distributions/ |
H A D | relaxed_categorical.py | 43 def __init__(self, temperature, probs=None, logits=None, validate_args=None): argument 73 def probs(self): member in ExpRelaxedCategorical 122 def __init__(self, temperature, probs=None, logits=None, validate_args=None): argument 141 def probs(self): member in RelaxedOneHotCategorical
|
H A D | relaxed_bernoulli.py | 44 def __init__(self, temperature, probs=None, logits=None, validate_args=None): argument 85 def probs(self): member in LogitRelaxedBernoulli 134 def __init__(self, temperature, probs=None, logits=None, validate_args=None): argument 151 def probs(self): member in RelaxedBernoulli
|
H A D | geometric.py | 47 def __init__(self, probs=None, logits=None, validate_args=None): argument 103 def probs(self): member in Geometric
|
H A D | multinomial.py | 61 def __init__(self, total_count=1, probs=None, logits=None, validate_args=None): argument 94 def probs(self): member in Multinomial
|
H A D | utils.py | 94 def clamp_probs(probs): argument 120 def probs_to_logits(probs, is_binary=False): argument
|
H A D | negative_binomial.py | 38 def __init__(self, total_count, probs=None, logits=None, validate_args=None): argument 94 def probs(self): member in NegativeBinomial
|
H A D | categorical.py | 53 def __init__(self, probs=None, logits=None, validate_args=None): argument 101 def probs(self): member in Categorical
|
H A D | binomial.py | 51 def __init__(self, total_count=1, probs=None, logits=None, validate_args=None): argument 111 def probs(self): member in Binomial
|
H A D | bernoulli.py | 44 def __init__(self, probs=None, logits=None, validate_args=None): argument 97 def probs(self): member in Bernoulli
|
/aosp_15_r20/external/coreboot/util/cbfstool/lzma/C/ |
H A D | LzmaDec.c | 27 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } argument 28 #define TREE_DECODE(probs, limit, i) \ argument 31 #define TREE_6_DECODE(probs, i) \ argument 50 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 127 CLzmaProb *probs = p->probs; in LzmaDec_DecodeReal() local 486 CLzmaProb *probs = p->probs; in LzmaDec_TryDummy() local 705 CLzmaProb *probs = p->probs; in LzmaDec_InitStateReal() local
|
H A D | LzmaEnc.c | 509 static void LitEnc_Encode(struct CRangeEnc *p, CLzmaProb *probs, uint32_t symbol) in LitEnc_Encode() 520 static void LitEnc_EncodeMatched(struct CRangeEnc *p, CLzmaProb *probs, uint32_t symbol, uint32_t m… in LitEnc_EncodeMatched() 570 static uint32_t LitEnc_GetPrice(const CLzmaProb *probs, uint32_t symbol, uint32_t *ProbPrices) in LitEnc_GetPrice() 583 static uint32_t LitEnc_GetPriceMatched(const CLzmaProb *probs, uint32_t symbol, uint32_t matchuint8… in LitEnc_GetPriceMatched() 600 static void RcTree_Encode(struct CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, uint32_t symbol) in RcTree_Encode() 614 static void RcTree_ReverseEncode(struct CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, uint32_t… in RcTree_ReverseEncode() 627 static uint32_t RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, uint32_t symbol, uint32_t… in RcTree_GetPrice() 639 static uint32_t RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, uint32_t symbol, u… in RcTree_ReverseGetPrice() 933 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local 1132 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local [all …]
|
/aosp_15_r20/external/libvpx/vp9/encoder/ |
H A D | vp9_cost.c | 39 static void cost(int *costs, vpx_tree tree, const vpx_prob *probs, int i, in cost() 56 void vp9_cost_tokens(int *costs, const vpx_prob *probs, vpx_tree tree) { in vp9_cost_tokens() 60 void vp9_cost_tokens_skip(int *costs, const vpx_prob *probs, vpx_tree tree) { in vp9_cost_tokens_skip()
|
H A D | vp9_treewriter.h | 32 const vpx_prob *probs, int bits, int len, in vp9_write_tree() 42 const vpx_prob *probs, in vp9_write_token()
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/tools/evaluation/stages/ |
H A D | topk_accuracy_eval_stage.cc | 92 auto probs = static_cast<float*>(model_output_); in Run() local 97 auto probs = static_cast<uint8_t*>(model_output_); in Run() local 102 auto probs = static_cast<int8_t*>(model_output_); in Run() local
|
/aosp_15_r20/external/deqp/modules/gles3/stress/ |
H A D | es3sLongRunningTests.cpp | 81 const Probs probs; in init() member 148 const Probs probs; in init() member 203 const Probs probs; in init() member 249 const Probs probs; in init() member
|
/aosp_15_r20/external/deqp/modules/gles2/stress/ |
H A D | es2sLongRunningTests.cpp | 81 const Probs probs; in init() member 148 const Probs probs; in init() member 203 const Probs probs; in init() member 249 const Probs probs; in init() member
|
/aosp_15_r20/external/xz-embedded/linux/lib/xz/ |
H A D | xz_dec_lzma2.c | 551 uint16_t *probs, uint32_t limit) in rc_bittree() 567 uint16_t *probs, in rc_bittree_reverse() 614 uint16_t *probs; in lzma_literal() local 653 uint16_t *probs; in lzma_len() local 679 uint16_t *probs; in lzma_match() local 800 uint16_t *probs; in lzma_reset() local
|
/aosp_15_r20/external/libvpx/vpx_dsp/ |
H A D | prob.c | 30 vpx_prob *probs) { in tree_merge_probs_impl() 45 const unsigned int *counts, vpx_prob *probs) { in vpx_tree_merge_probs()
|
/aosp_15_r20/external/rappor/analysis/R/ |
H A D | simulation.R | 40 probs <- rep(0, nstrs) functionVar 154 GetSample <- function(N, strs, probs) { argument 234 probs <- GetSampleProbs(pop_params) functionVar
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/random/ |
H A D | random_binomial_test.py | 36 self, num, counts, probs, dtype, gen=None, sample_shape=None, seed=None): argument 170 def __init__(self, counts, probs): argument
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/distributions/ |
H A D | bernoulli.py | 49 probs=None, argument 105 def probs(self): member in Bernoulli
|