HomeSort by relevance Sort by last modified time
    Searched refs:Strength (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 60 //static void GetStrength(AVCCommonObj *video, uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir, int edge);
61 static void GetStrength_Edge0(uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir);
62 static void GetStrength_VerticalEdges(uint8 *Strength, AVCMacroblock* MbQ);
63 static void GetStrength_HorizontalEdges(uint8 Strength[12], AVCMacroblock* MbQ);
64 static void EdgeLoop_Luma_vertical(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
65 static void EdgeLoop_Luma_horizontal(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
66 static void EdgeLoop_Chroma_vertical(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
67 static void EdgeLoop_Chroma_horizontal(uint8* SrcPtr, uint8 *Strength, int Alpha, int Beta, int *clipTable, int pitch);
302 uint8 Strength[16];
327 //GetStrength(video, Strength, MbP, MbQ, 0, 0); // Strength for 4 blks in 1 stripe, 0 => vertical edg
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderFactory.java 21 import com.google.common.cache.LocalCache.Strength;
47 private Set<Strength> keyStrengths = Sets.newHashSet((Strength) null);
48 private Set<Strength> valueStrengths = Sets.newHashSet((Strength) null);
80 CacheBuilderFactory withKeyStrengths(Set<Strength> keyStrengths) {
82 Preconditions.checkArgument(!this.keyStrengths.contains(Strength.SOFT));
86 CacheBuilderFactory withValueStrengths(Set<Strength> valueStrengths) {
106 (Strength) combination.get(6),
107 (Strength) combination.get(7))
    [all...]
CacheReferencesTest.java 17 import static com.google.common.cache.LocalCache.Strength.STRONG;
22 import com.google.common.cache.LocalCache.Strength;
48 .withKeyStrengths(ImmutableSet.of(STRONG, Strength.WEAK))
49 .withValueStrengths(ImmutableSet.of(STRONG, Strength.WEAK, Strength.SOFT));
64 // maintain strong refs so these won't be collected, regardless of cache's key/value strength
CacheBuilderSpecTest.java 23 import com.google.common.cache.LocalCache.Strength;
155 assertEquals(Strength.WEAK, spec.keyStrength);
188 assertEquals(Strength.SOFT, spec.valueStrength);
211 assertEquals(Strength.WEAK, spec.valueStrength);
401 assertEquals(Strength.WEAK, spec.keyStrength);
402 assertEquals(Strength.WEAK, spec.valueStrength);
425 assertEquals(Strength.WEAK, spec.keyStrength);
426 assertEquals(Strength.SOFT, spec.valueStrength);
EmptyCachesTest.java 24 import com.google.common.cache.LocalCache.Strength;
363 .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK))
364 .withValueStrengths(ImmutableSet.copyOf(Strength.values()))
PopulatedCachesTest.java 25 import com.google.common.cache.LocalCache.Strength;
315 .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK))
316 .withValueStrengths(ImmutableSet.copyOf(Strength.values()))
LocalCacheTest.java 41 import com.google.common.cache.LocalCache.Strength;
153 assertSame(Strength.STRONG, map.keyStrength);
154 assertSame(Strength.STRONG, map.valueStrength);
348 checkStrength(map, Strength.WEAK, Strength.STRONG);
354 checkStrength(map, Strength.STRONG, Strength.WEAK);
360 checkStrength(map, Strength.STRONG, Strength.SOFT);
365 LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMaker.java 21 import static com.google.common.collect.MapMakerInternalMap.Strength.SOFT;
31 import com.google.common.collect.MapMakerInternalMap.Strength;
121 Strength keyStrength;
122 Strength valueStrength;
260 * @throws IllegalStateException if the key strength was already set
266 return setKeyStrength(Strength.WEAK);
269 MapMaker setKeyStrength(Strength strength) {
270 checkState(keyStrength == null, "Key strength was already set to %s", keyStrength);
271 keyStrength = checkNotNull(strength);
    [all...]
ComputingConcurrentHashMap.java 391 ComputingSerializationProxy(Strength keyStrength, Strength valueStrength,
MapMakerInternalMap.java 162 final Strength keyStrength;
165 final Strength valueStrength;
282 return keyStrength != Strength.STRONG;
286 return valueStrength != Strength.STRONG;
289 enum Strength {
335 * Creates a reference for the given value according to this value strength.
342 * at this strength. This strategy will be used unless the user explicitly specifies an
476 static EntryFactory getFactory(Strength keyStrength, boolean expireAfterWrite,
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 33 import com.google.common.cache.LocalCache.Strength;
220 Strength keyStrength;
221 Strength valueStrength;
357 CacheBuilder<K, V> setKeyStrength(Strength strength) {
358 checkState(keyStrength == null, "Key strength was already set to %s", keyStrength);
359 keyStrength = checkNotNull(strength);
363 Strength getKeyStrength() {
364 return firstNonNull(keyStrength, Strength.STRONG);
367 CacheBuilder<K, V> setValueStrength(Strength strength)
    [all...]
LocalCache.java 501 * Any updates to LocalCache.Strength used in CacheBuilder need to be matched in this class for
504 enum Strength {
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 35 import com.google.common.cache.LocalCache.Strength;
226 Strength keyStrength;
227 Strength valueStrength;
515 * @throws IllegalStateException if the key strength was already set
519 return setKeyStrength(Strength.WEAK);
522 CacheBuilder<K, V> setKeyStrength(Strength strength) {
523 checkState(keyStrength == null, "Key strength was already set to %s", keyStrength);
524 keyStrength = checkNotNull(strength);
528 Strength getKeyStrength()
    [all...]
CacheBuilderSpec.java 25 import com.google.common.cache.LocalCache.Strength;
101 .put("weakKeys", new KeyStrengthParser(Strength.WEAK))
102 .put("softValues", new ValueStrengthParser(Strength.SOFT))
103 .put("weakValues", new ValueStrengthParser(Strength.WEAK))
115 @VisibleForTesting Strength keyStrength;
116 @VisibleForTesting Strength valueStrength;
364 private final Strength strength; field in class:CacheBuilderSpec.KeyStrengthParser
366 public KeyStrengthParser(Strength strength) {
380 private final Strength strength; field in class:CacheBuilderSpec.ValueStrengthParser
    [all...]
LocalCache.java 187 final Strength keyStrength;
190 final Strength valueStrength;
368 return keyStrength != Strength.STRONG;
372 return valueStrength != Strength.STRONG;
375 enum Strength {
429 * Creates a reference for the given value according to this value strength.
436 * at this strength. This strategy will be used unless the user explicitly specifies an
569 static EntryFactory getFactory(Strength keyStrength, boolean usesAccessQueue,
571 int flags = ((keyStrength == Strength.WEAK) ? WEAK_MASK : 0)
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
deltablue.js 100 * New strengths may be inserted in the strength hierarchy without
104 function Strength(strengthValue, name) {
109 Strength.stronger = function (s1, s2) {
113 Strength.weaker = function (s1, s2) {
117 Strength.weakestOf = function (s1, s2) {
121 Strength.strongest = function (s1, s2) {
125 Strength.prototype.nextWeaker = function () {
127 case 0: return Strength.WEAKEST;
128 case 1: return Strength.WEAK_DEFAULT;
129 case 2: return Strength.NORMAL
    [all...]
  /external/v8/benchmarks/
deltablue.js 97 * New strengths may be inserted in the strength hierarchy without
101 function Strength(strengthValue, name) {
106 Strength.stronger = function (s1, s2) {
110 Strength.weaker = function (s1, s2) {
114 Strength.weakestOf = function (s1, s2) {
118 Strength.strongest = function (s1, s2) {
122 Strength.prototype.nextWeaker = function () {
124 case 0: return Strength.STRONG_PREFERRED;
125 case 1: return Strength.PREFERRED;
126 case 2: return Strength.STRONG_DEFAULT
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetTest.java 19 import static com.google.common.collect.MapMakerInternalMap.Strength.STRONG;
20 import static com.google.common.collect.MapMakerInternalMap.Strength.WEAK;
347 MapMakerInternalMap.Strength keyStrength) {
386 MapMakerInternalMap.Strength keyStrength) {
MapMakerInternalMapTest.java 34 import com.google.common.collect.MapMakerInternalMap.Strength;
79 assertSame(Strength.STRONG, map.keyStrength);
80 assertSame(Strength.STRONG, map.valueStrength);
226 checkStrength(map, Strength.WEAK, Strength.STRONG);
232 checkStrength(map, Strength.STRONG, Strength.WEAK);
238 checkStrength(map, Strength.STRONG, Strength.SOFT);
243 MapMakerInternalMap<Object, Object> map, Strength keyStrength, Strength valueStrength)
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/vogar/lib/
guava.jar 
  /libcore/benchmarks/libs/
caliper.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 342 milliseconds

1 2 3