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

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/Stages/
RetireStage.h 34 RetireStage(const RetireStage &Other) = delete;
35 RetireStage &operator=(const RetireStage &Other) = delete;
EntryStage.h 35 EntryStage(const EntryStage &Other) = delete;
36 EntryStage &operator=(const EntryStage &Other) = delete;
ExecuteStage.h 46 ExecuteStage(const ExecuteStage &Other) = delete;
47 ExecuteStage &operator=(const ExecuteStage &Other) = delete;
MicroOpQueueStage.h 45 MicroOpQueueStage(const MicroOpQueueStage &Other) = delete;
46 MicroOpQueueStage &operator=(const MicroOpQueueStage &Other) = delete;
Stage.h 31 Stage(const Stage &Other) = delete;
32 Stage &operator=(const Stage &Other) = delete;
InOrderIssueStage.h 61 InOrderIssueStage(const InOrderIssueStage &Other) = delete;
62 InOrderIssueStage &operator=(const InOrderIssueStage &Other) = delete;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SizeOpts.h 38 Other, // Others.
96 PGSOQueryType QueryType = PGSOQueryType::Other);
102 PGSOQueryType QueryType = PGSOQueryType::Other);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 477 // The "other" values are stored in the last 6 bits of the second byte.
480 unsigned Other = cast<MCSymbolELF>(Sym).getOther() << 2;
481 return (Other & ELF::STO_PPC64_LOCAL_MASK) != 0;
PPCAsmBackend.cpp 173 // The "other" values are stored in the last 6 bits of the second
176 unsigned Other = S->getOther() << 2;
177 if ((Other & ELF::STO_PPC64_LOCAL_MASK) != 0)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-elfabi/
ErrorCollector.h 37 ErrorCollector &operator=(const ErrorCollector &Other) = delete;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-typeprint.cc 34 class Other
38 Other ovar;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-typeprint.cc 34 class Other
38 Other ovar;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h 54 StorageImpl &operator=(const StorageImpl &Other) = delete;
55 StorageImpl(const StorageImpl &Other) = delete;
61 Any(const Any &Other)
62 : Storage(Other.Storage ? Other.Storage->clone() : nullptr) {}
89 Any(Any &&Other) : Storage(std::move(Other.Storage)) {}
91 Any &swap(Any &Other) {
92 std::swap(Storage, Other.Storage);
96 Any &operator=(Any Other) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Alignment.h 70 /// checks have been performed when building `Other`.
71 constexpr Align(const Align &Other) = default;
72 constexpr Align(Align &&Other) = default;
73 Align &operator=(const Align &Other) = default;
74 Align &operator=(Align &&Other) = default;
117 /// checks have been performed when building `Other`.
118 MaybeAlign(const MaybeAlign &Other) = default;
119 MaybeAlign &operator=(const MaybeAlign &Other) = default;
120 MaybeAlign(MaybeAlign &&Other) = default;
121 MaybeAlign &operator=(MaybeAlign &&Other) = default
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CFLGraph.h 62 Node Other;
158 /// needs a way of obtaining the summary of other functions when callinsts are
435 // TODO: address other common library functions such as realloc(),
440 // TODO: Add support for noalias args/all the other fun function
473 /// nothing we can do to coax a value out of them, other than calling
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h 38 const AtomicConstraint &Other) const {
39 if (!ParameterMapping != !Other.ParameterMapping)
43 if (ParameterMapping->size() != Other.ParameterMapping->size())
50 C.getCanonicalTemplateArgument((*Other.ParameterMapping)[I].getArgument())
58 bool subsumes(ASTContext &C, const AtomicConstraint &Other) const {
71 if (ConstraintExpr != Other.ConstraintExpr)
75 return hasMatchingParameterMapping(C, Other);
100 NormalizedConstraint(ASTContext &C, const NormalizedConstraint &Other) {
101 if (Other.isAtomic()) {
102 Constraint = new (C) AtomicConstraint(*Other.getAtomicConstraint())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
ModuleDebugStream.h 34 ModuleDebugStreamRef(ModuleDebugStreamRef &&Other) = default;
35 ModuleDebugStreamRef(const ModuleDebugStreamRef &Other) = default;
54 ModuleDebugStreamRef &operator=(ModuleDebugStreamRef &&Other) = delete;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FastISelEmitter.cpp 49 InstructionMemo(const InstructionMemo &Other) = delete;
50 InstructionMemo(InstructionMemo &&Other) = default;
246 // For now, ignore other non-leaf nodes.
263 // For now, the only other thing we accept is register operands.
354 // the other operand being implicit. We must emit something that looks
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
ThreadSafeModule.h 28 /// the context to prevent concurrent access by other threads.
83 ThreadSafeModule(ThreadSafeModule &&Other) = default;
85 ThreadSafeModule &operator=(ThreadSafeModule &&Other) {
91 // does not overlap any other work on the context.
96 M = std::move(Other.M);
97 TSCtx = std::move(Other.TSCtx);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 99 unsigned Other = (Parent == Group1) ? Group2 : Group1;
100 GroupNodes.at(Other) = Parent;
106 // stay as is because there could be other GroupNodes referring to
281 // other types of edges.
615 // registers are available for the other group subregisters, then we
622 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
877 // If the SUnit has other dependencies on the SUnit that
880 // units from being scheduled past each other
883 // Also, if there are dependencies on other SUnits with the
904 LLVM_DEBUG(dbgs() << " (other dependency)\n")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSymbolELF.cpp 158 void MCSymbolELF::setOther(unsigned Other) {
159 assert((Other & 0x1f) == 0);
160 Other >>= 5;
161 assert(Other <= 0x7);
163 setFlags(OtherFlags | (Other << ELF_STO_Shift));
167 unsigned Other = (Flags >> ELF_STO_Shift) & 7;
168 return Other << 5;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerConstantIntrinsics.cpp 68 BasicBlock *Target, *Other;
71 Other = BI->getSuccessor(0);
74 Other = BI->getSuccessor(1);
77 Other = nullptr;
79 if (Target && Target != Other) {
81 Other->removePredecessor(Source);
85 DTU->applyUpdates({{DominatorTree::Delete, Source, Other}});
86 if (pred_empty(Other))
  /src/games/phantasia/
phantglobs.c 42 struct player Other; /* stats for another player */
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCommand.h 40 explicit Command(const Command &Other)
41 : Args(Other.Args), CombinedOutAndErr(Other.CombinedOutAndErr),
42 OutputFile(Other.OutputFile) {}
44 Command &operator=(const Command &Other) {
45 Args = Other.Args;
46 CombinedOutAndErr = Other.CombinedOutAndErr;
47 OutputFile = Other.OutputFile;
86 auto IsMatch = [&](const std::string &Other) {
87 return Arg.compare(0, std::string::npos, Other, 0, Arg.length()) == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 75 SyntaxTree(SyntaxTree &&Other) = default;

Completed in 31 milliseconds

1 2 3 4