Home
last modified time | relevance | path

Searched refs:IsInRange (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/
Dchar-predicates-inl.h32 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/
DSimpleConstraintManager.cpp222 bool IsInRange = IntVal >= From && IntVal <= To; in assumeWithinInclusiveRange() local
223 bool isFeasible = (IsInRange == InRange); in assumeWithinInclusiveRange()
/external/v8/src/parsing/
Dscanner.cc1463 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/
Dinstruction-selector-ppc.cc549 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/
Dnode-matchers.h120 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
Dmachine-operator-reducer.cc956 m.right().IsInRange(1, 24)) || in ReduceStore()
958 m.right().IsInRange(1, 16)))) { in ReduceStore()
1055 if (m.right().IsInRange(1, 31)) { in ReduceWord32Shl()
Dcode-assembler.cc214 m.IsInRange(std::numeric_limits<int32_t>::min(), in ToInt32Constant()
Djs-native-context-specialization.cc1175 if (mindex.IsInteger() && mindex.IsInRange(0.0, string->length() - 1)) { in ReduceKeyedAccess()
/external/v8/src/ast/
Dast-value-factory.cc252 if (literal.length() == 1 && IsInRange(literal[0], 'a', 'z')) { in GetOneByteStringInternal()
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc656 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/
Dinstruction-selector-s390.cc927 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/
Dinstruction-selector-arm.cc128 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/
Dinstruction-selector-arm64.cc1029 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/
Dinstruction-selector-mips.cc468 m.right().IsInRange(1, 31)) { in VisitWord32Shl()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc718 m.right().IsInRange(32, 63)) { in VisitWord64Shl()