Searched refs:Other (Results 101 - 125 of 276) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp140 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
154 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
243 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
266 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Results);
/external/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp153 MVT::Other, CPIdx,
202 // Other cases are autogenerated.
230 return CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, Ops);
270 return CurDAG->SelectNodeTo(N, XCore::BRFU_lu6, MVT::Other,
273 return CurDAG->SelectNodeTo(N, XCore::BAU_1r, MVT::Other, nextAddr, Glue);
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h72 bool equivalent(const Status &Other) const;
175 bool operator==(const recursive_directory_iterator &Other) const {
176 return State == Other.State; // identity
H A DModule.h276 Module *Other; member in struct:clang::Module::Conflict
318 bool isSubModuleOf(const Module *Other) const;
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h59 template<typename Other>
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other)
201 template<typename Other> TriangularView& operator+=(const DenseBase<Other>& other) { return *this = m_matrix + other.derived(); }
203 template<typename Other> TriangularView& operator-=(const DenseBase<Other>& other) { return *this = m_matrix - other.derived(); }
328 template<int Side, typename Other>
329 inline const internal::triangular_solve_retval<Side,TriangularView, Other>
330 solve(const MatrixBase<Other>& other) const;
335 template<typename Other>
[all...]
/external/clang/include/clang/Sema/
H A DScopeInfo.h219 bool operator==(const WeakObjectProfileTy &Other) const {
220 return Base == Other.Base && Property == Other.Property;
264 bool operator==(const WeakUseTy &Other) const {
265 return Rep == Other.Rep;
/external/llvm/include/llvm/ADT/
H A DStringMap.h101 void swap(StringMapImpl &Other) { argument
102 std::swap(TheTable, Other.TheTable);
103 std::swap(NumBuckets, Other.NumBuckets);
104 std::swap(NumItems, Other.NumItems);
105 std::swap(NumTombstones, Other.NumTombstones);
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp42 Reference &operator|=(const Reference &Other) { argument
43 Def |= Other.Def;
44 IndirectDef |= Other.IndirectDef;
45 Use |= Other.Use;
46 IndirectUse |= Other.IndirectUse;
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h22 template<typename Other,
23 int OtherRows=Other::RowsAtCompileTime,
24 int OtherCols=Other::ColsAtCompileTime>
723 template<typename Other>
724 struct quaternionbase_assign_impl<Other,3,3>
726 typedef typename Other::Scalar Scalar;
728 template<class Derived> static inline void run(QuaternionBase<Derived>& q, const Other& mat)
764 template<typename Other>
765 struct quaternionbase_assign_impl<Other,4,1>
767 typedef typename Other
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp250 /// Return true if this chain (StartInst..KillInst) overlaps with Other.
251 bool rangeOverlapsWith(const Chain &Other) const {
253 unsigned OtherEnd = Other.KillInst ?
254 Other.KillInstIdx : Other.LastInstIdx;
256 return StartInstIdx <= OtherEnd && Other.StartInstIdx <= End;
259 /// Return true if this chain starts before Other.
260 bool startsBefore(Chain *Other) { argument
261 return StartInstIdx < Other->StartInstIdx;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp352 /// EnforceSmallerThan - 'this' must be a smaller VT than Other. For vectors
355 bool EEVT::TypeSet::EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP) { argument
365 if (Other.isCompletelyUnknown())
366 MadeChange = Other.FillWithPossibleTypes(TP);
371 MadeChange |= Other.EnforceInteger(TP);
373 MadeChange |= Other.EnforceFloatingPoint(TP);
374 if (!Other.hasFloatingPointTypes())
376 else if (!Other.hasIntegerTypes())
379 assert(!isCompletelyUnknown() && !Other.isCompletelyUnknown() &&
384 MadeChange |= Other
[all...]
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp139 bool LiveRange::overlaps(const LiveRange &Other, const CoalescerPair &CP, argument
142 if (Other.empty())
146 const_iterator I = find(Other.beginIndex());
150 const_iterator J = Other.find(I->start);
151 const_iterator JE = Other.end();
410 void LiveRange::join(LiveRange &Other,
460 // Rewrite Other values before changing the VNInfo ids.
461 // This can leave Other in an invalid state because we're not coalescing
462 // touching segments that now have identical values. That's OK since Other is
464 for (iterator I = Other
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp189 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
190 setOperationAction(ISD::BRIND, MVT::Other, Expand);
197 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
220 setOperationAction(ISD::TRAP, MVT::Other, Legal);
706 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
722 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
744 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
766 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
783 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
862 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MV
[all...]
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h103 bool compare(const DomTreeNodeBase<NodeT> *Other) const {
104 if (getNumChildren() != Other->getNumChildren())
108 for (const_iterator I = Other->begin(), E = Other->end(); I != E; ++I) {
300 bool compare(const DominatorTreeBase &Other) const {
302 const DomTreeNodeMapType &OtherDomTreeNodes = Other.DomTreeNodes;
/external/llvm/include/llvm/IR/
H A DDataLayout.h200 bool operator==(const DataLayout &Other) const;
201 bool operator!=(const DataLayout &Other) const { return !(*this == Other); }
H A DDebugInfo.h121 bool operator==(DIDescriptor Other) const { return DbgNode == Other.DbgNode; }
122 bool operator!=(DIDescriptor Other) const { return !operator==(Other); }
730 bool atSameLineAs(const DILocation &Other) const {
731 return (getLineNumber() == Other.getLineNumber() &&
732 getFilename() == Other.getFilename());
/external/llvm/lib/IR/
H A DModule.cpp345 void Module::setDataLayout(const DataLayout *Other) { argument
346 if (!Other) {
350 DL = *Other;
428 // Other module related stuff.
H A DBasicBlock.cpp245 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred); local
248 if (this == Other) max_idx = 3;
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp21 Object *Other; member in struct:__anon26522::Object
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp212 setOperationAction(ISD::SUBC, MVT::Other, Expand);
213 setOperationAction(ISD::ADDE, MVT::Other, Expand);
214 setOperationAction(ISD::ADDC, MVT::Other, Expand);
215 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
216 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
217 setOperationAction(ISD::BRIND, MVT::Other, Expand);
218 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::Other, Expand);
220 setOperationAction(ISD::BUILD_VECTOR, MVT::Other, Custom);
313 // Other Lowering Hooks
/external/eigen/Eigen/src/SparseCore/
H A DSparseUtil.h33 template<typename Other> \
34 EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \
/external/llvm/test/MC/ARM/
H A Deh-directive-section-multiple-func.s116 @ CHECK: Other: 0
125 @ CHECK: Other: 0
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp212 setOperationAction(ISD::SUBC, MVT::Other, Expand);
213 setOperationAction(ISD::ADDE, MVT::Other, Expand);
214 setOperationAction(ISD::ADDC, MVT::Other, Expand);
215 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
216 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
217 setOperationAction(ISD::BRIND, MVT::Other, Expand);
218 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::Other, Expand);
220 setOperationAction(ISD::BUILD_VECTOR, MVT::Other, Custom);
313 // Other Lowering Hooks
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp351 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, RetOps);
525 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
582 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
778 return DAG.getNode(HexagonISD::BR_JT, dl, MVT::Other, Chain, LoadTarget);
923 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
1013 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
1356 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
1358 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
1369 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
1430 setOperationAction(ISD::EH_RETURN, MVT::Other, Custo
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h146 /// value as Other but a different type.
147 TemplateArgument(const TemplateArgument &Other, QualType Type) { argument
148 Integer = Other.Integer;
345 bool structurallyEquals(const TemplateArgument &Other) const;

Completed in 821 milliseconds

1234567891011>>