HomeSort by relevance Sort by last modified time
    Searched full:proba (Results 1 - 25 of 28) sorted by null

1 2

  /external/webp/src/enc/
cost.h 24 // Cost of coding one event with probability 'proba'.
25 static WEBP_INLINE int VP8BitCost(int bit, uint8_t proba) {
26 return !bit ? VP8EntropyCost[proba] : VP8EntropyCost[255 - proba];
31 void VP8CalculateLevelCosts(VP8Proba* const proba);
frame.c 55 // Reset the statistics about: number of skips, token proba, level cost,...
58 VP8Proba* const proba = &enc->proba_; local
59 VP8CalculateLevelCosts(proba);
60 proba->nb_skip_ = 0;
74 VP8Proba* const proba = &enc->proba_; local
76 const int nb_events = proba->nb_skip_;
78 proba->skip_proba_ = CalcSkipProba(nb_events, nb_mbs);
79 proba->use_skip_proba_ = (proba->skip_proba_ < SKIP_PROBA_THRESHOLD);
81 if (proba->use_skip_proba_)
93 VP8Proba* const proba = &enc->proba_; local
910 VP8Proba* const proba = &enc->proba_; local
    [all...]
token.c 35 // bit #14: constant proba or idx
36 // bits 0..13: slot or constant proba
93 int bit, int proba) {
94 assert(proba < 256);
98 b->tokens_[slot] = (bit << 15) | FIXED_PROBA_BIT | proba;
227 VP8PutBit(bw, bit, token & 0xffu); // constant proba
syntax.c 192 const VP8Proba* const proba = &enc->proba_; local
210 if (VP8PutBitUniform(bw, (proba->segments_[s] != 255u))) {
211 VP8PutValue(bw, proba->segments_[s], 8);
323 VP8PutBitUniform(bw, 0); // no proba update
cost.c 355 void VP8CalculateLevelCosts(VP8Proba* const proba) {
358 if (!proba->dirty_) return; // nothing to do.
363 const uint8_t* const p = proba->coeffs_[ctype][band][ctx];
364 uint16_t* const table = proba->level_cost_[ctype][band][ctx];
376 proba->dirty_ = 0;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 133 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
143 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba",
165 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
246 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
262 key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
284 Key key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
324 Key key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
421 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
436 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
459 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0])
    [all...]
ExemptionMechanismSpiTest.java 116 key = ((MyExemptionMechanismSpi)emSpi).new tmp1Key("Proba", new byte[0]);
132 key = ((MyExemptionMechanismSpi)emSpi).new tmpKey("Proba", new byte[0]);
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
ExemptionMechanismSpiTest.java 84 key = ((MyExemptionMechanismSpi)emSpi).new tmp1Key("Proba", new byte[0]);
100 key = ((MyExemptionMechanismSpi)emSpi).new tmpKey("Proba", new byte[0]);
  /external/libvpx/libvpx/test/
boolcoder_test.cc 36 for (int method = 0; method <= 7; ++method) { // we generate various proba
47 // alternate between low and high proba:
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 115 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
125 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba",
148 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
  /external/webp/src/dec/
tree.c 327 void VP8ResetProba(VP8Proba* const proba) {
328 memset(proba->segments_, 255u, sizeof(proba->segments_));
329 memcpy(proba->coeffs_, CoeffsProba0, sizeof(CoeffsProba0));
331 memcpy(proba->mv_, kMVProba0, sizeof(kMVProba0));
332 memcpy(proba->ymode_, kYModeProbaInter0, sizeof(kYModeProbaInter0));
333 memcpy(proba->uvmode_, kUVModeProbaInter0, sizeof(kUVModeProbaInter0));
540 VP8Proba* const proba = &dec->proba_; local
547 proba->coeffs_[t][b][c][p] = VP8GetValue(br, 8);
565 proba->ymode_[i] = VP8GetValue(br, 8)
    [all...]
vp8i.h 294 void VP8ResetProba(VP8Proba* const proba);
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanism_ImplTest.java 88 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator2Test.java 93 pp = new tmpAlgorithmParameterSpec("Proba");
KeyStoreTest.java 162 kss[i].setKeyEntry("proba", null, null);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator2Test.java 92 pp = new tmpAlgorithmParameterSpec("Proba");
KeyStoreTest.java 161 kss[i].setKeyEntry("proba", null, null);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl3Test.java 337 return "Proba";
Sasl4Test.java 336 return "Server Proba";
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStore1Test.java 143 String def = "Proba.cert.store.type";
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
KeyManagerFactory1Test.java 109 String defA = "Proba.keymanagerfactory.defaul.type";
TrustManagerFactory1Test.java 108 String defA = "Proba.trustmanagerfactory.defaul.type";
  /external/webp/src/utils/
bit_reader.h 136 // Read a bit with proba 'prob'. Speed-critical function!
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
KeyManagerFactory1Test.java 133 String defA = "Proba.keymanagerfactory.defaul.type";
TrustManagerFactory1Test.java 155 String defA = "Proba.trustmanagerfactory.defaul.type";

Completed in 1846 milliseconds

1 2