HomeSort by relevance Sort by last modified time
    Searched refs:Strength (Results 26 - 50 of 138) sorted by null

12 3 4 5 6

  /external/v8/src/interpreter/
bytecode-generator.h 133 Strength language_mode_strength() const;
bytecode-array-builder.cc 231 Strength strength) {
232 if (is_strong(strength)) {
242 Strength strength) {
243 if (is_strong(strength)) {
265 Token::Value op, Register reg, Strength strength) {
266 if (is_strong(strength)) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 42 import com.google.common.cache.LocalCache.Strength;
154 assertSame(Strength.STRONG, map.keyStrength);
155 assertSame(Strength.STRONG, map.valueStrength);
349 checkStrength(map, Strength.WEAK, Strength.STRONG);
355 checkStrength(map, Strength.STRONG, Strength.WEAK);
361 checkStrength(map, Strength.STRONG, Strength.SOFT);
366 LocalCache<Object, Object> map, Strength keyStrength, Strength valueStrength)
    [all...]
  /external/v8/test/cctest/interpreter/
test-interpreter.cc 552 .BinaryOperation(kShiftOperators[o], reg, Strength::WEAK)
587 .BinaryOperation(kArithmeticOperators[o], reg, Strength::WEAK)
623 .BinaryOperation(kArithmeticOperators[o], reg, Strength::WEAK)
680 .BinaryOperation(Token::Value::ADD, reg, Strength::WEAK)
723 .BinaryOperation(Token::Value::ADD, builder.Parameter(1), Strength::WEAK)
724 .BinaryOperation(Token::Value::ADD, builder.Parameter(2), Strength::WEAK)
725 .BinaryOperation(Token::Value::ADD, builder.Parameter(3), Strength::WEAK)
726 .BinaryOperation(Token::Value::ADD, builder.Parameter(4), Strength::WEAK)
727 .BinaryOperation(Token::Value::ADD, builder.Parameter(5), Strength::WEAK)
728 .BinaryOperation(Token::Value::ADD, builder.Parameter(6), Strength::WEAK
    [all...]
  /external/v8/src/runtime/
runtime-literals.cc 162 Strength strength = is_strong ? Strength::STRONG : Strength::WEAK; local
164 Context::ArrayMapIndex(constant_elements_kind, strength));
  /external/guava/guava/src/com/google/common/collect/
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/v8/src/
code-factory.cc 122 Strength strength) {
123 Handle<Code> code = CompareIC::GetUninitialized(isolate, op, strength);
137 Strength strength) {
138 BinaryOpICStub stub(isolate, op, strength);
objects.h     [all...]
contexts.h 569 Strength strength = Strength::WEAK) {
571 return elements_kind + (is_strong(strength) ? FIRST_JS_ARRAY_STRONG_MAP_SLOT
code-stubs.h     [all...]
isolate.h     [all...]
objects.cc 263 Strength strength) {
264 if (!is_strong(strength)) {
277 if (!is_strong(strength)) {
431 Handle<Object> rhs, Strength strength) {
433 if (is_strong(strength)) {
447 Handle<Object> rhs, Strength strength) {
449 if (is_strong(strength)) {
4784 Strength strength = map->is_strong() ? Strength::STRONG : Strength::WEAK; local
12837 Strength strength = local
    [all...]
code-stubs.cc 273 BinaryOpICStub stub(isolate, static_cast<Token::Value>(op), Strength::WEAK);
  /external/guava/guava-tests/test/com/google/common/collect/
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...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 221 CacheValue.setStrength(CacheValue.Strength.STRONG);
233 CacheValue.setStrength(CacheValue.Strength.SOFT);
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 184 final Strength keyStrength;
187 final Strength valueStrength;
365 return keyStrength != Strength.STRONG;
369 return valueStrength != Strength.STRONG;
372 enum Strength {
426 * Creates a reference for the given value according to this value strength.
433 * at this strength. This strategy will be used unless the user explicitly specifies an
566 static EntryFactory getFactory(Strength keyStrength, boolean usesAccessQueue,
568 int flags = ((keyStrength == Strength.WEAK) ? WEAK_MASK : 0)
    [all...]
  /external/v8/src/ic/
ic-state.cc 75 BinaryOpICState state(isolate, op, Strength::WEAK); \
177 BinaryOpICState state(isolate, op, Strength::WEAK); \
211 if (is_strong(s.strength())) os << "_Strong";
ic.h 620 Strength strength);
629 Strength strength);
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 501 * Any updates to LocalCache.Strength used in CacheBuilder need to be matched in this class for
504 enum Strength {
  /external/v8/src/parsing/
json-parser.h 535 fast_elements, FAST_ELEMENTS, Strength::WEAK, pretenure_);
  /external/v8/src/compiler/
js-generic-lowering.cc 73 strength(p.language_mode())), \
90 // These ops are not language mode dependent; we arbitrarily pass Strength::WEAK
94 ReplaceWithCompareIC(node, token, Strength::WEAK); \
106 strength(OpParameter<LanguageMode>(node))); \
136 Strength str) {
    [all...]
  /external/v8/src/crankshaft/
hydrogen-instructions.cc     [all...]
  /external/v8/test/cctest/
test-unboxed-doubles.cc     [all...]
  /external/v8/src/ast/
ast.cc 487 Strength::WEAK, INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE);

Completed in 1399 milliseconds

12 3 4 5 6