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

<<31323334353637383940>>

  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/
IoApicLib.c 32 If Index is >= 0x100, then ASSERT().
34 @param Index Specifies the I/O APIC register to read.
36 @return The 32-bit value read from the I/O APIC register specified by Index.
41 IN UINTN Index
44 ASSERT (Index < 0x100);
45 MmioWrite8 (PcdGet32 (PcdIoApicBaseAddress) + IOAPIC_INDEX_OFFSET, (UINT8)Index);
52 If Index is >= 0x100, then ASSERT().
54 @param Index Specifies the I/O APIC register to write.
55 @param Value Specifies the value to write to the I/O APIC register specified by Index.
57 @return The 32-bit value written to I/O APIC register specified by Index.
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Spi/RuntimeDxe/
PchSpi.c 188 UINTN Index;
203 for (Index = 0; Index < sizeof (mSpiRegister) / sizeof (UINT32); Index++) {
206 (UINTN) (mSpiInstance->PchRootComplexBar + mSpiRegister[Index]),
208 (VOID *) (UINTN) (mSpiInstance->PchRootComplexBar + mSpiRegister[Index])
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEConfig/
TrEEConfigDriver.c 42 UINTN Index;
115 for (Index = 0; Index < sizeof(mTpmInstanceId)/sizeof(mTpmInstanceId[0]); Index++) {
116 if (CompareGuid (PcdGetPtr(PcdTpmInstanceGuid), &mTpmInstanceId[Index].TpmInstanceGuid)) {
117 TrEEDeviceDetection.TpmDeviceDetected = mTpmInstanceId[Index].TpmDevice;
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 93 for(Index j = 0; j < cols(); ++j)
94 for(Index i = 0; i < rows(); ++i)
117 for(Index j = 0; j < cols(); ++j)
118 for(Index i = 0; i < rows(); ++i)
129 inline Eigen::Index DenseBase<Derived>::count() const
131 return derived().template cast<bool>().template cast<Index>().sum();
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h 23 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs, int Version=Specialized>
26 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs, int Version>
31 Index size,
32 const Scalar* lhs, Index lhsStride,
38 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs, int Version>
39 EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product<Scalar,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs,Version>::run(
40 Index size,
41 const Scalar* lhs, Index lhsStride,
48 const Index PacketSize = sizeof(Packet)/sizeof(Scalar);
66 Index bound = (std::max)(Index(0),size-8) & 0xfffffffe
    [all...]
  /external/eigen/test/
zerosized.cpp 52 Index rows = MatrixType::RowsAtCompileTime==Dynamic ? internal::random<Index>(1,10) : Index(MatrixType::RowsAtCompileTime);
53 Index cols = MatrixType::ColsAtCompileTime==Dynamic ? internal::random<Index>(1,10) : Index(MatrixType::ColsAtCompileTime);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 56 typename MatrixType::Index rows = A.rows();
68 typedef typename MatrixType::Index Index;
69 Index rows = A.rows();
76 for (Index s = 1; s < 1.1 * rows + 10; s++) { // upper limit is fairly arbitrary
87 for (Index r = 0; r < rows; r++) {
89 for (Index i = 0; i < rows; i++)
108 template <typename Index, typename ListOfClusters>
109 typename ListOfClusters::iterator matrix_function_find_cluster(Index key, ListOfClusters& clusters)
111 typename std::list<Index>::iterator j
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
fdjac1.h 17 typedef DenseIndex Index;
21 Index j, k;
23 Index msum;
25 Index start, length;
29 const Index n = x.size();
68 start = std::max<Index>(0,j-mu);
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 54 DILineInfo getFrame(unsigned Index) const {
55 assert(Index < Frames.size());
56 return Frames[Index];
58 DILineInfo *getMutableFrame(unsigned Index) {
59 assert(Index < Frames.size());
60 return &Frames[Index];
  /external/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h 143 void setVarArgsStackIndex(int Index) { VarArgsStackIndex = Index; }
146 void setVarArgsGPRIndex(int Index) { VarArgsGPRIndex = Index; }
152 void setVarArgsFPRIndex(int Index) { VarArgsFPRIndex = Index; }
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
guid.c 145 UINTN Index;
151 for (Index=0; KnownGuids[Index].Guid; Index++) {
152 if (CompareGuid(Guid, KnownGuids[Index].Guid) == 0) {
153 SPrint (Buffer, 0, KnownGuids[Index].GuidName);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Object/
MachOUniversal.h 37 /// \brief Index of object in the universal binary.
38 uint32_t Index;
44 ObjectForArch(const MachOUniversalBinary *Parent, uint32_t Index);
48 Index = 0;
52 return (Parent == Other.Parent) && (Index == Other.Index);
55 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeTableBuilder.h 72 uint32_t Index = TypeIndex::FirstNonSimpleIndex;
75 Func(TypeIndex(Index), Record);
76 ++Index;
118 TypeIndex Index;
120 Index = TypeTable.writeSerializedRecord(Record);
122 return Index;

Completed in 2454 milliseconds

<<31323334353637383940>>