Home
last modified time | relevance | path

Searched refs:Rhs (Results 1 - 25 of 43) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAlignment.h47 friend bool operator==(Align Lhs, Align Rhs);
48 friend bool operator!=(Align Lhs, Align Rhs);
49 friend bool operator<=(Align Lhs, Align Rhs);
50 friend bool operator>=(Align Lhs, Align Rhs);
51 friend bool operator<(Align Lhs, Align Rhs);
52 friend bool operator>(Align Lhs, Align Rhs);
251 /// Comparisons between Align and scalars. Rhs must be positive.
252 inline bool operator==(Align Lhs, uint64_t Rhs) {
253 ALIGN_CHECK_ISPOSITIVE(Rhs);
254 return Lhs.value() == Rhs;
[all...]
/third_party/mesa3d/src/gtest/include/gtest/
H A Dgtest-matchers.h526 // The following template definition assumes that the Rhs parameter is
528 template <typename D, typename Rhs, typename Op>
531 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} in ComparisonBase()
543 template <typename Lhs, typename = Rhs>
546 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} in Impl()
561 Rhs rhs_;
563 Rhs rhs_;
566 template <typename Rhs>
567 class EqMatcher : public ComparisonBase<EqMatcher<Rhs>, Rhs, AnyE
[all...]
/third_party/googletest/googletest/include/gtest/
H A Dgtest-matchers.h725 // The following template definition assumes that the Rhs parameter is
727 template <typename D, typename Rhs, typename Op>
730 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} in ComparisonBase()
757 Rhs rhs_;
760 template <typename Rhs>
761 class EqMatcher : public ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq> {
763 explicit EqMatcher(const Rhs& rhs) in EqMatcher()
764 : ComparisonBase<EqMatcher<Rhs>, Rhs, AnyE in EqMatcher()
[all...]
/third_party/node/deps/googletest/include/gtest/
H A Dgtest-matchers.h689 // The following template definition assumes that the Rhs parameter is
691 template <typename D, typename Rhs, typename Op>
694 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} in ComparisonBase()
721 Rhs rhs_;
724 template <typename Rhs>
725 class EqMatcher : public ComparisonBase<EqMatcher<Rhs>, Rhs, std::equal_to<>> {
727 explicit EqMatcher(const Rhs& rhs) in EqMatcher()
728 : ComparisonBase<EqMatcher<Rhs>, Rhs, st in EqMatcher()
[all...]
/third_party/gn/src/base/numerics/
H A Dsafe_conversions_impl.h450 typename Rhs,
452 (MaxExponent<Lhs>::value > MaxExponent<Rhs>::value)
457 template <typename Lhs, typename Rhs>
458 struct MaxExponentPromotion<Lhs, Rhs, LEFT_PROMOTION> {
462 template <typename Lhs, typename Rhs>
463 struct MaxExponentPromotion<Lhs, Rhs, RIGHT_PROMOTION> {
464 using type = Rhs;
469 typename Rhs,
472 ? (std::is_signed<Rhs>::value
473 ? (MaxExponent<Lhs>::value > MaxExponent<Rhs>
[all...]
/third_party/node/deps/v8/src/base/
H A Dsafe_conversions_impl.h435 template <typename Lhs, typename Rhs,
437 (MaxExponent<Lhs>::value > MaxExponent<Rhs>::value)
442 template <typename Lhs, typename Rhs>
443 struct MaxExponentPromotion<Lhs, Rhs, LEFT_PROMOTION> {
447 template <typename Lhs, typename Rhs>
448 struct MaxExponentPromotion<Lhs, Rhs, RIGHT_PROMOTION> {
449 using type = Rhs;
453 template <typename Lhs, typename Rhs,
456 ? (std::is_signed<Rhs>::value
457 ? (MaxExponent<Lhs>::value > MaxExponent<Rhs>
[all...]
H A Dlogging.h241 template <typename Lhs, typename Rhs>
242 V8_NOINLINE std::string* MakeCheckOpString(Lhs lhs, Rhs rhs, char const* msg) { in MakeCheckOpString()
244 std::string rhs_str = PrintCheckOperand<Rhs>(rhs); in MakeCheckOpString()
296 // signed, and Rhs is unsigned. False in all other cases.
297 template <typename Lhs, typename Rhs>
300 using rhs_underlying = typename comparison_underlying_type<Rhs>::type;
306 // Same thing, other way around: Lhs is unsigned, Rhs signed.
307 template <typename Lhs, typename Rhs>
308 struct is_unsigned_vs_signed : public is_signed_vs_unsigned<Rhs, Lhs> {};
312 // and Rhs ar
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dsafe_conversions_impl.h472 typename Rhs,
474 (MaxExponent<Lhs>::value > MaxExponent<Rhs>::value) ? LEFT_PROMOTION
478 template <typename Lhs, typename Rhs>
479 struct MaxExponentPromotion<Lhs, Rhs, LEFT_PROMOTION>
484 template <typename Lhs, typename Rhs>
485 struct MaxExponentPromotion<Lhs, Rhs, RIGHT_PROMOTION>
487 using type = Rhs;
492 typename Rhs,
495 ? (std::is_signed<Rhs>::value
496 ? (MaxExponent<Lhs>::value > MaxExponent<Rhs>
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h146 friend bool operator<(const DocNode &Lhs, const DocNode &Rhs) { in operator <() argument
149 if (Lhs.KindAndDoc != Rhs.KindAndDoc) { in operator <()
150 if (!Rhs.KindAndDoc) in operator <()
154 return (unsigned)Lhs.getKind() < (unsigned)Rhs.getKind(); in operator <()
158 return Lhs.Int < Rhs.Int; in operator <()
160 return Lhs.UInt < Rhs.UInt; in operator <()
164 return Lhs.Bool < Rhs.Bool; in operator <()
166 return Lhs.Float < Rhs.Float; in operator <()
169 return Lhs.Raw < Rhs.Raw; in operator <()
176 friend bool operator==(const DocNode &Lhs, const DocNode &Rhs) { in operator ==() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A Dglslang_tab.cpp343 #define YYLLOC_DEFAULT(Current, Rhs, N) \
346 (Current).first_file = YYRHSLOC(Rhs, 1).first_file; \
347 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
348 (Current).last_file = YYRHSLOC(Rhs, N).last_file; \
349 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
352 (Current).first_file = YYRHSLOC(Rhs, 0).last_file; \
353 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
354 (Current).last_file = YYRHSLOC(Rhs, 0).last_file; \
355 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1633 # define YYLLOC_DEFAULT(Current, Rhs,
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp.h86 # define YYLLOC_DEFAULT(Current, Rhs, N) \
90 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
91 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
92 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
93 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
98 YYRHSLOC(Rhs, 0).last_line; \
100 YYRHSLOC(Rhs, 0).last_column; \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DScopeExit.h33 scope_exit(scope_exit &&Rhs) in scope_exit() argument
34 : ExitFunction(std::move(Rhs.ExitFunction)), Engaged(Rhs.Engaged) { in scope_exit()
35 Rhs.release(); in scope_exit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp193 const SortedNodesTy::value_type &Rhs) { in getSortedNodes()
194 if (Lhs->second->NumberOfInlines != Rhs->second->NumberOfInlines) in getSortedNodes()
195 return Lhs->second->NumberOfInlines > Rhs->second->NumberOfInlines; in getSortedNodes()
196 if (Lhs->second->NumberOfRealInlines != Rhs->second->NumberOfRealInlines) in getSortedNodes()
198 Rhs->second->NumberOfRealInlines; in getSortedNodes()
199 return Lhs->first() < Rhs->first(); in getSortedNodes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp211 const BCEAtom &Rhs() const { return Rhs_; } in Rhs() function in __anon25173::BCECmpBlock
343 auto Rhs = visitICmpLoadOperand(CmpI->getOperand(1), BaseId); in visitICmp()
344 if (!Rhs.BaseId) in visitICmp()
347 return BCECmpBlock(std::move(Lhs), std::move(Rhs), in visitICmp()
400 << Comparison.Rhs().BaseId << " + " in enqueueBlock()
401 << Comparison.Rhs().Offset << "\n"); in enqueueBlock()
425 First.Rhs().BaseId == Second.Rhs().BaseId && in IsContiguous()
427 First.Rhs().Offset + First.SizeBits() / 8 == Second.Rhs() in IsContiguous()
622 Value *const Rhs = Builder.Insert(FirstCmp.Rhs().GEP->clone()); mergeComparisons() local
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dglslang_tab_autogen.cpp409 #define YYLLOC_DEFAULT(Current, Rhs, N) \
414 (Current).first_file = YYRHSLOC(Rhs, 1).first_file; \
415 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
416 (Current).last_file = YYRHSLOC(Rhs, N).last_file; \
417 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
421 (Current).first_file = YYRHSLOC(Rhs, 0).last_file; \
422 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
423 (Current).last_file = YYRHSLOC(Rhs, 0).last_file; \
424 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1635 # define YYLLOC_DEFAULT(Current, Rhs,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
H A DTestUtil.h264 bool operator==(const Dqword &Rhs) const {
265 return std::memcmp(this, &Rhs, sizeof(*this)) == 0;
304 operator Op(const Dqword &Rhs) const { \
311 reinterpret_cast<const ElemType *const>(&Rhs); \
334 Op(const Dqword &Rhs) const { \
341 reinterpret_cast<const Container *const>(&Rhs); \
360 Dqword operator Op(const Dqword &Rhs) const { \
373 reinterpret_cast<const ElemType *const>(&Rhs); \
415 operator*(const Dqword &Rhs) const {
422 reinterpret_cast<const Container *const>(&Rhs);
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dglsl_parser_extras.h990 # define YYLLOC_DEFAULT(Current, Rhs, N) \
994 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
995 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
996 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
997 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
998 (Current).path = YYRHSLOC(Rhs, N).path; \
1003 YYRHSLOC(Rhs, 0).last_line; \
1005 YYRHSLOC(Rhs, 0).last_column; \
1006 (Current).path = YYRHSLOC(Rhs, 0).path; \
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceBitVector.h66 Reference &operator=(const Reference &Rhs) { return *this = (bool)Rhs; } in operator =() argument
140 SmallBitVector operator&(const SmallBitVector &Rhs) const {
141 assert(size() == Rhs.size());
142 SmallBitVector Ret(std::max(size(), Rhs.size()));
144 Ret.Bits[i] = Bits[i] & Rhs.Bits[i];
155 SmallBitVector &operator|=(const SmallBitVector &Rhs) {
156 assert(size() == Rhs.size());
157 resize(std::max(size(), Rhs.size()));
159 Bits[i] |= Rhs
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h32 /// Returns true if Lhs should take priority over Rhs.
36 virtual bool compare(const InstRef &Lhs, const InstRef &Rhs) const = 0;
51 bool compare(const InstRef &Lhs, const InstRef &Rhs) const override {
53 int RhsRank = computeRank(Rhs);
58 return Lhs.getSourceIndex() < Rhs.getSourceIndex();
/third_party/python/Tools/peg_generator/pegen/
H A Dgrammar_parser.py33 Rhs,
169 return Rule ( rulename [0] , rulename [1] , Rhs ( alts . alts + more_alts . alts ) , memo = opt )
237 def alts(self) -> Optional[Rhs]:
247 return Rhs ( [alt] + alts . alts )
252 return Rhs ( [alt] )
257 def more_alts(self) -> Optional[Rhs]:
269 return Rhs ( alts . alts + more_alts . alts )
278 return Rhs ( alts . alts )
H A Dgrammar.py70 def __init__(self, name: str, type: Optional[str], rhs: Rhs, memo: Optional[object] = None):
98 def __iter__(self) -> Iterator[Rhs]:
101 def flatten(self) -> Rhs:
145 class Rhs: class
154 return f"Rhs({self.alts!r})"
321 def __init__(self, rhs: Rhs):
330 def __iter__(self) -> Iterator[Rhs]:
358 Item = Union[Plain, Opt, Repeat, Forced, Lookahead, Rhs, Cut]
H A Dvalidator.py4 from pegen.grammar import Alt, GrammarVisitor, Rhs, Rule namespace
23 def visit_Rhs(self, node: Rhs) -> None:
H A Dparser_generator.py37 Rhs,
171 def artifical_rule_from_rhs(self, rhs: Rhs) -> str:
184 self.all_rules[name] = Rule(name, None, Rhs([Alt([NamedItem(None, node)])]))
199 Rhs([extra_function_alt]),
207 Rhs([alt]),
235 def visit_Rhs(self, rhs: Rhs) -> bool:
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
H A DTestUtil.h376 bool operator==(const Dqword &Rhs) const {
377 return std::memcmp(this, &Rhs, sizeof(*this)) == 0;
416 operator Op(const Dqword &Rhs) const { \
423 reinterpret_cast<const ElemType *const>(&Rhs); \
446 Op(const Dqword &Rhs) const { \
453 reinterpret_cast<const Container *const>(&Rhs); \
472 Dqword operator Op(const Dqword &Rhs) const { \
485 reinterpret_cast<const ElemType *const>(&Rhs); \
527 operator*(const Dqword &Rhs) const {
534 reinterpret_cast<const Container *const>(&Rhs);
[all...]
/third_party/python/Tools/peg_generator/scripts/
H A Dgrammar_grapher.py42 Rhs,
85 elif isinstance(item, Rhs):

Completed in 25 milliseconds

12