HomeSort by: relevance | last modified time | path
    Searched defs:Operator (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
SetTheory.h 69 /// Operator - A callback representing a DAG operator.
70 class Operator {
74 virtual ~Operator() = default;
76 /// apply - Apply this operator to Expr's arguments and insert the result
101 StringMap<std::unique_ptr<Operator>> Operators;
123 /// addOperator - Add a DAG operator.
124 void addOperator(StringRef Name, std::unique_ptr<Operator>);
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahasl.c 3 * Module Name: ahasl - ASL operator decoding for acpihelp utility
95 /* Upper case the operator name before substring compare */
151 * PARAMETERS: Name - Name or prefix for an ASL operator.
179 * FUNCTION: AhFindAslOperators (entry point for ASL operator search)
181 * PARAMETERS: Name - Name or prefix for an ASL operator.
195 const AH_ASL_OPERATOR *Operator;
203 for (Operator = Gbl_AslOperatorInfo; Operator->Name; Operator++)
207 AhDisplayAslOperator (Operator);
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 21 struct Operator;
87 Operator *Op; // The Operation used to generate this value.
100 static std::vector<Operator*> TheOperators;
102 /// Operator - This is a vector operation that is available for use.
103 struct Operator {
109 Operator(unsigned short shufflemask, const char *name, unsigned opnum,
114 ~Operator() {
303 Operator *Op = TheOperators[opnum];
468 struct vmrghw : public Operator {
469 vmrghw() : Operator(0x0415, "vmrghw", OP_VMRGHW) {
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslparseop.c 376 * operand in an ASL/AML operator. Meaning that the top-level
447 * DESCRIPTION: Implements the C-style '=' operator. It changes the parse
450 * of and additional Store() operator. An optimization.
462 ACPI_PARSE_OBJECT *Operator;
494 /* Otherwise, just create a normal Store operator */
502 * last operand of the operator
525 * for the operator (ZERO is a "no target" placeholder).
541 Operator = TrAllocateOp (PARSEOP_STORE);
542 TrLinkOpChildren (Operator, 2, Source, Target);
546 Operator->Asl.LineNumber = Target->Asl.LineNumber
    [all...]
aslxrefout.c 723 const char *Operator;
778 Operator = "Scope";
782 Operator = "Alias";
786 Operator = "ModLevel";
790 Operator = AcpiUtGetTypeName (CallerOp->Asl.Node->Type);
794 "[%5u] %-40s %-8s via path: %s, Operator: %s\n",
797 Operator,
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedTemplate.h 165 /// FIXME: Temporarily stores the overloaded operator kind.
166 OverloadedOperatorKind Operator;
248 Name(Name), Operator(OperatorKind), Template(OpaqueTemplateName),
DeclSpec.h 413 void operator=(const DeclSpec &) = delete;
929 /// An overloaded operator name, e.g., operator+.
931 /// A conversion function name, e.g., operator int.
933 /// A user-defined literal name, e.g., operator "" _i.
953 const UnqualifiedId &operator=(const UnqualifiedId &) = delete;
960 /// The kind of overloaded operator.
961 OverloadedOperatorKind Operator;
964 /// the operator, e.g., the "new", "[", and "]" tokens in
965 /// operator new []
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 142 "', result operator is not a record");
146 Record *Operator = OpDef->getDef();
147 if (!Operator->isSubClassOf("Instruction")) {
149 "', result operator '" + Operator->getName() +
155 CodeGenInstruction Insn(Operator);
159 "', result operator '" + Operator->getName() +
167 "', result operator '" + Operator->getName()
    [all...]
RISCVCompressInstEmitter.cpp 419 Record *Operator = SourceDag->getOperatorAsDef(Rec->getLoc());
420 if (!Operator->isSubClassOf("RVInst"))
421 PrintFatalError(Rec->getLoc(), "Input instruction '" + Operator->getName() +
423 CodeGenInstruction SourceInst(Operator);
CodeGenDAGPatterns.h 116 MVT operator*() const {
125 const_iterator &operator++() {
132 bool operator==(const const_iterator &It) const {
136 bool operator!=(const const_iterator &It) const {
137 return !operator==(It);
176 bool operator==(const MachineValueTypeSet &S) const {
180 bool operator!=(const MachineValueTypeSet &S) const {
181 return !operator==(S);
195 TypeSetByHwMode &operator=(const TypeSetByHwMode &) = default;
245 bool operator==(const TypeSetByHwMode &VTS) const
    [all...]
CodeGenDAGPatterns.cpp 211 bool TypeSetByHwMode::operator==(const TypeSetByHwMode &VTS) const {
255 raw_ostream &operator<<(raw_ostream &OS, const TypeSetByHwMode &T) {
727 bool operator()(const TypeSize &LHS, const TypeSize &RHS) const {
873 bool ScopedName::operator==(const ScopedName &o) const {
877 bool ScopedName::operator!=(const ScopedName &o) const {
1821 static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) {
1822 if (Operator->getName() == "set" ||
1823 Operator->getName() == "implicit")
1826 if (Operator->isSubClassOf("Intrinsic"))
1827 return CDP.getIntrinsic(Operator).IS.RetVTs.size()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateName.h 343 /// Insertion operator for diagnostics. This allows sending TemplateName's
345 const StreamingDiagnostic &operator<<(const StreamingDiagnostic &DB,
455 /// overloaded operator kind (when set).
465 /// The overloaded operator name.
468 OverloadedOperatorKind Operator;
491 OverloadedOperatorKind Operator)
492 : Qualifier(Qualifier, true), Operator(Operator),
496 OverloadedOperatorKind Operator,
498 : Qualifier(Qualifier, true), Operator(Operator)
    [all...]
ExprCXX.h 69 /// A call to an overloaded operator written using operator
72 /// Represents a call to an overloaded operator written using operator
111 /// Returns the kind of overloaded operator that this expression refers to.
142 /// Is this written as an infix binary operator?
145 /// Returns the location of the operator symbol in the expression.
153 OverloadedOperatorKind Operator = getOperator();
154 return (Operator < OO_Plus || Operator >= OO_Arrow |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmLexer.cpp 875 AsmToken::TokenKind Operator;
878 std::tie(Operator, OperatorLength) =
907 if (Operator != AsmToken::Percent) {
909 return AsmToken(Operator, StringRef(TokStart, OperatorLength));
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
gen-mul-tables.cc 101 We call something a 'unary' operator if it only takes in one
105 class Operator
108 /* Construct for a binary operator. */
109 Operator (const char *pattern, const char *name, binary_op_func func,
117 /* Construct for a unary operator. */
118 Operator (const char *pattern, const char *name, unary_op_func func,
144 /* Unary operator to apply, or NULL if this is a binary operator. */
147 /* Binary operator to apply, or NULL if this is a unary operator. *
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
acpisrc.h 222 char *Operator;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
30 class Operator : public User {
32 // The Operator class is intended to be used as a utility, and is never itself
34 Operator() = delete;
35 ~Operator() = delete;
37 void *operator new(size_t s) = delete;
64 /// Mul, and Shl. It does not include SDiv, despite that operator having the
66 class OverflowingBinaryOperator : public Operator {
120 class PossiblyExactOperator : public Operator {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 178 dwarf::LocationAtom Operator;
183 dwarf::RnglistEntries Operator;
188 dwarf::LoclistEntries Operator;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
MicrosoftDemangleNodes.h 118 New, // ?2 # operator new
119 Delete, // ?3 # operator delete
120 Assign, // ?4 # operator=
121 RightShift, // ?5 # operator>>
122 LeftShift, // ?6 # operator<<
123 LogicalNot, // ?7 # operator!
124 Equals, // ?8 # operator==
125 NotEquals, // ?9 # operator!=
126 ArraySubscript, // ?A # operator[]
127 Pointer, // ?C # operator-
    [all...]
ItaniumDemangle.h 228 Node *operator[](size_t Idx) const { return Elements[Idx]; }
313 inline Qualifiers operator|=(Qualifiers &Q1, Qualifiers Q2) {
367 S += "operator ";
807 S += "operator\"\" ";
1225 /// template<typename T> operator T*();
1607 const StringView Operator;
1611 : Node(KPostfixExpr), Child(Child_), Operator(Operator_) {}
1613 template<typename Fn> void match(Fn F) const { F(Child, Operator); }
1619 S += Operator;
1778 bool IsGlobal; // ::operator new
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 914 /// ParseOperation - Parse an operator. This returns null on error.
921 TokError("unknown bang operator");
942 TokError("did not get type for unary operator");
979 TokError("did not get type for unary operator");
994 TokError("expected '(' after unary operator");
1007 TokError("expected string, list, or dag type argument in unary operator");
1015 TokError("expected string, list, or dag type argument in unary operator");
1025 TokError("expected list type argument in unary operator");
1031 TokError("expected list type argument in unary operator");
1037 TokError("empty list argument in unary operator");
    [all...]
  /src/external/bsd/byacc/dist/test/btyacc/
btyacc_demo.tab.c 138 enum Operator { ADD, SUB, MUL, MOD, DIV, DEREF };
675 extern Expr * build_expr(Expr *left, enum Operator op, Expr *right);
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 204 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand,
235 Expected<ExpressionValue> llvm::operator-(const ExpressionValue &LeftOperand,
285 Expected<ExpressionValue> llvm::operator*(const ExpressionValue &LeftOperand,
317 Expected<ExpressionValue> llvm::operator/(const ExpressionValue &LeftOperand,
658 char Operator = popFront(RemainingExpr);
660 switch (Operator) {
662 EvalBinop = operator+;
665 EvalBinop = operator-;
669 SM, OpLoc, Twine("unsupported operation '") + Twine(Operator) + "'");
699 .Case("add", operator+
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 102 ShadowMapEntry &operator=(const ShadowMapEntry &) = delete;
103 ShadowMapEntry &operator=(ShadowMapEntry &&Move) {
625 const DeclIndexPair *operator->() const { return &Value; }
636 iterator &operator++() {
649 /*iterator operator++(int) {
655 reference operator*() const {
662 pointer operator->() const { return pointer(**this); }
664 friend bool operator==(const iterator &X, const iterator &Y) {
670 friend bool operator!=(const iterator &X, const iterator &Y) {
988 // Explicit operator and conversion function calls are also very rare
    [all...]
  /src/external/gpl3/binutils/dist/include/
hp-symtab.h 1762 unsigned int Operator: 1; /* operator function */

Completed in 94 milliseconds

1 2