/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/Xml/ |
XmlRoutines.py | 73 Index = 0
75 while Index <= End:
78 if Node.nodeType == Node.ELEMENT_NODE and Node.tagName == TagList[Index]:
79 if Index < End:
85 Index += 1
108 Index = 0
111 while Index <= End:
113 if Node.nodeType == Node.ELEMENT_NODE and Node.tagName == TagList[Index]:
114 if Index < End:
119 Index += 1 [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/ |
XmlRoutines.py | 77 Index = 0
79 while Index <= End:
83 TagList[Index]:
84 if Index < End:
90 Index += 1
111 Index = 0
114 while Index <= End:
117 Node.tagName == TagList[Index]:
118 if Index < End:
123 Index += 1 [all...] |
/device/linaro/bootloader/edk2/BeagleBoardPkg/Bds/ |
BdsEntry.c | 71 UINTN Index;
146 for (Index = 0; Index < HandleCount; Index++) {
147 gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
162 for (Index = 0; Index < HandleCount; Index++) {
164 FileSystemDevicePath = DevicePathFromHandle(HandleBuffer[Index]);
176 LoadImageDevicePath = FileDevicePath(HandleBuffer[Index], L"Ebl.efi"); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtLedStatusCode/ |
RtLedStatusCode.c | 168 UINT32 Index;
179 Index = 0;
180 while ((mSioInitData[Index]).RegAddress != 0xff) {
181 OutputData = (UINT8) mSioInitData[Index].RegAddress;
185 OutputData = (UINT8) mSioInitData[Index].RegValue;
188 Index++;
306 UINTN Index;
322 for (Index = 0; Index < 8; Index++) { [all...] |
/device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/ |
MiscNumberOfInstallableLanguagesFunction.c | 107 UINTN Index;
114 Index = 0;
116 while (StringPtr[Index] != 0 && StringPtr[Index] != ';') {
117 Index++;
120 CopyMem (Lang, StringPtr, Index);
121 Lang[Index] = 0;
123 if (StringPtr[Index] == ';') {
124 Index++;
126 *LangCode = StringPtr + Index;
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Application/UiApp/ |
Language.c | 289 UINTN Index;
296 Index = 0;
298 while (StringPtr[Index] != 0 && StringPtr[Index] != ';') {
299 Index++;
302 CopyMem (Lang, StringPtr, Index);
303 Lang[Index] = 0;
305 if (StringPtr[Index] == ';') {
306 Index++;
308 *LangCode = StringPtr + Index;
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Image/ |
Image.c | 165 UINT32 Index;
191 for (Index = BaseOffsetPageNumber; Index < TopOffsetPageNumber; Index ++) {
192 if ((MemoryUsageBitMap[Index / 64] & LShiftU64(1, (Index % 64))) != 0) {
203 for (Index = BaseOffsetPageNumber; Index < TopOffsetPageNumber; Index ++) {
204 MemoryUsageBitMap[Index / 64] |= LShiftU64(1, (Index % 64)); [all...] |
/device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/ |
MiscNumberOfInstallableLanguagesFunction.c | 105 UINTN Index;
112 Index = 0;
114 while (StringPtr[Index] != 0 && StringPtr[Index] != ';') {
115 Index++;
118 CopyMem (Lang, StringPtr, Index);
119 Lang[Index] = 0;
121 if (StringPtr[Index] == ';') {
122 Index++;
124 *LangCode = StringPtr + Index;
[all...] |
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/ |
MiscNumberOfInstallableLanguagesFunction.c | 115 UINTN Index;
122 Index = 0;
124 while (StringPtr[Index] != 0 && StringPtr[Index] != ';') {
125 Index++;
128 CopyMem (Lang, StringPtr, Index);
129 Lang[Index] = 0;
131 if (StringPtr[Index] == ';') {
132 Index++;
134 *LangCode = StringPtr + Index;
[all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/ |
OhciUrb.c | 220 UINTN Index;
227 for (Index = 0; Index < 32; Index++) {
232 HccaInterruptTable[Index] = (UINT32)(UINTN)NewEd;
235 for (Index = 0; Index < 32; Index++) {
236 Ohc->IntervalList[0][Index] = (ED_DESCRIPTOR *)(UINTN)HccaInterruptTable[Leaf[Index]];
[all...] |
/device/linaro/bootloader/edk2/StdLib/EfiSocketLib/ |
UseEfiSocketLib.c | 188 UINTN Index;
230 for ( Index = 0; HandleCount > Index; Index++ ) {
232 pHandles[ Index ]);
291 UINTN Index;
325 for ( Index = 0; HandleCount > Index; Index++ ) {
327 pHandles[ Index ]);
[all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/ |
MiscNumberOfInstallableLanguagesFunction.c | 130 UINTN Index;
137 Index = 0;
139 while (StringPtr[Index] != 0 && StringPtr[Index] != ';') {
140 Index++;
143 CopyMem (Lang, StringPtr, Index);
144 Lang[Index] = 0;
146 if (StringPtr[Index] == ';') {
147 Index++;
149 *LangCode = StringPtr + Index;
[all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorChipping.h | 30 typedef typename XprTraits::Index Index; 86 typedef typename Eigen::internal::traits<TensorChippingOp>::Index Index; 88 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorChippingOp(const XprType& expr, const Index offset, const Index dim) 93 const Index offset() const { return m_offset; } 95 const Index dim() const { return m_dim.actualDim(); } 122 const Index m_offset; 134 typedef typename XprType::Index Index [all...] |
/external/llvm/lib/Option/ |
Arg.cpp | 21 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const Arg *BaseArg) 22 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), 25 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0, 27 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), 32 Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0, 34 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), 53 O << " Index:" << Index [all...] |
/external/llvm/lib/Transforms/IPO/ |
FunctionImport.cpp | 108 static bool canBeExternallyReferenced(const ModuleSummaryIndex &Index, 110 auto Summaries = Index.findGlobalValueSummaryList(GUID); 111 if (Summaries == Index.end()) 126 static bool eligibleForImport(const ModuleSummaryIndex &Index, 138 return canBeExternallyReferenced(Index, VI.getGUID()); 146 return canBeExternallyReferenced(Index, Edge.first.getGUID()); 165 selectCallee(const ModuleSummaryIndex &Index, 191 if (!eligibleForImport(Index, *Summary)) 206 const ModuleSummaryIndex &Index) { 207 auto CalleeSummaryList = Index.findGlobalValueSummaryList(GUID) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/ |
XhcPeim.c | 179 UINT64 Index;
181 for (Index = 0; Index < Timeout * XHC_1_MILLISECOND; Index++) {
510 UINT8 Index;
592 for (Index = 0; Index < 255; Index++) {
593 if (!Xhc->UsbDevContext[Index + 1].Enabled &&
594 (Xhc->UsbDevContext[Index + 1].SlotId == 0) && [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/ |
BmHotkey.c | 116 UINTN Index;
127 for (Index = 3; Index < 7; Index++) {
128 Uint = BmCharToUint (Name[Index]);
158 UINTN Index;
180 for (Index = 0; Index < Param->KeyOptionCount; Index++) {
181 if (KeyOption->OptionNumber < Param->KeyOptions[Index].OptionNumber) { [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByAddr/ |
GetHostByAddr.c | 43 UINTN Index;
90 for ( Index = 1; NULL != pHost->h_addr_list[Index]; Index++ ) {
91 pIpAddress = (UINT8 *)pHost->h_addr_list[Index];
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/X64/ |
DispatchExecute.c | 114 UINTN Index;
129 for (Index = 0; Index < Ia32IdtEntryCount; Index ++ ) {
133 Ia32IdtEntry[Index].Bits.Selector = COMPATIBILITY_MODE_SELECTOR;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeRuntimeDriverLib/Ipf/ |
RuntimeLib.c | 87 UINTN Index;
90 for (Index = 0; _gDriverSetVirtualAddressMapEvent[Index] != NULL; Index++) {
91 ChildNotifyEventHandler = _gDriverSetVirtualAddressMapEvent[Index];
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/BdsDxe/ |
Language.c | 52 UINTN Index;
58 for (Index = 0; Index < AsciiStrLen (SupportedLang); Index += CompareLength) {
59 if (AsciiStrnCmp (Lang, SupportedLang + Index, CompareLength) == 0) {
|
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/ |
LoadDeferredImage.c | 38 UINTN Index;
64 for (Index = 0; Index < HandleCount; Index++) {
66 HandleBuf[Index],
|
/external/eigen/Eigen/src/Cholesky/ |
LLT_LAPACKE.h | 46 static inline Index potrf(MatrixType& m, char uplo) \ 67 static Index blocked(MatrixType& m) \ 72 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \ 78 static Index blocked(MatrixType& m) \ 83 static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
|
/external/eigen/Eigen/src/Core/ |
Map.h | 102 inline Index innerStride() const 108 inline Index outerStride() const 135 inline Map(PointerArgType dataPtr, Index size, const StrideType& stride = StrideType()) 149 inline Map(PointerArgType dataPtr, Index rows, Index cols, const StrideType& stride = StrideType())
|
/external/eigen/Eigen/src/SparseCore/ |
SparseTranspose.h | 31 inline Index nonZeros() const { return derived().nestedExpression().nonZeros(); } 62 inline Index nonZerosEstimate() const { 69 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer) 73 Index row() const { return EvalIterator::col(); } 74 Index col() const { return EvalIterator::row(); }
|