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

1 23 4 5 6 7 8 91011>>

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorExecutor.h 30 typedef typename Expression::Index Index;
38 const Index size = array_prod(evaluator.dimensions());
39 for (Index i = 0; i < size; ++i) {
52 typedef typename Expression::Index Index;
60 const Index size = array_prod(evaluator.dimensions());
65 const Index UnrolledSize = (size / (4 * PacketSize)) * 4 * PacketSize;
66 for (Index i = 0; i < UnrolledSize; i += 4*PacketSize) {
67 for (Index j = 0; j < 4; j++)
    [all...]
TensorMap.h 34 typedef typename internal::traits<PlainObjectType>::Index Index;
49 static const Index NumIndices = PlainObjectType::NumIndices;
67 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index firstDimension, IndexTypes... otherDimensions) : m_data(dataPtr), m_dimensions(firstDimension, otherDimensions...) {
73 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index firstDimension) : m_data(dataPtr), m_dimensions(firstDimension) {
78 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2) : m_data(dataPtr), m_dimensions(dim1, dim2) {
82 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3) : m_data(dataPtr), m_dimensions(dim1, dim2, dim3)
126 const Index index = m_dimensions.IndexOfRowMajor(indices); local
129 const Index index = m_dimensions.IndexOfColMajor(indices); local
154 const Index index = m_dimensions.IndexOfRowMajor(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); local
157 const Index index = m_dimensions.IndexOfColMajor(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); local
166 const Index index = i1 + i0 * m_dimensions[1]; local
169 const Index index = i0 + i1 * m_dimensions[0]; local
177 const Index index = i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0); local
180 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * i2); local
188 const Index index = i3 + m_dimensions[3] * (i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0)); local
191 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * (i2 + m_dimensions[2] * i3)); local
199 const Index index = i4 + m_dimensions[4] * (i3 + m_dimensions[3] * (i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0))); local
202 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * (i2 + m_dimensions[2] * (i3 + m_dimensions[3] * i4))); local
213 const Index index = m_dimensions.IndexOfRowMajor(indices); local
216 const Index index = m_dimensions.IndexOfColMajor(indices); local
242 const Index index = m_dimensions.IndexOfRowMajor(array<Index, NumDims>{{firstIndex, secondIndex, otherIndices...}}); local
245 const Index index = m_dimensions.IndexOfColMajor(array<Index, NumDims>{{firstIndex, secondIndex, otherIndices...}}); local
254 const Index index = i1 + i0 * m_dimensions[1]; local
257 const Index index = i0 + i1 * m_dimensions[0]; local
265 const Index index = i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0); local
268 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * i2); local
276 const Index index = i3 + m_dimensions[3] * (i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0)); local
279 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * (i2 + m_dimensions[2] * i3)); local
287 const Index index = i4 + m_dimensions[4] * (i3 + m_dimensions[3] * (i2 + m_dimensions[2] * (i1 + m_dimensions[1] * i0))); local
290 const Index index = i0 + m_dimensions[0] * (i1 + m_dimensions[1] * (i2 + m_dimensions[2] * (i3 + m_dimensions[3] * i4))); local
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/QemuFlashFvbServicesRuntimeDxe/
FvbInfo.c 108 UINTN Index;
111 for (Index = 0;
112 Index < sizeof (mPlatformFvbMediaInfo) / sizeof (EFI_FVB_MEDIA_INFO);
113 Index += 1) {
115 mPlatformFvbMediaInfo[Index].FvbInfo.Checksum = 0;
117 (UINT16*) &mPlatformFvbMediaInfo[Index].FvbInfo,
118 mPlatformFvbMediaInfo[Index].FvbInfo.HeaderLength
120 mPlatformFvbMediaInfo[Index].FvbInfo.Checksum = Checksum;
125 for (Index = 0;
126 Index < sizeof (mPlatformFvbMediaInfo) / sizeof (EFI_FVB_MEDIA_INFO);
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
OhciDebug.c 39 UINT32 Index;
49 for (Index = 0; Index < sizeof (ED_DESCRIPTOR)/4; Index ++) {
50 DEBUG ((EFI_D_INFO, "%8x ", *((UINT32*)(Ed) + Index) ));
66 for (Index = 0; Index < sizeof (TD_DESCRIPTOR)/4; Index ++) {
67 DEBUG ((EFI_D_INFO, "%8x ", *((UINT32*)(Td) + Index) ));
70 for (Index = 0; Index < Td->ActualSendLength; Index ++) {
    [all...]
  /external/eigen/blas/
GeneralRank1Update.h 16 template<typename Scalar, typename Index, int StorageOrder, bool ConjLhs, bool ConjRhs>
19 template<typename Scalar, typename Index, bool ConjLhs, bool ConjRhs>
20 struct general_rank1_update<Scalar,Index,ColMajor,ConjLhs,ConjRhs>
22 static void run(Index rows, Index cols, Scalar* mat, Index stride, const Scalar* u, const Scalar* v, Scalar alpha)
28 for (Index i=0; i<cols; ++i)
33 template<typename Scalar, typename Index, bool ConjLhs, bool ConjRhs>
34 struct general_rank1_update<Scalar,Index,RowMajor,ConjLhs,ConjRhs>
36 static void run(Index rows, Index cols, Scalar* mat, Index stride, const Scalar* u, const Scalar* v, Scalar alpha
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 77 Index m_innerSize;
82 inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
83 inline Index cols() const { return IsRowMajor ? m_innerSize : outerSize(); }
84 inline Index innerSize() const { return m_innerSize; }
85 inline Index outerSize() const { return convert_index(m_data.size()); }
86 inline Index innerNonZeros(Index j) const { return m_data[j].size(); }
94 inline Scalar coeff(Index row, Index col) const
96 const Index outer = IsRowMajor ? row : col
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
WriteMsr64.c 28 IN UINT32 Index,
32 __writemsr (Index, Value);
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/ThunkPpiList/
ThunkPpiList.c 32 UINTN Index;
38 Index = (gThunkPpiListSize/sizeof (EFI_PEI_PPI_DESCRIPTOR)) - 1;
39 gThunkPpiList[Index].Flags |= EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST;
53 UINTN Index;
64 Index = (gThunkPpiListSize/sizeof (EFI_PEI_PPI_DESCRIPTOR));
65 gThunkPpiList[Index].Flags = Flags;
66 gThunkPpiList[Index].Guid = Guid;
67 gThunkPpiList[Index].Ppi = Ppi;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
WriteMsr64.c 26 @param Index The register index of MSR.
35 IN UINT32 Index,
39 __writemsr (Index, Value);
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/
Cmos.h 21 Reads the 8-bits of CMOS data at the location specified by Index.
24 @param Index The CMOS location to read.
32 IN UINTN Index
38 Writes 8-bits of CMOS data to the location specified by Index
41 @param Index The CMOS location to write.
50 IN UINTN Index,
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/
SmbiosMiscEntryPoint.c 48 UINTN Index;
70 for (Index = 0; Index < mSmbiosMiscDataTableEntries; ++Index) {
74 if (mSmbiosMiscDataTable[Index].Function != NULL) {
75 EfiStatus = (*mSmbiosMiscDataTable[Index].Function)(
76 mSmbiosMiscDataTable[Index].RecordData,
81 DEBUG((EFI_D_ERROR, "Misc smbios store error. Index=%d, ReturnStatus=%r\n", Index, EfiStatus));
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugMp.c 69 @param[in] CurrentProcessorIndex Current processor index value.
97 Get the current processor's index.
99 @return Processor index value.
107 UINT32 Index;
114 for (Index = 0; Index < mDebugCpuData.CpuCount; Index ++) {
115 if (mDebugCpuData.ApicID[Index] == LocalApicID) {
120 if (Index == mDebugCpuData.CpuCount) {
121 mDebugCpuData.ApicID[Index] = LocalApicID;
    [all...]
  /external/swiftshader/third_party/subzero/crosstest/
insertelement.h 19 // a non-constant index into something involving alloca. This can cause a stack
23 setElement(VectorType &Value, size_t Index, ElementType Element) {
24 Value[Index] = Element;
  /external/eigen/Eigen/src/Core/
NestByValue.h 44 EIGEN_DEVICE_FUNC inline Index rows() const { return m_expression.rows(); }
45 EIGEN_DEVICE_FUNC inline Index cols() const { return m_expression.cols(); }
46 EIGEN_DEVICE_FUNC inline Index outerStride() const { return m_expression.outerStride(); }
47 EIGEN_DEVICE_FUNC inline Index innerStride() const { return m_expression.innerStride(); }
49 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const
54 EIGEN_DEVICE_FUNC inline Scalar& coeffRef(Index row, Index col)
59 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index index) cons
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 46 void setRAIndex(int Index) { ReturnAddrIndex = Index; }
49 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector_BLAS.h 49 template<typename Index, typename LhsScalar, int StorageOrder, bool ConjugateLhs, typename RhsScalar, bool ConjugateRhs>
53 template<typename Index, bool ConjugateLhs, bool ConjugateRhs> \
54 struct general_matrix_vector_product<Index,Scalar,const_blas_data_mapper<Scalar,Index,ColMajor>,ColMajor,ConjugateLhs,Scalar,const_blas_data_mapper<Scalar,Index,RowMajor>,ConjugateRhs,Specialized> { \
56 Index rows, Index cols, \
57 const const_blas_data_mapper<Scalar,Index,ColMajor> &lhs, \
58 const const_blas_data_mapper<Scalar,Index,RowMajor> &rhs, \
59 Scalar* res, Index resIncr, Scalar alpha)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseRngLib/
BaseRng.c 77 UINT32 Index;
84 for (Index = 0; Index < RDRAND_RETRY_LIMIT; Index++) {
110 UINT32 Index;
117 for (Index = 0; Index < RDRAND_RETRY_LIMIT; Index++) {
143 UINT32 Index;
150 for (Index = 0; Index < RDRAND_RETRY_LIMIT; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/RecoveryOemHookLib/
RecoveryOemHookLib.c 57 volatile UINTN Index;
60 for (Index = 0; Index == 0;);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Wpce791/
LpcSio.c 40 IN UINT8 Index,
84 UINT8 Index;
86 for (Index = 0; Index < sizeof(mSioTable)/sizeof(EFI_SIO_TABLE); Index++) {
87 WriteRegisterAndSaveToScript (mSioTable[Index].Register, mSioTable[Index].Value);
108 IN UINT8 Index,
112 LpcIoWrite8(CONFIG_PORT, Index);
120 IN UINT8 Index,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXParamManager.cpp 33 unsigned Index = AllParams.size();
34 AllParams[Index] = Param;
35 ArgumentParams.push_back(Index);
37 return Index;
50 unsigned Index = AllParams.size();
51 AllParams[Index] = Param;
52 ReturnParams.push_back(Index);
54 return Index;
67 unsigned Index = AllParams.size();
68 AllParams[Index] = Param
    [all...]
  /external/llvm/lib/Option/
Option.cpp 105 unsigned &Index,
111 Spelling = StringRef(Args.getArgString(Index), ArgSize);
119 if (ArgSize != strlen(Args.getArgString(Index)))
122 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
140 const char *Value = Args.getArgString(Index) + ArgSize;
141 return new Arg(UnaliasedOption, Spelling, Index++, Value);
145 const char *Str = Args.getArgString(Index) + ArgSize;
146 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
174 if (ArgSize != strlen(Args.getArgString(Index)))
177 Index += 2
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/RandomNumberGenerator/RngDxe/
RdRand.c 84 UINT32 Index;
90 for (Index = 0; Index < 16; Index++) {
91 Key[Index] = (UINT8) Index;
92 Ffv[Index] = 0;
99 for (Index = 0; Index < 32; Index++) {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Library/HiKeyLib/
HiKeyMem.c 82 UINTN Index = 0, Count, ReservedTop;
114 if (Index >= Count)
117 (HiKeyReservedMemoryBuffer[Index].Offset >= NextHob.ResourceDescriptor->PhysicalStart) &&
118 ((HiKeyReservedMemoryBuffer[Index].Offset + HiKeyReservedMemoryBuffer[Index].Size) <=
124 ReservedTop = HiKeyReservedMemoryBuffer[Index].Offset + HiKeyReservedMemoryBuffer[Index].Size;
129 HiKeyReservedMemoryBuffer[Index].Offset,
130 HiKeyReservedMemoryBuffer[Index].Size);
132 NextHob.ResourceDescriptor->ResourceLength = HiKeyReservedMemoryBuffer[Index].Offset - NextHob.ResourceDescriptor->PhysicalStart
    [all...]
  /system/update_engine/payload_generator/
cycle_breaker.h 52 void Unblock(Vertex::Index u);
53 bool Circuit(Vertex::Index vertex, Vertex::Index depth);
57 Vertex::Index current_vertex_; // "s" in the paper
58 std::vector<Vertex::Index> stack_; // the stack variable in the paper
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LegacyBootManagerLib/
LegacyBm.c 89 @param Index Index.
97 IN UINTN Index,
108 switch (Index) {
195 if (Index >= 5 && Index <= 16 && (CurBBSEntry->DeviceType == BBS_HARDDISK || CurBBSEntry->DeviceType == BBS_CDROM)) {
197 UnicodeSPrint (BootString, BufSize, Fmt, Type, Index - 5);
204 Get the Bbs index for the input boot option.
211 @retval The index for the input boot option.
221 UINT16 Index;
    [all...]

Completed in 1522 milliseconds

1 23 4 5 6 7 8 91011>>