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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/
HiiLib.c 49 UINTN Index;
65 for (Index = 0; Index < NumberOfPackages; Index++) {
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
SmbiosLib.c 47 UINTN Index;
55 for (Index = 0; Template[Index].Entry != NULL; Index++) {
56 Status = SmbiosLibCreateEntry (Template[Index].Entry, Template[Index].StringArray);
101 UINTN Index;
113 for (Index = 0; StringArray[Index] != NULL; Index++)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 225 UINTN Index;
238 for (Index = 0; Index < HandleCount; Index++) {
239 Status = gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
269 UINTN Index;
285 for (Index = 0; Index < HandleCount; Index++) {
286 Status = gBS->DisconnectController (HandleBuffer[Index], NULL, NULL);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
StatusCodeRuntimeDxe.c 208 UINTN Index;
257 for (Index = 0; Index < MaxRecordNumber; Index++) {
263 Record[Index].CodeType,
264 Record[Index].Value,
265 Record[Index].Instance,
272 Record[Index].CodeType,
273 Record[Index].Value,
274 Record[Index].Instance
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
Stall.c 60 UINTN Index;
80 for (Index = 0; Index < 10; Index++) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConnect.c 32 UINTN Index;
46 for (Index = 0; Index < HandleCount; Index++) {
47 gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
214 UINTN Index;
226 for (Index = 0; Index < HandleCount; Index++) {
227 gBS->DisconnectController (HandleBuffer[Index], NULL, NULL);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PalLib.h 31 This is a wrapper function to make a PAL procedure call. Based on the Index value,
45 @param Index The PAL procedure Index number.
56 IN UINT64 Index,
  /device/linaro/bootloader/edk2/UefiCpuPkg/SecCore/
SecMain.c 79 UINT32 Index;
125 for (Index = 0; Index < SEC_IDT_ENTRY_COUNT; Index ++) {
126 CopyMem ((VOID*)&IdtTableInStack.IdtTable[Index], (VOID*)&mIdtEntryTemplate, sizeof (UINT64));
177 UINT32 Index;
202 Index = sizeof (mPeiSecPlatformInformationPpi) / sizeof (EFI_PEI_PPI_DESCRIPTOR) - 1;
203 AllSecPpiList[Index].Flags = AllSecPpiList[Index].Flags & (~EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST);
208 Index += 1;
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 225 UINTN Index;
238 for (Index = 0; Index < HandleCount; Index++) {
239 Status = gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
269 UINTN Index;
285 for (Index = 0; Index < HandleCount; Index++) {
286 Status = gBS->DisconnectController (HandleBuffer[Index], NULL, NULL);
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular_BLAS.h 40 template <typename Index, typename Scalar, int AStorageOrder, bool ConjugateA, int ResStorageOrder, int UpLo>
43 Index,Scalar,AStorageOrder,ConjugateA,Scalar,AStorageOrder,ConjugateA,ResStorageOrder,UpLo,BuiltIn> {};
48 template <typename Index, int LhsStorageOrder, bool ConjugateLhs, \
50 struct general_matrix_matrix_triangular_product<Index,Scalar,LhsStorageOrder,ConjugateLhs, \
52 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const Scalar* lhs, Index lhsStride, \
53 const Scalar* rhs, Index rhsStride, Scalar* res, Index resStride, Scalar alpha, level3_blocking<Scalar, Scalar>& blocking) \
56 general_matrix_matrix_rankupdate<Index,Scalar,LhsStorageOrder,ConjugateLhs,ColMajor,UpLo>
    [all...]
  /external/eigen/test/
sparse_block.cpp 14 innervec(T& A, Index i)
21 innervec(T& A, Index i)
28 const Index rows = ref.rows();
29 const Index cols = ref.cols();
30 const Index inner = ref.innerSize();
31 const Index outer = ref.outerSize();
53 Index j = internal::random<Index>(0,cols-2);
54 Index i = internal::random<Index>(0,rows-2)
    [all...]
constructor.cpp 26 Index rows = m.rows();
27 Index cols = m.cols();
49 Matrix<Index,1,1> a(123);
53 Matrix<Index,1,1> a(123.0);
61 Array<Index,1,1> a(123);
65 Array<Index,1,1> a(123.0);
73 Array<Index,3,3> a(123);
77 Array<Index,3,3> a(123.0);
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/X64/
ArchDebugSupport.c 29 UINTN Index;
42 for (Index = 0; Index < 20; Index ++) {
43 if (((PcdGet32 (PcdExceptionsIgnoredByDebugger) & ~(BIT1 | BIT3)) & (1 << Index)) != 0) {
49 InterruptHandler = (UINTN)&Exception0Handle + Index * ExceptionStubHeaderSize;
50 IdtEntry[Index].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
51 IdtEntry[Index].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
52 IdtEntry[Index].Bits.OffsetUpper = (UINT32)((UINTN)InterruptHandler >> 32);
53 IdtEntry[Index].Bits.Selector = CodeSegment;
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/SerialPortLib/
SioInit.c 106 UINT16 Index;
125 for (Index = 0; Index < sizeof (mSioTableWpcn381u) / sizeof (EFI_SIO_TABLE); Index++) {
126 IoWrite8 (IndexPort, mSioTableWpcn381u[Index].Register);
127 IoWrite8 (DataPort, mSioTableWpcn381u[Index].Value);
135 for (Index = 0; Index < sizeof (mSioTableWdcp376) / sizeof (EFI_SIO_TABLE); Index++) {
136 IoWrite8 (IndexPort, mSioTableWdcp376[Index].Register);
    [all...]
  /external/eigen/Eigen/src/Core/
BandMatrix.h 54 inline Index supers() const { return derived().supers(); }
57 inline Index subs() const { return derived().subs(); }
68 inline Block<CoefficientsType,Dynamic,1> col(Index i)
71 Index start = 0;
72 Index len = coeffs().rows();
76 len = (std::min)(rows(),std::max<Index>(0,coeffs().rows() - (supers()-i)));
79 len = std::max<Index>(0,coeffs().rows() - (i + 1 - rows() + subs()));
91 template<int Index> struct DiagonalIntReturnType {
93 ReturnOpposite = (Options&SelfAdjoint) && (((Index)>0 && Supers==0) || ((Index)<0 && Subs==0))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
MachOObject.h 117 StringRef getStringAtIndex(unsigned Index) const {
118 size_t End = getStringTableData().find('\0', Index);
119 return getStringTableData().slice(Index, End);
139 const LoadCommandInfo &getLoadCommandInfo(unsigned Index) const;
158 unsigned Index,
162 unsigned Index,
166 unsigned Index,
169 uint64_t RelocationTableOffset, unsigned Index,
172 uint64_t SymbolTableOffset, unsigned Index,
175 uint64_t SymbolTableOffset, unsigned Index,
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Spi/Common/
SpiCommon.c 38 UINT8 Index;
43 // Give invalid index in case operation not supported.
53 for (Index = 0; Index < SPI_NUM_OPCODE; Index++) {
54 if (SpiInstance->SpiInitTable.OpcodeMenu[Index].Operation == EnumSpiOperationJedecId) {
55 SpiInstance->InitInfo.JedecIdOpcodeIndex = Index;
57 if (SpiInstance->SpiInitTable.OpcodeMenu[Index].Operation == EnumSpiOperationOther) {
58 SpiInstance->InitInfo.OtherOpcodeIndex = Index;
60 if (SpiInstance->SpiInitTable.OpcodeMenu[Index].Operation == EnumSpiOperationWriteStatus) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
Print.c 166 UINTN Index;
184 for (Index = 0; (*Format != '\0') && (Index < NumberOfCharacters - 1); Format++) {
186 if ((*Format == '\n') && (Index < NumberOfCharacters - 2)) {
190 Buffer[Index++] = '\r';
193 Buffer[Index++] = *Format;
260 for ( ;(*UnicodeStr != '\0') && (Index < NumberOfCharacters - 1); UnicodeStr++) {
261 Buffer[Index++] = *UnicodeStr;
281 for ( ;(*UnicodeStr != '\0') && (Index < NumberOfCharacters - 1); UnicodeStr++) {
282 Buffer[Index++] = *UnicodeStr;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscSubclassDriverEntryPoint.c 128 UINTN Index;
147 for (Index = 0; Index < mMiscSubclassDataTableEntries; ++Index) {
151 if (mMiscSubclassDataTable[Index].Function != NULL) {
152 EfiStatus = (*mMiscSubclassDataTable[Index].Function)(
153 mMiscSubclassDataTable[Index].RecordData,
158 DEBUG((EFI_D_ERROR, "Misc smbios store error. Index=%d, ReturnStatus=%r\n", Index, EfiStatus));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiDhcp.c 42 UINT8 Index;
66 Index = 0;
73 for (FieldIndex = RP_FIELD_IDX_SERVERNAME; (FieldIndex < RP_FIELD_IDX_MAX) && (Index < Length); FieldIndex++) {
74 if (TmpStr[Index] != ISCSI_ROOT_PATH_FIELD_DELIMITER) {
75 Fields[FieldIndex].Str = &TmpStr[Index];
78 while ((TmpStr[Index] != ISCSI_ROOT_PATH_FIELD_DELIMITER) && (Index < Length)) {
79 Index++;
82 if (TmpStr[Index] == ISCSI_ROOT_PATH_FIELD_DELIMITER) {
84 TmpStr[Index] = '\0';
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiDhcp.c 45 UINT8 Index;
74 Index = 0;
81 for (FieldIndex = RP_FIELD_IDX_SERVERNAME; (FieldIndex < RP_FIELD_IDX_MAX) && (Index < Length); FieldIndex++) {
82 if (TmpStr[Index] != ISCSI_ROOT_PATH_FIELD_DELIMITER) {
83 Fields[FieldIndex].Str = &TmpStr[Index];
86 while ((TmpStr[Index] != ISCSI_ROOT_PATH_FIELD_DELIMITER) && (Index < Length)) {
87 Index++;
90 if (TmpStr[Index] == ISCSI_ROOT_PATH_FIELD_DELIMITER) {
92 TmpStr[Index] = '\0';
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscSubclassDriverEntryPoint.c 128 UINTN Index;
147 for (Index = 0; Index < mMiscSubclassDataTableEntries; ++Index) {
151 if (mMiscSubclassDataTable[Index].Function != NULL) {
152 EfiStatus = (*mMiscSubclassDataTable[Index].Function)(
153 mMiscSubclassDataTable[Index].RecordData,
158 DEBUG((EFI_D_ERROR, "Misc smbios store error. Index=%d, ReturnStatus=%r\n", Index, EfiStatus));
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
FlashMap.c 102 UINTN Index;
108 for (Index = 0; Index < NUM_FLASH_AREA_DATA; Index++) {
111 FlashHobData.AreaType = mFlashAreaData[Index].AreaType;
113 FlashHobData.SubAreaData.Attributes = mFlashAreaData[Index].Attributes;
114 FlashHobData.SubAreaData.Base = (EFI_PHYSICAL_ADDRESS) (UINTN) mFlashAreaData[Index].Base;
115 FlashHobData.SubAreaData.Length = (EFI_PHYSICAL_ADDRESS) (UINTN) mFlashAreaData[Index].Length;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscSubclassDriverEntryPoint.c 132 UINTN Index;
177 for (Index = 0; Index < mMiscSubclassDataTableEntries; ++Index) {
181 if (mMiscSubclassDataTable[Index].Function != NULL) {
182 EfiStatus = (*mMiscSubclassDataTable[Index].Function)(
183 mMiscSubclassDataTable[Index].RecordData,
188 DEBUG((EFI_D_ERROR, "Misc smbios store error. Index=%d, ReturnStatus=%r\n", Index, EfiStatus));
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp 15 MatrixXf::Index maxRow, maxCol;
19 MatrixXf::Index minRow, minCol;

Completed in 678 milliseconds

<<11121314151617181920>>