Home
last modified time | relevance | path

Searched refs:IsInRange (Results 1 – 14 of 14) 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.cc1358 if (IsInRange(c0_, 'a', 'z')) { in ScanIdentifierOrKeyword()
1363 } while (IsInRange(c0_, 'a', 'z')); in ScanIdentifierOrKeyword()
1365 if (IsDecimalDigit(c0_) || IsInRange(c0_, 'A', 'Z') || c0_ == '_' || in ScanIdentifierOrKeyword()
1392 } else if (IsInRange(c0_, 'A', 'Z') || c0_ == '_' || c0_ == '$') { in ScanIdentifierOrKeyword()
/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc577 if (mleft.right().IsInRange(0, 31)) { in VisitWord32And()
612 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And()
690 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shl()
715 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shl()
757 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shr()
782 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shr()
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc529 if (mleft.right().IsInRange(0, 31)) { in VisitWord32And()
568 if (mleft.right().IsInRange(0, 63)) { in VisitWord64And()
657 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shl()
684 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) { in VisitWord64Shl()
728 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) { in VisitWord32Shr()
754 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.cc928 m.right().IsInRange(1, 24)) || in ReduceStore()
930 m.right().IsInRange(1, 16)))) { in ReduceStore()
1027 if (m.right().IsInRange(1, 31)) { in ReduceWord32Shl()
Dcode-assembler.cc147 m.IsInRange(std::numeric_limits<int32_t>::min(), in ToInt32Constant()
Djs-native-context-specialization.cc796 if (mindex.IsInteger() && mindex.IsInRange(0.0, string->length() - 1)) { in ReduceKeyedAccess()
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc604 m.right().IsInRange(1, 31)) { in VisitWord32Shl()
688 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) { in VisitWord64Shl()
697 m.right().IsInRange(1, 63)) { in VisitWord64Shl()
1322 if (m.right().IsInRange(32, 63)) { in VisitTruncateInt64ToInt32()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc106 if (m.right().IsInRange(kImmMin, kImmMax)) { in TryMatchShift()
127 if (m.right().IsInRange(kImmMin, kImmMax)) { in TryMatchShiftImmediate()
913 m.right().IsInRange(0, 31)) { in VisitWord32Shr()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc1004 m.right().IsInRange(1, 31)) { in VisitWord32Shl()
1042 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) { in VisitWord64Shl()
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc453 m.right().IsInRange(1, 31)) { in VisitWord32Shl()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc666 m.right().IsInRange(32, 63)) { in VisitWord64Shl()