/packages/apps/CellBroadcastReceiver/tests/res/values-gl-rES/ |
strings.xml | 22 <string name="button_etws_test_type" msgid="6353906188028139901">"Enviar emisión de proba de ETWS"</string> 27 <string name="button_cmas_monthly_test" msgid="1609320625517248393">"Enviar alerta de proba mensual de CMAS"</string> 28 <string name="button_gsm_7bit_type" msgid="4757698592787955850">"Enviar emisión de proba de 7 bits de GSM"</string> 29 <string name="button_gsm_7bit_umts_type" msgid="4377077702628367387">"Enviar emisión de proba de 7 bits de UMTS"</string> 37 <string name="button_gsm_ucs2_type" msgid="6652864601384080678">"Enviar emisión de proba de GSM UCS-2"</string> 38 <string name="button_gsm_ucs2_umts_type" msgid="2985879481785569626">"Enviar emisión de proba de UMTS UCS-2"</string> 41 <string name="button_gsm_ucs2_with_language_umts_type" msgid="1080788762601688380">"Enviar emisión de proba de UMTS UCS-2"</string>
|
/external/chromium_org/third_party/libwebp/enc/ |
cost.h | 53 // Cost of coding one event with probability 'proba'. 54 static WEBP_INLINE int VP8BitCost(int bit, uint8_t proba) { 55 return !bit ? VP8EntropyCost[proba] : VP8EntropyCost[255 - proba]; 66 void VP8CalculateLevelCosts(VP8Proba* const proba);
|
frame.c | 96 // Reset the statistics about: number of skips, token proba, level cost,... 99 VP8Proba* const proba = &enc->proba_; local 100 VP8CalculateLevelCosts(proba); 101 proba->nb_skip_ = 0; 115 VP8Proba* const proba = &enc->proba_; local 117 const int nb_events = proba->nb_skip_; 119 proba->skip_proba_ = CalcSkipProba(nb_events, nb_mbs); 120 proba->use_skip_proba_ = (proba->skip_proba_ < SKIP_PROBA_THRESHOLD); 122 if (proba->use_skip_proba_) 143 VP8Proba* const proba = &enc->proba_; local 746 VP8Proba* const proba = &enc->proba_; local [all...] |
token.c | 34 // bit #14: constant proba or idx 35 // bits 0..13: slot or constant proba 102 int bit, int proba) { 103 assert(proba < 256); 107 b->tokens_[slot] = (bit << 15) | FIXED_PROBA_BIT | proba; 238 VP8PutBit(bw, bit, token & 0xffu); // constant proba
|
syntax.c | 190 const VP8Proba* const proba = &enc->proba_; local 208 if (VP8PutBitUniform(bw, (proba->segments_[s] != 255u))) { 209 VP8PutValue(bw, proba->segments_[s], 8); 284 VP8PutBitUniform(bw, 0); // no proba update
|
/external/webp/src/enc/ |
cost.h | 53 // Cost of coding one event with probability 'proba'. 54 static WEBP_INLINE int VP8BitCost(int bit, uint8_t proba) { 55 return !bit ? VP8EntropyCost[proba] : VP8EntropyCost[255 - proba]; 66 void VP8CalculateLevelCosts(VP8Proba* const proba);
|
frame.c | 96 // Reset the statistics about: number of skips, token proba, level cost,... 99 VP8Proba* const proba = &enc->proba_; local 100 VP8CalculateLevelCosts(proba); 101 proba->nb_skip_ = 0; 115 VP8Proba* const proba = &enc->proba_; local 117 const int nb_events = proba->nb_skip_; 119 proba->skip_proba_ = CalcSkipProba(nb_events, nb_mbs); 120 proba->use_skip_proba_ = (proba->skip_proba_ < SKIP_PROBA_THRESHOLD); 122 if (proba->use_skip_proba_) 143 VP8Proba* const proba = &enc->proba_; local 746 VP8Proba* const proba = &enc->proba_; local [all...] |
token.c | 34 // bit #14: constant proba or idx 35 // bits 0..13: slot or constant proba 102 int bit, int proba) { 103 assert(proba < 256); 107 b->tokens_[slot] = (bit << 15) | FIXED_PROBA_BIT | proba; 238 VP8PutBit(bw, bit, token & 0xffu); // constant proba
|
syntax.c | 190 const VP8Proba* const proba = &enc->proba_; local 208 if (VP8PutBitUniform(bw, (proba->segments_[s] != 255u))) { 209 VP8PutValue(bw, proba->segments_[s], 8); 284 VP8PutBitUniform(bw, 0); // no proba update
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
ExemptionMechanismTest.java | 131 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 141 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba", 163 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 244 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 260 key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 282 Key key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 322 Key key = new Mock_ExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 419 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 434 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 457 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 | 83 key = ((MyExemptionMechanismSpi) emSpi).new tmp1Key("Proba", new byte[0]); 99 key = ((MyExemptionMechanismSpi) emSpi).new tmpKey("Proba", new byte[0]);
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
vp9_boolcoder_test.cc | 32 for (int method = 0; method <= 7; ++method) { // we generate various proba 43 // alternate between low and high proba:
|
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 70 // alternate between low and high proba:
|
/external/libvpx/libvpx/test/ |
vp9_boolcoder_test.cc | 32 for (int method = 0; method <= 7; ++method) { // we generate various proba 43 // alternate between low and high proba:
|
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 70 // alternate between low and high proba:
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
vp9_boolcoder_test.cc | 32 for (int method = 0; method <= 7; ++method) { // we generate various proba 43 // alternate between low and high proba:
|
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 70 // alternate between low and high proba:
|
/packages/apps/CellBroadcastReceiver/res/values-gl-rES/ |
strings.xml | 37 <string name="etws_test_message" msgid="8447820262584381894">"Mensaxe de proba de ETWS"</string> 43 <string name="cmas_required_monthly_test" msgid="6464047268150108932">"Proba mensual de alertas de emerxencia"</string> 56 <string name="enable_etws_test_alerts_title" msgid="2569886288897109169">"Mostrar emisións de proba ETWS"</string> 57 <string name="enable_etws_test_alerts_summary" msgid="7988690174166347072">"Mostrar emisións de proba do Sistema de avisos de terremotos e tsunamis"</string> 64 <string name="enable_cmas_test_alerts_title" msgid="8620213090932770270">"Mostrar emisións de proba CMAS"</string> 65 <string name="enable_cmas_test_alerts_summary" msgid="2935171596891733844">"Mostrar emisións de proba do Sistema de alertas móbiles comerciais"</string>
|
/packages/apps/QuickSearchBox/res/values-gl-rES/ |
strings.xml | 29 <string name="voice_search_hint_title" msgid="9160095960228453779">"Proba a dicir:"</string>
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
ExemptionMechanismTest.java | 120 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); 130 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba", 153 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]);
|
/external/svox/picolanginstaller/res/values-gl-rES/ |
strings.xml | 28 <string name="retry_message" product="default" msgid="4262829785604216441">"Non se puideron instalar os datos de voz. Asegúrate de que a tarxeta SD estea no dispositivo e que dispoña de polo menos 6 MB de espazo libre. Se a tarxeta xa está no dispositivo, proba a extraela e volver inserila."</string>
|
/external/chromium_org/third_party/libwebp/dec/ |
tree.c | 277 void VP8ResetProba(VP8Proba* const proba) { 278 memset(proba->segments_, 255u, sizeof(proba->segments_)); 279 // proba->bands_[][] is initialized later 498 VP8Proba* const proba = &dec->proba_; local 506 proba->bands_[t][b].probas_[c][p] = v;
|
/external/webp/src/dec/ |
tree.c | 277 void VP8ResetProba(VP8Proba* const proba) { 278 memset(proba->segments_, 255u, sizeof(proba->segments_)); 279 // proba->bands_[][] is initialized later 498 VP8Proba* const proba = &dec->proba_; local 506 proba->bands_[t][b].probas_[c][p] = v;
|
/external/chromium_org/third_party/libwebp/utils/ |
bit_reader_inl.h | 108 // Read a bit with proba 'prob'. Speed-critical function!
|