HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 126 - 150 of 330) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eigen/Eigen/src/SparseCore/
SparseUtil.h 23 EIGEN_STRONG_INLINE Derived& operator Op(const Eigen::SparseMatrixBase<OtherDerived>& other) \
25 return Base::operator Op(other.derived()); \
27 EIGEN_STRONG_INLINE Derived& operator Op(const Derived& other) \
29 return Base::operator Op(other); \
33 template<typename Other> \
34 EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \
  /external/llvm/lib/IR/
BasicBlock.cpp 71 // nodes. There are no other possible uses at this point.
245 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
248 if (this == Other) max_idx = 3;
  /external/llvm/test/MC/ARM/
eh-directive-section-multiple-func.s 116 @ CHECK: Other: 0
125 @ CHECK: Other: 0
thumb_set.s 116 @ CHECK-NEXT: Other: 0
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 212 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
  /hardware/libhardware/modules/audio/
Android.mk 17 # The default audio HAL module, which is a stub, that is loaded if no other
22 # required type is 'primary'. Other possibilites are 'a2dp', 'usb', etc.
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 351 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, RetOps);
523 // nodes are independent of each other.
525 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
582 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
633 // TODO: Put this function along with the other isS* functions in
778 return DAG.getNode(HexagonISD::BR_JT, dl, MVT::Other, Chain, LoadTarget);
    [all...]
HexagonISelDAGToDAG.cpp 417 MVT::Other,
454 MVT::Other, Base, TargetConst,
475 MVT::Other, Base, TargetConst0,
522 MVT::i32, MVT::Other, Base,
527 MVT::i64, MVT::Other,
549 MVT::Other,
554 MVT::i64, MVT::Other,
633 MVT::i32, MVT::Other, Base,
653 MVT::Other, Base, TargetConst0,
720 MVT::Other, Ops)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 151 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
152 /// we unlink the next pointer and return it. Otherwise we unlink Other from
154 Matcher *unlinkNode(Matcher *Other);
156 /// canMoveBefore - Return true if this matcher is the same as Other, or if
157 /// we can move this matcher past all of the nodes in-between Other and this
158 /// node. Other must be equal to or before this.
159 bool canMoveBefore(const Matcher *Other) const;
163 bool canMoveBeforeNode(const Matcher *Other) const;
167 bool isContradictory(const Matcher *Other) const {
171 // the CheckOpcode method, not the other way around
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 63 /// of the other forms yet, either because it's dependent or because we're
146 /// value as Other but a different type.
147 TemplateArgument(const TemplateArgument &Other, QualType Type) {
148 Integer = Other.Integer;
345 bool structurallyEquals(const TemplateArgument &Other) const;
  /external/clang/lib/Basic/
Module.cpp 96 bool Module::isSubModuleOf(const Module *Other) const {
99 if (This == Other)
429 OS << Conflicts[I].Other->getFullModuleName();
  /external/llvm/lib/Support/
StringRef.cpp 104 unsigned StringRef::edit_distance(llvm::StringRef Other,
109 llvm::ArrayRef<char>(Other.data(), Other.size()),
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 724 EVT FromVT(MVT::Other);
745 assert(FromVT != MVT::Other);
    [all...]
  /external/clang/include/clang/Driver/
Multilib.h 89 bool operator==(const Multilib &Other) const;
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 430 /// ends with an unconditional branch to some other block.
508 /// If the instruction is part of a bundle, the other instructions in the
514 /// If the instruction is part of a bundle, the other instructions in the
553 /// If the instruction is part of a bundle, the other instructions in the
561 /// Take an instruction from MBB 'Other' at the position From, and insert it
565 void splice(iterator Where, MachineBasicBlock *Other, iterator From) {
568 splice(Where, Other, From, std::next(From));
571 /// Take a block of instructions from MBB 'Other' in the range [From, To),
576 void splice(iterator Where, MachineBasicBlock *Other,
578 Insts.splice(Where.getInstrIterator(), Other->Insts
    [all...]
SelectionDAGNodes.h 542 /// indicated value. This method ignores uses of other values defined by this
547 /// value. This method ignores uses of other values defined by this operation.
838 /// be used by the DAGBuilder, the other to be used by others.
    [all...]
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 143 InputArg() : VT(MVT::Other), Used(false) {}
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 91 bool operator<(const BoundNodesMap &Other) const {
92 return NodeMap < Other.NodeMap;
152 bool operator<(const BoundNodesTreeBuilder &Other) const {
153 return Bindings < Other.Bindings;
206 /// to the AST hierarchy. In other words, Matcher<T> is contravariant
217 /// \brief Implicitly converts \c Other to a Matcher<T>.
221 Matcher(const Matcher<From> &Other,
224 : Implementation(new ImplicitCastMatcher<From>(Other)) {}
230 Matcher(const Matcher<TypeT> &Other,
234 : Implementation(new TypeToQualType<TypeT>(Other)) {}
    [all...]
  /external/chromium_org/v8/test/webkit/
gmail-re-re.js 11 // documentation and/or other materials provided with the distribution.
30 // Other RegExs from Gmail source
  /external/eigen/Eigen/src/Core/
Transpositions.h 61 /** Copies the \a other transpositions into \c *this */
63 Derived& operator=(const TranspositionsBase<OtherDerived>& other)
65 indices() = other.indices();
73 Derived& operator=(const TranspositionsBase& other)
75 indices() = other.indices();
169 inline Transpositions(const TranspositionsBase<OtherDerived>& other)
170 : m_indices(other.indices()) {}
174 * from hiding the other templated constructor */
175 inline Transpositions(const Transpositions& other) : m_indices(other.indices()) {
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 11 // to an arbitrary other type. It provides the DenseMap interface but updates
69 /// and onDelete) and not inside other ValueMap methods. NULL means that no
339 ValueMapConstIterator(ValueMapIterator<DenseMapT, KeyT> Other)
340 : I(Other.base()) {}
  /external/llvm/lib/MC/
MCWin64EH.cpp 129 const MCSymbol *Other) {
132 const MCSymbolRefExpr *OtherRef = MCSymbolRefExpr::Create(Other, Context);
WinCOFFObjectWriter.cpp 67 COFFSymbol *Other;
195 , Other(nullptr)
427 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymRef->getSymbol());
437 coff_symbol->Other = WeakDefault;
779 // FIXME: Can anyone explain what this does other than adjust for the size
860 if (Symbol->Other) {
865 Symbol->Aux[0].Aux.WeakExternal.TagIndex = Symbol->Other->Index;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 83 Value *Other = S->getOperand(2);
84 if (!CI->isOne()) std::swap(ReplaceWith, Other);
107 // the incoming value with the other value of the select. This often allows
239 // If this was the first edge to be visited, record that all other edges
  /external/clang/lib/Analysis/
ThreadSafety.cpp 144 bool operator==(const SExprNode& Other) const {
146 return (Op == Other.Op &&
147 Data == Other.Data);
150 bool operator!=(const SExprNode& Other) const {
151 return !(*this == Other);
154 bool matches(const SExprNode& Other) const {
155 return (*this == Other) ||
157 (Other.Op == EOP_Wildcard);
476 // Ignore other string literals for now.
582 bool operator==(const SExpr &other) const
    [all...]

Completed in 1249 milliseconds

1 2 3 4 56 7 8 91011>>