| /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/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/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/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| OperatorKinds.h | 22 OO_None, ///< Not an overloaded operator 29 /// Retrieve the spelling of the given overloaded operator, without 30 /// the preceding "operator" keyword. 31 const char *getOperatorSpelling(OverloadedOperatorKind Operator); 33 /// Get the other overloaded operator that the given operator can be rewritten 34 /// into, if any such operator exists. 52 /// Determine if this is a compound assignment operator.
|
| /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...] |
| /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/sys/external/bsd/acpica/dist/compiler/ |
| dtexpress.c | 104 * Operator - Parse token for the operator (OP_EXP_*) 116 UINT32 Operator, 124 switch (Operator) 241 /* Unknown operator */ 251 DtGetOpName (Operator),
|
| 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/sys/external/bsd/acpica/dist/tools/acpisrc/ |
| asconvrt.c | 163 for (BraceInfo = Gbl_BraceInfo; BraceInfo->Operator; BraceInfo++) 165 if (!(strncmp (BraceInfo->Operator, SubBuffer, BraceInfo->Length))) 184 BraceInfo->Operator + 1, LineNumber, Filename);
|
| /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...] |
| 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/llvm/lib/TableGen/ |
| SetTheory.cpp | 39 struct AddOp : public SetTheory::Operator { 47 struct SubOp : public SetTheory::Operator { 63 struct AndOp : public SetTheory::Operator { 79 struct SetIntBinOp : public SetTheory::Operator { 86 PrintFatalError(Loc, "Operator requires (Op Set, Int) arguments: " + 158 struct InterleaveOp : public SetTheory::Operator { 177 struct SequenceOp : public SetTheory::Operator { 254 void SetTheory::Operator::anchor() {} 270 void SetTheory::addOperator(StringRef Name, std::unique_ptr<Operator> Op) { 304 PrintFatalError(Loc, "Unknown set operator: " + Expr->getAsString()) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| InferAddressSpaces.cpp | 111 #include "llvm/IR/Operator.h" 241 static bool isNoopPtrIntCastPair(const Operator *I2P, const DataLayout &DL, 244 auto *P2I = dyn_cast<Operator>(I2P->getOperand(0)); 277 const Operator *Op = dyn_cast<Operator>(&V); 309 const Operator &Op = cast<Operator>(V); 330 auto *P2I = cast<Operator>(Op.getOperand(0)); 412 Operator *Op = cast<Operator>(V) [all...] |
| /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),
|
| /src/external/apache2/llvm/lib/libLLVMIR/ |
| Makefile | 52 Operator.cpp \
|
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| DWARFEmitter.cpp | 699 "invalid number (%zu) of operands for the operator: %s, %" PRIu64 711 "unable to write address for the operator %s: %s", 723 return checkOperandCount(dwarf::OperationEncodingString(Operation.Operator), 728 writeInteger((uint8_t)Operation.Operator, OS, IsLittleEndian); 729 switch (Operation.Operator) { 740 StringRef EncodingStr = dwarf::OperationEncodingString(Operation.Operator); 744 ? "0x" + utohexstr(Operation.Operator) 756 writeInteger((uint8_t)Entry.Operator, OS, IsLittleEndian); 758 StringRef EncodingName = dwarf::RangeListEncodingString(Entry.Operator); 769 switch (Entry.Operator) { [all...] |
| DWARFYAML.cpp | 281 IO.mapRequired("Operator", DWARFOperation.Operator); 287 IO.mapRequired("Operator", RnglistEntry.Operator); 293 IO.mapRequired("Operator", LoclistEntry.Operator);
|
| /src/external/bsd/byacc/dist/test/ |
| btyacc_demo.y | 24 enum Operator { ADD, SUB, MUL, MOD, DIV, DEREF }; 224 extern Expr * build_expr(Expr *left, enum Operator op, Expr *right);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| PPExpressions.cpp | 167 // (except for those macro names modified by the 'defined' unary operator), 169 // of this replacement process or use of the 'defined' unary operator does 471 // If this operator is live and overflowed, report the issue. 521 /// getPrecedence - Return the precedence of the specified binary operator 588 tok::TokenKind Operator = PeekTok.getKind(); 590 // If this is a short-circuiting operator, see if the RHS of the operator is 596 if (Operator == tok::ampamp && LHS.Val == 0) 598 else if (Operator == tok::pipepipe && LHS.Val != 0) 600 else if (Operator == tok::question && LHS.Val == 0 [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateVariadic.cpp | 44 // call operator, so we don't need to look for all the other ways we 1187 tok::TokenKind Operator, 1201 // In a binary fold, op1 and op2 shall be the same fold-operator, and 1227 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator); 1252 BinaryOperatorKind Operator, 1257 CXXFoldExpr(Context.DependentTy, Callee, LParenLoc, LHS, Operator, 1262 BinaryOperatorKind Operator) { 1268 // if the operator is not listed [above], the instantiation is ill-formed. 1273 switch (Operator) { 1284 << BinaryOperator::getOpcodeStr(Operator); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Value.cpp | 29 #include "llvm/IR/Operator.h" 610 } else if (Operator::getOpcode(V) == Instruction::BitCast) { 611 V = cast<Operator>(V)->getOperand(0); 615 Operator::getOpcode(V) == Instruction::AddrSpaceCast) { 618 V = cast<Operator>(V)->getOperand(0); 721 } else if (Operator::getOpcode(V) == Instruction::BitCast || 722 Operator::getOpcode(V) == Instruction::AddrSpaceCast) { 723 V = cast<Operator>(V)->getOperand(0); 1130 Entry->operator=(nullptr); 1182 Entry->operator=(New) [all...] |
| /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...] |
| /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));
|