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

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/
ArmGicSecLib.c 32 UINTN Index;
39 for (Index = 0; Index < GicSecureInterruptMaskSize; Index++) {
40 InterruptStatus = MmioRead32 (GicDistributorBase + ARM_GIC_ICDISR + (Index * 4));
41 MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISR + (Index * 4), InterruptStatus & (~GicSecureInterruptMask[Index]));
  /device/linaro/bootloader/edk2/SecurityPkg/Library/HashLibBaseCryptoRouter/
HashLibBaseCryptoRouterDxe.c 46 UINTN Index;
56 for (Index = 0; Index < mHashInterfaceCount; Index++) {
57 HashMask = Tpm2GetHashMaskFromAlgo (&mHashInterface[Index].HashGuid);
59 mHashInterface[Index].HashInit (&HashCtx[Index]);
86 UINTN Index;
95 for (Index = 0; Index < mHashInterfaceCount; Index++) {
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 44 template <typename Scalar, typename Index,
51 template <typename Scalar, typename Index,
55 struct product_triangular_matrix_matrix<Scalar,Index,Mode,LhsIsTriangular,
60 Index rows, Index cols, Index depth,
61 const Scalar* lhs, Index lhsStride,
62 const Scalar* rhs, Index rhsStride,
63 Scalar* res, Index resStride,
66 product_triangular_matrix_matrix<Scalar, Index,
    [all...]
TriangularSolverMatrix.h 18 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder>
19 struct triangular_solve_matrix<Scalar,Index,Side,Mode,Conjugate,TriStorageOrder,RowMajor>
22 Index size, Index cols,
23 const Scalar* tri, Index triStride,
24 Scalar* _other, Index otherStride,
28 Scalar, Index, Side==OnTheLeft?OnTheRight:OnTheLeft,
38 template <typename Scalar, typename Index, int Mode, bool Conjugate, int TriStorageOrder>
39 struct triangular_solve_matrix<Scalar,Index,OnTheLeft,Mode,Conjugate,TriStorageOrder,ColMajor>
42 Index size, Index otherSize
    [all...]
TriangularSolverVector.h 17 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate, int StorageOrder>
18 struct triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheRight, Mode, Conjugate, StorageOrder>
20 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs)
22 triangular_solve_vector<LhsScalar,RhsScalar,Index,OnTheLeft,
30 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate>
31 struct triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheLeft, Mode, Conjugate, RowMajor>
36 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs)
41 typedef const_blas_data_mapper<LhsScalar,Index,RowMajor> LhsMapper
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
X86Msr.c 28 Reads and returns the lower 32-bits of the MSR specified by Index.
29 No parameter checking is performed on Index, and some Index values may cause
30 CPU exceptions. The caller must either guarantee that Index is valid, or the
34 @param Index The 32-bit MSR index to read.
36 @return The lower 32 bits of the MSR identified by Index.
42 IN UINT32 Index
45 return (UINT32)AsmReadMsr64 (Index);
51 Writes the 32-bit value specified by Value to the MSR specified by Index. The
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
X86Msr.c 22 Reads and returns the lower 32-bits of the MSR specified by Index.
23 No parameter checking is performed on Index, and some Index values may cause
24 CPU exceptions. The caller must either guarantee that Index is valid, or the
28 @param Index The 32-bit MSR index to read.
30 @return The lower 32 bits of the MSR identified by Index.
36 IN UINT32 Index
39 return (UINT32)AsmReadMsr64 (Index);
46 Writes the 32-bit value specified by Value to the MSR specified by Index. The
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/
PeiNt32PeCoffExtraActionLib.c 98 UINTN Index;
104 for (Index = 0; Ascii[Index] != '\0'; Index++)
108 ((Index + 1) * sizeof (CHAR16))
114 for (Index = 0; Ascii[Index] != '\0'; Index++) {
115 Unicode[Index] = (CHAR16) Ascii[Index];
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseUefiDecompressLib/
BaseUefiDecompressLib.c 145 UINT16 Index;
163 // Initialize Count array starting from Index 0, as there is a possibility of Count array being uninitialized.
165 for (Index = 0; Index <= 16; Index++) {
166 Count[Index] = 0;
169 for (Index = 0; Index < NumOfChar; Index++) {
171 // Count array index should not be greater than or equal to its size.
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Variable.c 32 UINT32 Index;
39 for (Index = 1; Index < Argc; Index++) {
40 if (Argv[Index][0] == '-') {
41 AsciiPrint("Warning: '%a' not recognized.\n",Argv[Index]);
43 AsciiVariableName = Argv[Index];
96 UINT32 Index;
105 for (Index = 1; Index < Argc; Index++) {
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorContractionThreadPool.h 21 template<typename LhsScalar, typename LhsMapper, typename Index>
25 const Index m_start;
26 const Index k_start;
27 const Index mc;
28 const Index kc;
31 template<typename LhsScalar, typename RhsScalar, typename RhsMapper, typename OutputMapper, typename Index>
37 const Index m;
38 const Index k;
39 const Index n;
40 const Index mc
    [all...]
Tensor.h 70 typedef typename internal::traits<Self>::Index Index;
84 typedef DSizes<Index, NumIndices_> Dimensions;
92 static const bool is_array = internal::is_base_of<array<Index, NumIndices>, CustomIndices>::value;
100 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const { return NumIndices; }
101 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(std::size_t n) const { return m_storage.dimensions()[n]; }
103 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index size() const { return m_storage.size(); }
115 EIGEN_DEVICE_FUNC inline const Scalar& coeff(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) const
119 return coeff(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}})
    [all...]
TensorFixedSize.h 34 typedef typename internal::traits<Self>::Index Index;
55 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const { return NumIndices; }
56 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(std::size_t n) const { return m_storage.dimensions()[n]; }
58 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index size() const { return m_storage.size(); }
70 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherIndices) const
74 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}});
79 EIGEN_STRONG_INLINE const Scalar& coeff(const array<Index, NumIndices>& indices) const
86 EIGEN_STRONG_INLINE const Scalar& coeff(Index index) cons
144 const Index index = i1 + i0 * m_storage.dimensions()[1]; local
147 const Index index = i0 + i1 * m_storage.dimensions()[0]; local
155 const Index index = i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0); local
158 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * i2); local
166 const Index index = i3 + m_storage.dimensions()[3] * (i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0)); local
169 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * (i2 + m_storage.dimensions()[2] * i3)); local
177 const Index index = i4 + m_storage.dimensions()[4] * (i3 + m_storage.dimensions()[3] * (i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0))); local
180 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * (i2 + m_storage.dimensions()[2] * (i3 + m_storage.dimensions()[3] * i4))); local
229 const Index index = i1 + i0 * m_storage.dimensions()[1]; local
232 const Index index = i0 + i1 * m_storage.dimensions()[0]; local
240 const Index index = i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0); local
243 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * i2); local
251 const Index index = i3 + m_storage.dimensions()[3] * (i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0)); local
254 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * (i2 + m_storage.dimensions()[2] * i3)); local
262 const Index index = i4 + m_storage.dimensions()[4] * (i3 + m_storage.dimensions()[3] * (i2 + m_storage.dimensions()[2] * (i1 + m_storage.dimensions()[1] * i0))); local
265 const Index index = i0 + m_storage.dimensions()[0] * (i1 + m_storage.dimensions()[1] * (i2 + m_storage.dimensions()[2] * (i3 + m_storage.dimensions()[3] * i4))); local
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/IsaAcpiDxe/
IsaAcpi.c 114 UINTN Index;
116 Index = 0;
118 CopyMem (&gPcatIsaAcpiDeviceList[Index], &mPcatIsaAcpiCom1Device, sizeof(mPcatIsaAcpiCom1Device));
119 Index++;
122 CopyMem (&gPcatIsaAcpiDeviceList[Index], &mPcatIsaAcpiCom2Device, sizeof(mPcatIsaAcpiCom2Device));
123 Index++;
126 CopyMem (&gPcatIsaAcpiDeviceList[Index], &mPcatIsaAcpiPs2KeyboardDevice, sizeof(mPcatIsaAcpiPs2KeyboardDevice));
127 Index++;
130 CopyMem (&gPcatIsaAcpiDeviceList[Index], &mPcatIsaAcpiPs2MouseDevice, sizeof(mPcatIsaAcpiPs2MouseDevice));
131 Index++;
    [all...]
  /external/pdfium/third_party/bigint/
NumberlikeArray.hh 31 // Type for the index of a block in the array
32 typedef unsigned int Index;
37 Index cap;
39 Index len;
44 NumberlikeArray(Index c) : cap(c), len(0) {
63 void allocate(Index c);
67 void allocateAndCopy(Index c);
76 NumberlikeArray(const Blk *b, Index blen);
79 Index getCapacity() const { return cap; }
80 Index getLength() const { return len;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/RvdPeCoffExtraActionLib/
RvdPeCoffExtraActionLib.c 75 UINTN Index;
86 for (Index = 0; Index < 9; Index++) {
87 Ptr[Index] = ' ';
95 for (Index = 11; Index < Len; Index++) {
96 if (Ptr[Index] == '/') {
97 Ptr[Index] = '\\' ;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyBbs.c 57 UINTN Index;
82 for (Index = 0; Index < HandleCount; Index++) {
84 HandleBuffer[Index],
98 Status = gBS->DisconnectController (HandleBuffer[Index], NULL, NULL);
104 Status = gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
111 HandleBuffer[Index],
153 UINTN Index;
204 for (Index = 0; Index < 2; ++Index) {
    [all...]
  /external/eigen/Eigen/src/Core/
Stride.h 47 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
63 Stride(Index outerStride, Index innerStride)
77 inline Index outer() const { return m_outer.value(); }
80 inline Index inner() const { return m_inner.value(); }
83 internal::variable_if_dynamic<Index, OuterStrideAtCompileTime> m_outer;
84 internal::variable_if_dynamic<Index, InnerStrideAtCompileTime> m_inner;
95 EIGEN_DEVICE_FUNC InnerStride(Index v) : Base(0, v) {} // FIXME making this explicit could break valid code
106 EIGEN_DEVICE_FUNC OuterStride(Index v) : Base(v,0) {} // FIXME making this explicit could break valid cod
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
TianoCompress.c 214 IN INT32 Index
226 IN INT32 Index
417 UINT32 Index;
420 for (Index = 0; Index < WNDSIZ * 2 + MAXMATCH; Index++) {
421 mText[Index] = 0;
515 NODE Index;
517 for (Index = WNDSIZ; Index <= WNDSIZ + UINT8_MAX; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
TianoCompress.c 233 IN INT32 Index
245 IN INT32 Index
437 UINT32 Index;
440 for (Index = 0; Index < WNDSIZ * 2 + MAXMATCH; Index++) {
441 mText[Index] = 0;
535 NODE Index;
537 for (Index = WNDSIZ; Index <= WNDSIZ + UINT8_MAX; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/
CpuMmuCommon.c 28 @param StartIndex Start index into the Gcd Memory Space Map.
29 @param EndIndex End index into the Gcd Memory Space Map.
45 UINTN Index;
49 for (Index = 0; Index < NumberOfDescriptors; Index++) {
50 if ((BaseAddress >= MemorySpaceMap[Index].BaseAddress) &&
51 (BaseAddress < (MemorySpaceMap[Index].BaseAddress + MemorySpaceMap[Index].Length))) {
52 *StartIndex = Index;
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Csm/CsmSupportLib/
LegacyRegion.c 96 UINTN Index;
114 for (Index = 0; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
115 if ((Start >= mSectionArray[Index].Start) && (Start < (mSectionArray[Index].Start + mSectionArray[Index].Length))) {
116 StartIndex = Index;
120 ASSERT (Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])));
125 for (Index = StartIndex; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
    [all...]
  /external/eigen/test/
bandmatrix.cpp 18 Index rows = _m.rows();
19 Index cols = _m.cols();
20 Index supers = _m.supers();
21 Index subs = _m.subs();
48 Index d = (std::min)(rows,cols);
49 Index a = std::max<Index>(0,cols-d-supers);
50 Index b = std::max<Index>(0,rows-d-subs);
65 Index rows = internal::random<Index>(1,10)
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuService.c 76 // Get the max index of basic CPUID
95 // Sub-leaf index 0 (ECX= 0 as input) provides enumeration parameters to extract
111 // value to be related to any sub-leaf index, except sub-leaf 0.
251 UINTN Index;
268 for (Index = 0; Index < mMaxNumberOfCpus; Index++) {
269 if (gSmmCpuPrivate->ProcessorInfo[Index].ProcessorId == ProcessorId) {
278 for (Index = 0; Index < mMaxNumberOfCpus; Index++) {
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_SupernodalMatrix.h 45 MappedSuperNodalMatrix(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVector& rowind,
61 void setInfos(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVector& rowind,
78 Index rows() { return m_row; }
83 Index cols() { return m_col; }
151 Index nsuper() const
164 Index m_row; // Number of rows
165 Index m_col; // Number of columns
166 Index m_nsuper; // Number of supernode
205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; } function in class:Eigen::internal::MappedSuperNodalMatrix::InnerIterator
    [all...]

Completed in 621 milliseconds

1 2 34 5 6 7 8 91011>>