HomeSort by relevance Sort by last modified time
    Searched defs:Flags (Results 151 - 175 of 472) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/eigen/Eigen/src/Core/
CwiseBinaryOp.h 70 LhsFlags = _LhsNested::Flags,
71 RhsFlags = _RhsNested::Flags,
73 StorageOrdersAgree = (int(Lhs::Flags)&RowMajorBit)==(int(Rhs::Flags)&RowMajorBit),
83 Flags = (Flags0 & ~RowMajorBit) | (LhsFlags & RowMajorBit),
CwiseNullaryOp.h 38 Flags = (traits<PlainObjectType>::Flags
DenseBase.h 162 Flags = internal::traits<Derived>::Flags,
163 /**< This stores expression \ref flags flags which may or may not be inherited by new expressions
164 * constructed from this one. See the \ref flags "list of flags".
167 IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression has row-major storage order. */
503 /* Just checks for self-consistency of the flags.
DiagonalMatrix.h 33 Flags = 0
130 Flags = LvalueBit
242 Flags = traits<DiagonalVectorType>::Flags & LvalueBit
PermutationMatrix.h 62 Flags = Traits::Flags,
476 Flags = 0,
627 Flags = Traits::Flags,
ProductBase.h 37 Flags = (MaxRowsAtCompileTime==1 ? RowMajorBit : 0)
Transpose.h 45 Flags0 = MatrixTypeNestedPlain::Flags & ~(LvalueBit | NestByRefBit),
47 Flags = Flags1 ^ RowMajorBit,
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 52 LhsFlags = _LhsNested::Flags,
53 RhsFlags = _RhsNested::Flags,
85 Flags = ((unsigned int)(LhsFlags | RhsFlags) & HereditaryBits & ~RowMajorBit)
96 /* CanVectorizeInner deserves special explanation. It does not affect the product flags. It is not used outside
99 * the Flags, it is safe to make this value depend on ActualPacketAccessBit, that doesn't affect the ABI.
186 internal::product_packet_impl<Flags&RowMajorBit ? RowMajor : ColMajor,
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 48 TmpFlags = _MatrixTypeNested::Flags & HereditaryBits,
49 Flags = ColsAtCompileTime==1 ? (TmpFlags & ~RowMajorBit)
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 72 Flags = 0
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 64 Flags = Tr ? RowMajorBit : 0,
161 int LhsStorageOrder = ((SparseLhsType::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor,
162 bool ColPerCol = ((DenseRhsType::Flags&RowMajorBit)==0) || DenseRhsType::ColsAtCompileTime==1>
SparseDiagonalProduct.h 46 SparseFlags = is_diagonal<_Lhs>::ret ? int(_Rhs::Flags) : int(_Lhs::Flags),
47 Flags = (SparseFlags&RowMajorBit),
71 : (_LhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor,
73 : (_RhsNested::Flags&RowMajorBit) ? internal::SDP_IsSparseRowMajor : internal::SDP_IsSparseColMajor
SparseMatrixBase.h 81 Flags = internal::traits<Derived>::Flags,
82 /**< This stores expression \ref flags flags which may or may not be inherited by new expressions
83 * constructed from this one. See the \ref flags "list of flags".
91 IsRowMajor = Flags&RowMajorBit ? 1 : 0,
97 _HasDirectAccess = (int(Flags)&DirectAccessBit) ? 1 : 0 // workaround sunCC
108 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, Index> PlainObject;
166 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols();
    [all...]
SparseProduct.h 21 LhsRowMajor = internal::traits<Lhs>::Flags & RowMajorBit,
22 RhsRowMajor = internal::traits<Rhs>::Flags & RowMajorBit,
53 LhsFlags = _LhsNested::Flags,
54 RhsFlags = _RhsNested::Flags,
67 Flags = (int(LhsFlags | RhsFlags) & HereditaryBits & RemovedBits)
  /external/eigen/test/
sparse_basic.cpp 22 enum { Flags = SparseMatrixType::Flags };
46 if(internal::is_same<SparseMatrixType,SparseMatrix<Scalar,Flags> >::value)
sparse_product.cpp 46 enum { Flags = SparseMatrixType::Flags };
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 181 LhsFlags = Lhs::Flags,
182 RhsFlags = Rhs::Flags,
192 Flags = ((LhsFlags | RhsFlags) & HereditaryBits & RemovedBits)
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 33 LhsFlags = _LhsNested::Flags,
34 RhsFlags = _RhsNested::Flags,
48 Flags = (int(LhsFlags | RhsFlags) & HereditaryBits & RemovedBits)
128 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit,
129 LhsIsSelfAdjoint = (_Lhs::Flags & SelfAdjointBit) == SelfAdjointBit,
131 && (((_Lhs::Flags & (UpperTriangularBit | LowerTriangularBit)) == 0)
132 || ((_Lhs::Flags & UpperTriangularBit) && !LhsIsRowMajor)
133 || ((_Lhs::Flags & LowerTriangularBit) && LhsIsRowMajor)),
191 LhsIsRowMajor = (_Lhs::Flags & RowMajorBit) == RowMajorBit,
192 LhsIsSelfAdjoint = (_Lhs::Flags & SelfAdjointBit) == SelfAdjointBit
    [all...]
  /external/lldb/include/lldb/Expression/
ClangExpressionVariable.h 251 enum Flags
267 FlagType m_flags; // takes elements of Flags
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 55 /// Flags to specify different kinds of comments to output in
56 /// assembly code. These flags carry semantic information not
80 uint8_t Flags; // Various bits of additional
123 /// getAsmPrinterFlags - Return the asm printer flags bitvector.
143 /// clearAsmPrinterFlag - clear specific AsmPrinter flags
149 /// getFlags - Return the MI flags bitvector.
151 return Flags;
156 return Flags & Flag;
161 Flags |= (uint8_t)Flag;
164 void setFlags(unsigned flags) {
    [all...]
MachineMemOperand.h 93 unsigned Flags;
98 /// Flags values. These may be or'd together.
113 // This is the number of bits we need to represent flags.
118 /// specified PtrInfo, flags, size, and base alignment.
119 MachineMemOperand(MachinePointerInfo PtrInfo, unsigned flags, uint64_t s,
140 /// getFlags - Return the raw flags of the source value, \see MemOperandFlags.
141 unsigned int getFlags() const { return Flags & ((1 << MOMaxBits) - 1); }
143 /// Bitwise OR the current flags with the given flags.
144 void setFlags(unsigned f) { Flags |= (f & ((1 << MOMaxBits) - 1));
    [all...]
  /external/llvm/include/llvm/Object/
ELFYAML.h 57 ELF_EF Flags;
78 ELF_SHF Flags;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 169 char Flags; // Specific flags to output
171 HashDataContents(const DIE *D, char Flags) : Die(D), Flags(Flags) {}
176 O << " Flags: " << Flags << "\n";
211 O << " Flags: " << C->Flags << "\n";
249 char Flags = 0)
    [all...]
  /external/llvm/lib/LTO/
LTOModule.cpp 534 uint32_t Flags = Sym.getFlags();
535 if (Flags & object::BasicSymbolRef::SF_FormatSpecific)
538 bool IsUndefined = Flags & object::BasicSymbolRef::SF_Undefined;
550 else if (Flags & object::BasicSymbolRef::SF_Global)
  /external/llvm/lib/Option/
OptTable.cpp 403 unsigned Flags = getInfo(Id).Flags;
404 if (FlagsToInclude && !(Flags & FlagsToInclude))
406 if (Flags & FlagsToExclude)

Completed in 732 milliseconds

1 2 3 4 5 67 8 91011>>