/external/libvpx/libvpx/vp9/encoder/ |
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()
|
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()
|
/external/xz-java/src/org/tukaani/xz/rangecoder/ |
D | RangeDecoder.java | 22 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()
|
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()
|
D | RangeCoder.java | 23 public static final void initProbs(short[] probs) { in initProbs()
|
/external/libvpx/libvpx/vpx_dsp/ |
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()
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
D | relaxed_bernoulli.py | 146 probs=None, argument 211 def probs(self): member in RelaxedBernoulli
|
D | relaxed_onehot_categorical.py | 141 probs=None, argument 232 def probs(self): member in ExpRelaxedOneHotCategorical 392 probs=None, argument
|
D | geometric.py | 69 probs=None, argument 121 def probs(self): member in Geometric
|
D | onehot_categorical.py | 98 probs=None, argument 167 def probs(self): member in OneHotCategorical
|
D | negative_binomial.py | 66 probs=None, argument 130 def probs(self): member in NegativeBinomial
|
D | binomial.py | 153 probs=None, argument 215 def probs(self): member in Binomial
|
/external/tensorflow/tensorflow/lite/tools/accuracy/ilsvrc/ |
D | imagenet_topk_eval.cc | 66 auto probs = output.flat<float>(); in ComputeEval() local 71 auto probs = output.flat<uint8>(); in ComputeEval() local 76 auto probs = output.flat<int8>(); in ComputeEval() local
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
D | Decoder.java | 54 public int DecodeBit(short []probs, int index) throws IOException in DecodeBit() 83 public static void InitBitModels(short []probs) in InitBitModels()
|
D | Encoder.java | 96 public static void InitBitModels(short []probs) in InitBitModels() 102 public void Encode(short []probs, int index, int symbol) throws IOException in Encode()
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/ |
D | sample_from_datasets_serialization_test.py | 29 def _build_dataset(self, probs, num_samples): argument
|
/external/deqp/modules/gles2/stress/ |
D | es2sLongRunningTests.cpp | 79 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/ |
D | es3sLongRunningTests.cpp | 79 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/tensorflow/tensorflow/python/ops/distributions/ |
D | bernoulli.py | 53 probs=None, argument 109 def probs(self): member in Bernoulli
|
D | categorical.py | 164 probs=None, argument 255 def probs(self): member in Categorical
|
D | multinomial.py | 163 probs=None, argument 230 def probs(self): member in Multinomial
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | sampling_ops_test.py | 322 def curried_sampler(val, lbls, probs, batch, enqueue_many=False): argument 335 def curried_sampler(val, lbls, probs, batch, enqueue_many=False): argument
|
/external/lzma/C/ |
D | LzmaDec.c | 29 #define TREE_GET_BIT(probs, i) { GET_BIT2(probs + i, i, ;, ;); } argument 38 #define TREE_DECODE(probs, limit, i) \ argument 44 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument 46 #define TREE_6_DECODE(probs, i) \ argument 76 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 220 CLzmaProb *probs = GET_PROBS; in LZMA_DECODE_REAL() local 665 const CLzmaProb *probs = GET_PROBS; in LzmaDec_TryDummy() local 906 CLzmaProb *probs = p->probs; in LzmaDec_DecodeToDic() local
|
/external/u-boot/lib/lzma/ |
D | LzmaDec.c | 30 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } argument 31 #define TREE_DECODE(probs, limit, i) \ argument 37 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument 39 #define TREE_6_DECODE(probs, i) \ argument 59 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 136 CLzmaProb *probs = p->probs; in LzmaDec_DecodeReal() local 518 CLzmaProb *probs = p->probs; in LzmaDec_TryDummy() local 737 CLzmaProb *probs = p->probs; in LzmaDec_InitStateReal() local
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_entropy.c | 1030 static void extend_to_full_distribution(vpx_prob *probs, vpx_prob p) { in extend_to_full_distribution() 1059 vp9_coeff_probs_model *const probs = cm->fc->coef_probs[tx_size]; in adapt_coef_probs() local
|