HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 551 - 575 of 4075) sorted by null

<<21222324252627282930>>

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFFT.h 69 typedef typename XprTraits::Index Index;
98 typedef typename Eigen::internal::traits<TensorFFTOp>::Index Index;
120 typedef typename XprType::Index Index;
122 typedef DSizes<Index, NumDims> Dimensions;
188 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE CoeffReturnType coeff(Index index) const {
189 return m_data[index];
    [all...]
TensorMorphing.h 29 typedef typename XprTraits::Index Index;
60 typedef typename Eigen::internal::traits<TensorReshapingOp>::Index Index;
120 typedef typename XprType::Index Index;
134 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
136 return m_impl.coeff(index);
140 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketReturnType packet(Index index) cons
    [all...]
TensorInflation.h 29 typedef typename XprTraits::Index Index;
59 typedef typename Eigen::internal::traits<TensorInflationOp>::Index Index;
81 typedef typename XprType::Index Index;
83 typedef DSizes<Index, NumDims> Dimensions;
109 m_fastStrides[i] = internal::TensorIntDivisor<Index>(m_strides[i]);
140 // Computes the input index given the output index. Returns true if the outpu
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
DriverBinding.c 46 UINT32 Index;
73 for (Index = 0; ASIX_DONGLES[Index].VendorId != 0; Index++) {
74 if (ASIX_DONGLES[Index].VendorId == Device.IdVendor &&
75 ASIX_DONGLES[Index].ProductId == Device.IdProduct) {
81 if (ASIX_DONGLES[Index].VendorId == 0)
128 UINT32 Index;
197 for (Index = 0; ASIX_DONGLES[Index].VendorId != 0; Index++)
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 90 static inline const EssentialVectorType essentialVector(const HouseholderSequenceType& h, Index k)
92 Index start = k+1+h.m_shift;
102 static inline const EssentialVectorType essentialVector(const HouseholderSequenceType& h, Index k)
104 Index start = k+1+h.m_shift;
180 Index rows() const { return Side==OnTheLeft ? m_vectors.rows() : m_vectors.cols(); }
186 Index cols() const { return rows(); }
189 * \param[in] k Index of Householder reflection
197 * The index \f$ i \f$ equals \p k + shift(), corresponding to the k-th column of the matrix \p v
202 const EssentialVectorType essentialVector(Index k) const
245 Index vecs = m_length
    [all...]
  /external/llvm/include/llvm/IR/
Attributes.h 198 /// its parameters. You access the attributes for each of them via an index into
199 /// the AttributeSet object. The function attributes are at index
200 /// `AttributeSet::FunctionIndex', the return value is at index
202 /// index `1'.
219 /// \brief The attributes for the specified index are returned.
220 AttributeSetNode *getAttributes(unsigned Index) const;
244 static AttributeSet get(LLVMContext &C, unsigned Index,
246 static AttributeSet get(LLVMContext &C, unsigned Index,
248 static AttributeSet get(LLVMContext &C, unsigned Index, const AttrBuilder &B);
250 /// \brief Add an attribute to the attribute set at the given index. Becaus
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
String.c 71 UINTN Index;
76 Index = 0;
77 while (Index < Length && Index < SrcLen) {
78 Dst[Index] = Src[Index];
79 Index++;
81 for (Index = SrcLen; Index < Length; Index++) {
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
StaticSymmetry.h 121 template<typename Index, std::size_t N, int... ii, int... jj>
122 constexpr static inline std::array<Index, N> tensor_static_symgroup_index_permute(std::array<Index, N> idx, internal::numeric_list<int, ii...>, internal::numeric_list<int, jj...>)
127 template<typename Index, int... ii>
128 static inline std::vector<Index> tensor_static_symgroup_index_permute(std::vector<Index> idx, internal::numeric_list<int, ii...>)
130 std::vector<Index> result{{ idx[ii]... }};
142 template<typename Op, typename RV, std::size_t SGNumIndices, typename Index, std::size_t NumIndices, typename... Args>
143 static inline RV run(const std::array<Index, NumIndices>& idx, RV initial, Args&&... args)
151 template<typename Op, typename RV, std::size_t SGNumIndices, typename Index, typename... Args
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 97 EIGEN_STRONG_INLINE Index rows() const {
101 EIGEN_STRONG_INLINE Index cols() const {
138 for (Index col = 0; col < rhs.cols(); col++) {
139 for (Index row = 0; row < lhs.rows(); row++) {
144 for (Index row = 0; row < lhs.rows(); row++) {
146 const Index stop = lIt.col() + lIt.size();
147 for (Index col = 0; col < rhs.cols(); col++) {
149 Index k = lIt.col();
164 for (Index lhscol = 0; lhscol < lhs.cols(); lhscol++) {
166 const Index stop = uIt.size() + uIt.row()
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Pei/
Pcd.c 261 UINTN Index;
265 for (Index = 0; Index < SkuIdTable[0]; Index++) {
266 if (SkuId == SkuIdTable[Index + 1]) {
431 // as the array index.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThru.c 150 UINT16 Index;
203 for (Index = 0; Index < UFS_MAX_LUNS; Index++) {
204 if ((Private->Luns.BitMask & (BIT0 << Index)) == 0) {
208 if (Private->Luns.Lun[Index] == UfsLun) {
213 if (Index == UFS_MAX_LUNS) {
258 UINT16 Index;
278 for (Index = 0; Index < UFS_MAX_LUNS; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/
BootOption.c 182 @param MenuNumber The index of Menu Entry.
194 UINTN Index;
200 for (Index = 0; Index < MenuNumber; Index++) {
249 UINTN Index;
299 for (Index = 0; Index < BootOrderListSize / sizeof (UINT16); Index++) {
303 if (((BootOption[Index].Attributes & LOAD_OPTION_HIDDEN) != 0) || ((BootOption[Index].Attributes & LOAD_OPTION_ACTIVE) == (…)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
CustomizedDisplayLibInternal.c 142 UINTN Index;
166 for (Index = 0; Index + 2 < (gScreenDimensions.RightColumn - gScreenDimensions.LeftColumn); Index++) {
167 Buffer[Index] = Character;
395 UINTN Index;
400 Index = 0;
405 Index ++;
412 gFooterHeight = FOOTER_HEIGHT + (Index / 3);
499 UINTN Index;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenDepex/
GenDepex.c 117 int Index;
127 for (Index = 0; Str[Index] != NULL; Index++) {
128 fprintf (stdout, "%s\n", Str[Index]);
152 int Index;
165 for (Index = 0; Str[Index] != NULL; Index++) {
166 fprintf (stdout, "%s\n", Str[Index]);
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/
E100b.c 516 volatile INT16 Index;
526 for (Index = 0; Index < sizeof (basic_config_cmd); Index++) {
527 data_ptr[Index] = basic_config_cmd[Index];
864 UINT16 Index;
902 for (Index = 0; (Index < mc_count && Index < MAX_MCAST_ADDRESS_CNT); Index++) {
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteCholesky.h 90 Index rows() const { return m_L.rows(); }
93 Index cols() const { return m_L.cols(); }
187 inline void updateList(Ref<const VectorIx> colPtr, Ref<VectorIx> rowIdx, Ref<VectorSx> vals, const Index& col, const Index& jk, VectorIx& firstElt, VectorList& listCol);
216 Index n = m_L.cols();
217 Index nnz = m_L.nonZeros();
233 for (Index j = 0; j < n; j++)
234 for (Index k = colPtr[j]; k < colPtr[j+1]; k++)
243 for (Index j = 0; j < n; ++j)
253 for (Index j = 0; j < n; j++
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Attributes.h 198 /// its parameters. You access the attributes for each of them via an index into
199 /// the AttributeSet object. The function attributes are at index
200 /// `AttributeSet::FunctionIndex', the return value is at index
202 /// index `1'.
220 /// \brief The attributes for the specified index are returned.
221 AttributeSetNode *getAttributes(unsigned Index) const;
245 static AttributeSet get(LLVMContext &C, unsigned Index,
247 static AttributeSet get(LLVMContext &C, unsigned Index,
249 static AttributeSet get(LLVMContext &C, unsigned Index, const AttrBuilder &B);
251 /// \brief Add an attribute to the attribute set at the given index. Becaus
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
PiSmmIpl.c 329 UINTN Index;
339 for (Index = 0; Index < gSmmCorePrivate->SmramRangeCount; Index++) {
340 RangeCpuStart = gSmmCorePrivate->SmramRanges[Index].CpuStart;
341 RangePhysicalSize = gSmmCorePrivate->SmramRanges[Index].PhysicalSize;
688 UINTN Index;
724 for (Index = 0; mSmmIplEvents[Index].NotifyFunction != NULL; Index++) {
    [all...]
  /external/eigen/Eigen/src/Core/
AssignEvaluator.h 192 template<typename Kernel, int Index, int Stop>
200 outer = Index / DstXprType::InnerSizeAtCompileTime,
201 inner = Index % DstXprType::InnerSizeAtCompileTime
207 copy_using_evaluator_DefaultTraversal_CompleteUnrolling<Kernel, Index+1, Stop>::run(kernel);
220 EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE void run(Kernel &kernel, Index outer)
230 EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE void run(Kernel&, Index) { }
237 template<typename Kernel, int Index, int Stop>
242 kernel.assignCoeff(Index);
243 copy_using_evaluator_LinearTraversal_CompleteUnrolling<Kernel, Index+1, Stop>::run(kernel);
257 template<typename Kernel, int Index, int Stop
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL34xDmc/
PL341Dmc.c 37 UINTN Index;
110 for (Index = 0; Index < 10; Index++) {
156 for (Index = 0; Index < 10; Index++) {
196 for (Index = 0; Index < 10; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
CompressSection.py 50 # @param SecNum Index of section
63 Index = 0
65 Index = Index + 1
66 SecIndex = '%s.%d' %(SecNum, Index)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Nt32/Ppi/NtAutoScan/
NtAutoScan.h 36 IN UINTN Index,
44 This service is called from Index == 0 until it returns EFI_UNSUPPORTED.
52 Index - Which memory region to use
58 EFI_UNSUPPORTED - If Index is not supported
  /device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/
EntryPointGlue.c 64 UINTN Index;
75 for (Char = CmdLine, Arg = 0, Index = 0; *Char != '\0' && *Char != CMD_SEPARATOR; Char++, Index++) {
100 if ((Arg >= MAX_ARGS) || (Index > CmdLineSize)) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyCmos.c 22 Read CMOS register through index/data port.
24 @param[in] Index The index of the CMOS register to read.
26 @return The data value from the CMOS register specified by Index.
31 IN UINT8 Index
34 IoWrite8 (PORT_70, Index);
39 Write CMOS register through index/data port.
41 @param[in] Index The index of the CMOS register to write.
44 @return The value written to the CMOS register specified by Index.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/X64/
DxeLoadFunc.c 41 UINT32 Index;
57 Index = 1;
60 Index ++;
65 sizeof (EFI_VECTOR_HANDOFF_INFO) * Index

Completed in 2005 milliseconds

<<21222324252627282930>>