/external/v8/src/ |
D | char-predicates-inl.h | 32 inline bool IsInRange(int value, int lower_limit, int higher_limit) { in IsInRange() function 43 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c); in IsAlphaNumeric() 48 return IsInRange(c, '0', '9'); in IsDecimalDigit() 54 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f'); in IsHexDigit() 60 return IsInRange(c, '0', '7'); in IsOctalDigit() 71 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') in IsRegExpWord()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SimpleConstraintManager.cpp | 222 bool IsInRange = IntVal >= From && IntVal <= To; in assumeWithinInclusiveRange() local 223 bool isFeasible = (IsInRange == InRange); in assumeWithinInclusiveRange()
|
/external/v8/src/parsing/ |
D | scanner.cc | 1463 if (IsInRange(c0_, 'a', 'z')) { in ScanIdentifierOrKeyword() 1468 } while (IsInRange(c0_, 'a', 'z')); in ScanIdentifierOrKeyword() 1470 if (IsDecimalDigit(c0_) || IsInRange(c0_, 'A', 'Z') || c0_ == '_' || in ScanIdentifierOrKeyword() 1497 } else if (IsInRange(c0_, 'A', 'Z') || c0_ == '_' || c0_ == '$') { in ScanIdentifierOrKeyword()
|
/external/v8/src/compiler/ppc/ |
D | instruction-selector-ppc.cc | 549 if (mleft.right().IsInRange(0, 31)) { in VisitWord32And() 588 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And() 677 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shl() 704 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shl() 748 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shr() 774 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shr()
|
/external/v8/src/compiler/ |
D | node-matchers.h | 120 bool IsInRange(const T& low, const T& high) const { in IsInRange() function 158 bool IsInRange(const T& low, const T& high) const { in IsInRange() function
|
D | machine-operator-reducer.cc | 956 m.right().IsInRange(1, 24)) || in ReduceStore() 958 m.right().IsInRange(1, 16)))) { in ReduceStore() 1055 if (m.right().IsInRange(1, 31)) { in ReduceWord32Shl()
|
D | code-assembler.cc | 214 m.IsInRange(std::numeric_limits<int32_t>::min(), in ToInt32Constant()
|
D | js-native-context-specialization.cc | 1175 if (mindex.IsInteger() && mindex.IsInRange(0.0, string->length() - 1)) { in ReduceKeyedAccess()
|
/external/v8/src/ast/ |
D | ast-value-factory.cc | 252 if (literal.length() == 1 && IsInRange(literal[0], 'a', 'z')) { in GetOneByteStringInternal()
|
/external/v8/src/compiler/mips64/ |
D | instruction-selector-mips64.cc | 656 m.right().IsInRange(1, 31)) { in VisitWord32Shl() 740 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) { in VisitWord64Shl() 749 m.right().IsInRange(1, 63)) { in VisitWord64Shl() 1377 if (m.right().IsInRange(32, 63)) { in VisitTruncateInt64ToInt32()
|
/external/v8/src/compiler/s390/ |
D | instruction-selector-s390.cc | 927 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And() 1001 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shl() 1048 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shr()
|
/external/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 128 if (m.right().IsInRange(kImmMin, kImmMax)) { in TryMatchShift() 149 if (m.right().IsInRange(kImmMin, kImmMax)) { in TryMatchShiftImmediate() 958 m.right().IsInRange(0, 31)) { in VisitWord32Shr()
|
/external/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 1029 m.right().IsInRange(1, 31)) { in VisitWord32Shl() 1067 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) { in VisitWord64Shl()
|
/external/v8/src/compiler/mips/ |
D | instruction-selector-mips.cc | 468 m.right().IsInRange(1, 31)) { in VisitWord32Shl()
|
/external/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 718 m.right().IsInRange(32, 63)) { in VisitWord64Shl()
|