HomeSort by relevance Sort by last modified time
    Searched refs:strength (Results 51 - 75 of 223) sorted by null

1 23 4 5 6 7 8 9

  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/rsa/
KeyPairGeneratorSpi.java 47 int strength,
52 // random, strength, PrimeCertaintyCalculator.getDefaultCertainty(strength));
53 (random != null) ? random : new SecureRandom(), strength, PrimeCertaintyCalculator.getDefaultCertainty(strength));
  /external/libaom/libaom/av1/common/x86/
intra_edge_sse4.c 18 void av1_filter_intra_edge_sse4_1(uint8_t *p, int sz, int strength) {
19 if (!strength) return;
22 { 4, 8, 4, 0, 4, 8, 4, 0, 4, 8, 4, 0, 4, 8, 4, 0 }, // strength 1: 4,8,4
23 { 5, 6, 5, 0, 5, 6, 5, 0, 5, 6, 5, 0, 5, 6, 5, 0 }, // strength 2: 5,6,5
24 { 2, 4, 4, 4, 2, 0, 0, 0, 2, 4, 4, 4, 2, 0, 0, 0 } // strength 3: 2,4,4,4,2
40 uint8_t *in = (strength == 3) ? p - 1 : p;
46 const int use_3tap_filter = (strength < 3);
49 __m128i coef0 = _mm_lddqu_si128((__m128i const *)kern[strength - 1]);
77 __m128i coef0 = _mm_lddqu_si128((__m128i const *)kern[strength - 1]);
116 void av1_filter_intra_edge_high_sse4_1(uint16_t *p, int sz, int strength) {
    [all...]
  /device/google/marlin/vibrator/
Vibrator.h 39 Return<void> perform(Effect effect, EffectStrength strength, perform_cb _hidl_cb) override;
Vibrator.cpp 87 Return<void> Vibrator::perform(Effect effect, EffectStrength strength, perform_cb _hidl_cb) {
90 switch (strength) {
  /external/autotest/client/site_tests/network_WiFiTxRx/
network-flipflop.sh 4 # and harvests signal strength and quality numbers for us, then restarts
180 progress Allowing link $gateway strength/quality readings to stabilise;
183 progress Contacting AP at "/dev/tcp/$gateway/80" to collect TX strength;
187 while read mac strength other;
189 if [[ x${mac,,*} = x${macaddr,,*} ]]; then result=$strength; fi;
  /external/icu/icu4c/source/i18n/
collationruleparser.h 76 * strength=UCOL_IDENTICAL for &str.
77 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
79 virtual void addReset(int32_t strength, const UnicodeString &str,
82 * Adds a relation with strength and prefix | str / extension.
84 virtual void addRelation(int32_t strength, const UnicodeString &prefix,
152 void parseRelationStrings(int32_t strength, int32_t i, UErrorCode &errorCode);
153 void parseStarredCharacters(int32_t strength, int32_t i, UErrorCode &errorCode);
collationruleparser.cpp 146 int32_t strength = result & STRENGTH_MASK; local
150 if(strength != resetStrength) {
151 setParseError("reset-before strength differs from its first relation", errorCode);
155 if(strength < resetStrength) {
156 setParseError("reset-before strength followed by a stronger relation", errorCode);
163 parseRelationStrings(strength, i, errorCode);
165 parseStarredCharacters(strength, i, errorCode);
212 int32_t strength; local
223 strength = UCOL_QUATERNARY;
225 strength = UCOL_TERTIARY
    [all...]
  /external/libaom/libaom/test/
best_encode.sh 51 --arnr-strength=3 \
101 --arnr-strength=3 \
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
pcan_gain_control_test.cc 31 config_.strength = 0.95;
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
pcan_gain_control_test.cc 31 config_.strength = 0.95;
  /external/mockito/src/test/java/org/mockitousage/annotation/
SpyAnnotationTest.java 148 private InnerStrength strength; field in class:SpyAnnotationTest.WithMockAndSpy
162 abstract String strength(); method in class:SpyAnnotationTest.WithMockAndSpy.InnerStrength
165 return name + " " + strength();
171 when(outer.strength.strength()).thenReturn("strength");
172 assertEquals("inner strength", outer.strength.fullStrength());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 70 * strength=UCOL_IDENTICAL for &str.
71 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
73 abstract void addReset(int strength, CharSequence str);
75 * Adds a relation with strength and prefix | str / extension.
77 abstract void addRelation(int strength, CharSequence prefix,
186 int strength = result & STRENGTH_MASK; local
190 if(strength != resetStrength) {
191 setParseError("reset-before strength differs from its first relation");
195 if(strength < resetStrength) {
196 setParseError("reset-before strength followed by a stronger relation")
250 int strength; local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 66 * strength=UCOL_IDENTICAL for &str.
67 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
69 abstract void addReset(int strength, CharSequence str);
71 * Adds a relation with strength and prefix | str / extension.
73 abstract void addRelation(int strength, CharSequence prefix,
182 int strength = result & STRENGTH_MASK; local
186 if(strength != resetStrength) {
187 setParseError("reset-before strength differs from its first relation");
191 if(strength < resetStrength) {
192 setParseError("reset-before strength followed by a stronger relation")
246 int strength; local
    [all...]
  /external/guava/guava/src/com/google/common/cache/
CacheBuilderSpec.java 26 import com.google.common.cache.LocalCache.Strength;
102 .put("weakKeys", new KeyStrengthParser(Strength.WEAK))
103 .put("softValues", new ValueStrengthParser(Strength.SOFT))
104 .put("weakValues", new ValueStrengthParser(Strength.WEAK))
116 @VisibleForTesting Strength keyStrength;
117 @VisibleForTesting Strength valueStrength;
365 private final Strength strength; field in class:CacheBuilderSpec.KeyStrengthParser
367 public KeyStrengthParser(Strength strength) {
381 private final Strength strength; field in class:CacheBuilderSpec.ValueStrengthParser
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 72 int strength, int filter_weight,
78 const int rounding = strength > 0 ? 1 << (strength - 1) : 0;
87 * float coeff = (3.0 * modifer * modifier) / pow(2, strength);
93 modifier >>= strength; local
189 int alt_ref_index, int strength) {
275 predictor, 16, strength, filter_weight,
279 predictor + 256, 8, strength, filter_weight,
283 predictor + 320, 8, strength, filter_weight,
358 int strength = cpi->oxcf.arnr_strength local
    [all...]
  /external/libaom/libaom/av1/encoder/
temporal_filter.c 180 static INLINE int mod_index(int sum_dist, int index, int rounding, int strength,
187 mod >>= strength; local
198 int strength, int filter_weight) {
205 mod >>= strength; local
259 int ss_x, int ss_y, int strength, const int *blk_fw, int use_32x32,
264 const int rounding = (1 << strength) >> 1;
320 (int)mod_index(modifier, y_index, rounding, strength, filter_weight);
366 (int)mod_index(u_mod, cr_index, rounding, strength, filter_weight);
368 (int)mod_index(v_mod, cr_index, rounding, strength, filter_weight);
400 unsigned int block_height, int ss_x, int ss_y, int strength,
576 modifier >>= strength; local
641 modifier >>= strength; local
1168 int q, frames, strength; local
1244 int strength; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
temporal_filter_msa.c 23 v4i32 const3, const16, filter_wt, strength; local
30 strength = __msa_fill_w(strength_in);
52 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
90 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
136 v4i32 filter_wt, strength; local
143 strength = __msa_fill_w(strength_in);
172 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
212 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
245 int32_t strength, int32_t filter_weight,
248 temporal_filter_apply_8size_msa(frame1, stride, frame2, strength,
268 modifier >>= strength; local
    [all...]
  /external/skia/modules/particles/src/
SkParticleAffector.cpp 33 const SkCurve& strength = 0.0f,
37 , fStrength(strength)
50 float strength = fStrength.eval(params, ps[i]); variable
51 SkVector force = { c * strength, s * strength };
65 v->visit("Strength", fStrength);
77 SkAngularVelocityAffector(const SkCurve& strength = 0.0f, bool force = true)
78 : fStrength(strength)
85 float strength = fStrength.eval(params, ps[i]); variable
87 ps[i].fVelocity.fAngular += strength * params.fDeltaTime
    [all...]
  /external/u-boot/arch/arm/mach-omap2/omap3/
board.c 282 int hw, strength = 1; local
291 strength = 8;
293 strength = 16;
301 strength = 8;
309 return -omap_nand_switch_ecc(hw, strength);
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
CollatorTest.java 94 // Default strength = TERITIARY
110 String[] data, String strength, Locale loc) {
118 + loc + " with strength " + strength + " - Result (jdk=" + jdkRes + ",icu=" + icuRes + ")");
133 + ") for locale " + loc + " with strength " + strength
  /external/libaom/libaom/av1/encoder/mips/msa/
temporal_filter_msa.c 27 v4i32 cnst3, cnst16, filt_wt, strength; local
35 strength = __msa_fill_w(filt_sth);
60 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
107 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
153 v4i32 cnst3, cnst16, filt_wt, strength; local
161 strength = __msa_fill_w(filt_sth);
184 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
231 SRAR_W4_SW(mod0_w, mod1_w, mod2_w, mod3_w, strength);
273 uint32_t blk_h, int32_t strength,
277 temporal_filter_apply_8size_msa(frame1_ptr, stride, frame2_ptr, strength,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyPairGeneratorSpi.java 49 // so we've changed the default strength to 256 for increased compatibility
50 int strength = 256; field in class:KeyPairGeneratorSpi.EC
87 int strength,
90 this.strength = strength;
99 ECGenParameterSpec ecParams = (ECGenParameterSpec)ecParameters.get(Integers.valueOf(strength));
167 initialize(strength, new SecureRandom());
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyPairGeneratorSpi.java 56 // so we've changed the default strength to 256 for increased compatibility
57 int strength = 256; field in class:KeyPairGeneratorSpi.EC
94 int strength,
97 this.strength = strength;
106 ECGenParameterSpec ecParams = (ECGenParameterSpec)ecParameters.get(Integers.valueOf(strength));
174 initialize(strength, new SecureRandom());
  /external/speex/libspeexdsp/
scal.c 141 EXPORT void speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength)
146 if (strength<0)
147 strength = 0;
148 if (strength>100)
149 strength = 100;
151 amount = .01*strength;
  /cts/tests/tests/hardware/src/android/hardware/cts/
GeomagneticFieldTest.java 91 float dec, float inc, float strength) {
98 fieldStrengthNanoTesla = strength;

Completed in 2792 milliseconds

1 23 4 5 6 7 8 9