/device/linaro/bootloader/edk2/UefiCpuPkg/Library/MtrrLib/ |
MtrrLib.c | 337 UINT32 Index;
339 for (Index = 0; Index < MTRR_NUMBER_OF_FIXED_MTRR; Index++) {
340 FixedSettings->Mtrr[Index] =
341 AsmReadMsr64 (mMtrrLibFixedMtrrTable[Index].Msr);
391 UINT32 Index;
395 for (Index = 0; Index < VariableMtrrCount; Index++) { [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV3/ |
ArmGicV3Dxe.c | 204 UINTN Index;
207 for (Index = 0; Index < mGicNumInterrupts; Index++) {
208 GicV3DisableInterruptSource (&gHardwareInterruptV3Protocol, Index);
211 for (Index = 0; Index < mGicNumInterrupts; Index++) {
212 GicV3EndOfInterrupt (&gHardwareInterruptV3Protocol, Index);
240 UINTN Index;
[all...] |
/device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/ |
FvbInfo.c | 111 UINTN Index;
113 for (Index = 0; Index < sizeof (mPlatformFvbMediaInfo) / sizeof (EFI_FVB_MEDIA_INFO); Index += 1) {
114 if (mPlatformFvbMediaInfo[Index].FvLength == FvLength) {
115 *FvbInfo = &mPlatformFvbMediaInfo[Index].FvbInfo;
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/HashLibBaseCryptoRouter/ |
HashLibBaseCryptoRouterCommon.c | 49 UINTN Index;
50 for (Index = 0; Index < sizeof(mTpm2HashMask)/sizeof(mTpm2HashMask[0]); Index++) {
51 if (CompareGuid (HashGuid, &mTpm2HashMask[Index].Guid)) {
52 return mTpm2HashMask[Index].Mask;
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_relax_snode.h | 47 void SparseLUImpl<Scalar,StorageIndex>::relax_snode (const Index n, IndexVector& et, const Index relax_columns, IndexVector& descendants, IndexVector& relax_end) 51 Index parent; 54 for (Index j = 0; j < n; j++) 61 Index snode_start; // beginning of a snode 62 for (Index j = 0; j < n; )
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
FunctionId.h | 20 FunctionId() : Index(0) {} 22 explicit FunctionId(uint32_t Index) : Index(Index) {} 24 uint32_t getIndex() const { return Index; } 27 uint32_t Index;
|
/system/update_engine/payload_generator/ |
topological_sort.cc | 31 set<Vertex::Index>* visited_nodes, 32 vector<Vertex::Index>* nodes, 33 Vertex::Index node) { 48 void TopologicalSort(const Graph& graph, vector<Vertex::Index>* out) { 49 set<Vertex::Index> visited_nodes; 51 for (Vertex::Index i = 0; i < graph.size(); i++) {
|
topological_sort.h | 38 void TopologicalSort(const Graph& graph, std::vector<Vertex::Index>* out);
|
/external/eigen/Eigen/src/SparseCore/ |
CompressedStorage.h | 39 explicit CompressedStorage(Index size) 76 void reserve(Index size) 78 Index newAllocatedSize = m_size + size; 89 void resize(Index size, double reserveSizeFactor = 0) 93 Index realloc_size = (std::min<Index>)(NumTraits<StorageIndex>::highest(), size + Index(reserveSizeFactor*double(size))); 101 void append(const Scalar& v, Index i) 103 Index id = m_size; 109 inline Index size() const { return m_size; 121 inline StorageIndex& index(Index i) { eigen_internal_assert(m_indices!=0); return m_indices[i]; } function in class:Eigen::internal::CompressedStorage 122 inline const StorageIndex& index(Index i) const { eigen_internal_assert(m_indices!=0); return m_indices[i]; } function in class:Eigen::internal::CompressedStorage [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciRomTable.c | 103 UINTN Index;
109 for (Index = 0; Index < mNumberOfPciRomImages; Index++) {
110 if (mRomImageTable[Index].Seg == PciRootBridgeIo->SegmentNumber &&
111 mRomImageTable[Index].Bus == PciIoDevice->BusNumber &&
112 mRomImageTable[Index].Dev == PciIoDevice->DeviceNumber &&
113 mRomImageTable[Index].Func == PciIoDevice->FunctionNumber ) {
116 if (mRomImageTable[Index].ImageHandle != NULL) {
117 AddDriver (PciIoDevice, mRomImageTable[Index].ImageHandle); [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
Indexer.h | 22 UINTN Index; // Used only if Name is NULL.
27 UINTN Index;
32 UINTN Index;
|
/external/clang/bindings/python/tests/cindex/ |
test_index.py | 7 index = Index.create() 9 # FIXME: test Index.read 12 index = Index.create() 13 assert isinstance(index, Index) 14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineMatrix.h | 64 Index m_outerSize; 65 Index m_innerSize; 68 Index* m_colStartIndex; 69 Index* m_rowStartIndex; 74 inline Index rows() const { 78 inline Index cols() const { 82 inline Index innerSize() const { 86 inline Index outerSize() const { 90 inline Index upperNonZeros() const { 94 inline Index lowerNonZeros() const [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/ |
RandVerify.c | 37 UINTN Index;
50 for (Index = 0; Index < 10; Index ++) {
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/ |
ValueToString.c | 62 UINTN Index;
78 Index = ((UINTN)Value & 0xf);
79 *(TempStr++) = mHexStr[Index];
90 Index = Count;
92 for (; Index < Width; Index++) {
103 Index = 0;
106 Index++;
110 return Index;
150 UINTN Index;
[all...] |
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/ |
CpuDxe.c | 508 @param StartIndex Start index into the Gcd Memory Space Map.
509 @param EndIndex End index into the Gcd Memory Space Map.
525 UINTN Index;
529 for (Index = 0; Index < NumberOfDescriptors; Index++) {
530 if (BaseAddress >= MemorySpaceMap[Index].BaseAddress &&
531 BaseAddress < MemorySpaceMap[Index].BaseAddress + MemorySpaceMap[Index].Length) {
532 *StartIndex = Index;
[all...] |
/external/eigen/Eigen/src/Core/ |
ForceAlignedAccess.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...] |