/external/swiftshader/third_party/subzero/src/ |
IceLiveness.h | 53 // LiveToVarMap maps a liveness bitvector index to a Variable. This is 54 // generally just for printing/dumping. The index should be less than 61 // of each variable's live range within this block. The index/key of each 86 SizeT Index = Node->getIndex(); 87 resize(Index); 88 return Nodes[Index].LiveIn; 91 SizeT Index = Node->getIndex(); 92 resize(Index); 93 return Nodes[Index].LiveOut; 97 SizeT Index = Node->getIndex() [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/ |
BmDriverHealth.c | 122 UINTN Index;
139 for (Index = 0; DriverHealthInfo->MessageList[Index].HiiHandle != NULL; Index++) {
141 DriverHealthInfo->MessageList[Index].HiiHandle,
142 DriverHealthInfo->MessageList[Index].StringId,
413 UINTN Index;
415 for (Index = 0; Index < Count; Index++) { [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseVector.h | 81 EIGEN_STRONG_INLINE Index rows() const { return IsColVector ? m_size : 1; } 82 EIGEN_STRONG_INLINE Index cols() const { return IsColVector ? 1 : m_size; } 83 EIGEN_STRONG_INLINE Index innerSize() const { return m_size; } 84 EIGEN_STRONG_INLINE Index outerSize() const { return 1; } 102 inline Scalar coeff(Index row, Index col) const 107 inline Scalar coeff(Index i) const 113 inline Scalar& coeffRef(Index row, Index col) 119 /** \returns a reference to the coefficient value at given index \a [all...] |
SparseBlock.h | 31 inline BlockImpl(XprType& xpr, Index i) 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) 39 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); } 40 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } 42 Index nonZeros() const 46 Index nnz = 0; 47 Index end = m_outerStart + m_outerSize.value() 520 inline StorageIndex index() const { return EvalIterator::index() - convert_index<StorageIndex>(IsRowMajor ? m_block.startCol() : m_block.startRow()); } function in class:Eigen::internal::unary_evaluator::InnerVectorInnerIterator 554 inline StorageIndex index() const { return convert_index<StorageIndex>(m_outerPos - (IsRowMajor ? m_eval.m_block.startCol() : m_eval.m_block.startRow())); } function in class:Eigen::internal::unary_evaluator::OuterVectorInnerIterator [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ |
BBSsupport.c | 32 @param DevOrder Pointer to buffer containing the BBS Index,
34 @param DevOrderCount Count of the BBS Index
54 UINTN Index;
77 Index = 0;
84 for (Index = 0; Index < BootOrderSize / sizeof (UINT16); Index++) {
86 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", BootOrder[Index]);
98 DeviceTypeArray[Index] = ((BBS_BBS_DEVICE_PATH *) BootOption->DevicePath)->DeviceType;
99 BbsIndexArray [Index] = ((LEGACY_BOOT_OPTION_BBS_DATA *) BootOption->LoadOptions)->BbsIndex; [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/ |
UpdatePage.c | 204 UINT16 Index;
210 for (Index = 0; Index < TerminalMenu.MenuNumber; Index++) {
211 NewMenuEntry = BOpt_GetMenuEntry (&TerminalMenu, Index);
219 (UINT16) (TERMINAL_OPTION_OFFSET + Index)
241 UINT16 Index;
248 for (Index = 0; Index < BootOptionMenu.MenuNumber; Index++) { [all...] |
BootMaintenance.c | 136 UINTN Index;
228 for (Index = 0; Index < MaxTextMode; Index++) {
229 Status = SimpleTextOut->QueryMode (SimpleTextOut, Index, &CurrentColumn, &CurrentRow);
235 Status = SimpleTextOut->SetMode (SimpleTextOut, Index);
249 if (Index == MaxTextMode) {
306 for (Index = 0; Index < HandleCount; Index++) { [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/ |
BaseExtractGuidedSectionLib.c | 173 UINT32 Index;
196 for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) {
197 if (CompareGuid (HandlerInfo->ExtractHandlerGuidTable + Index, SectionGuid)) {
201 HandlerInfo->ExtractDecodeHandlerTable [Index] = DecodeHandler;
202 HandlerInfo->ExtractGetInfoHandlerTable [Index] = GetInfoHandler;
267 UINT32 Index;
298 for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) { [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/ |
DxeExtractGuidedSectionLib.c | 178 UINT32 Index;
191 for (Index = 0; Index < mNumberOfExtractHandler; Index ++) {
192 if (CompareGuid (&mExtractHandlerGuidTable[Index], SectionGuid)) {
196 mExtractDecodeHandlerTable [Index] = DecodeHandler;
197 mExtractGetInfoHandlerTable [Index] = GetInfoHandler;
273 UINT32 Index;
290 for (Index = 0; Index < mNumberOfExtractHandler; Index ++) { [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/ |
PeiExtractGuidedSectionLib.c | 197 UINT32 Index;
221 for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) {
222 if (CompareGuid (HandlerInfo->ExtractHandlerGuidTable + Index, SectionGuid)) {
226 HandlerInfo->ExtractDecodeHandlerTable [Index] = DecodeHandler;
227 HandlerInfo->ExtractGetInfoHandlerTable [Index] = GetInfoHandler;
302 UINT32 Index;
333 for (Index = 0; Index < HandlerInfo->NumberOfExtractHandler; Index ++) { [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/ |
Measurement.c | 62 UINTN Index;
64 for (Index = 0; Index < sizeof(mVariableType)/sizeof(mVariableType[0]); Index++) {
65 if (StrCmp (VarName, mVariableType[Index].VariableName) == 0) {
66 return mVariableType[Index].VariableName;
85 UINTN Index;
87 for (Index = 0; Index < sizeof(mVariableType)/sizeof(mVariableType[0]); Index++) { [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/ |
MemoryPeim.c | 99 UINT8 Index;
166 for (Index = 0; Index < 2; Index++) {
167 MtrrSetting.Fixed.Mtrr[Index]=0x0606060606060606;
169 for (Index = 2; Index < 11; Index++) {
170 MtrrSetting.Fixed.Mtrr[Index]=0x0505050505050505;
176 Index = 0; [all...] |
/external/eigen/Eigen/src/Core/ |
Diagonal.h | 22 * \param DiagIndex the index of the sub/super diagonal. The default is 0 and it means the main diagonal. 24 * You can also use DynamicIndex so the index can be set at runtime. 29 * of a square matrix. It is the return type of MatrixBase::diagonal() and MatrixBase::diagonal(Index) and most of the 32 * \sa MatrixBase::diagonal(), MatrixBase::diagonal(Index) 73 explicit inline Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index) {} 78 inline Index rows() const 80 return m_index.value()<0 ? numext::mini<Index>(m_matrix.cols(),m_matrix.rows()+m_index.value()) 81 : numext::mini<Index>(m_matrix.rows(),m_matrix.cols()-m_index.value()); 85 inline Index cols() const { return 1; } 88 inline Index innerStride() cons 156 inline Index index() const function in class:Eigen::Diagonal [all...] |
DenseStorage.h | 188 EIGEN_INTERNAL_DENSE_STORAGE_CTOR_PLUGIN(Index size = Size) 195 EIGEN_INTERNAL_DENSE_STORAGE_CTOR_PLUGIN(Index size = Size) 203 EIGEN_DEVICE_FUNC DenseStorage(Index size, Index rows, Index cols) { 211 EIGEN_DEVICE_FUNC static Index rows(void) {return _Rows;} 212 EIGEN_DEVICE_FUNC static Index cols(void) {return _Cols;} 213 EIGEN_DEVICE_FUNC void conservativeResize(Index,Index,Index) {} [all...] |
/external/eigen/Eigen/src/plugins/ |
BlockMethods.h | 61 /// \sa class Block, block(Index,Index) 64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) 69 /// This is the const version of block(Index,Index,Index,Index). * [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/ |
BaseUefiTianoCustomDecompressLib.c | 137 UINT16 Index;
153 for (Index = 0; Index <= 16; Index++) {
154 Count[Index] = 0;
157 for (Index = 0; Index < NumOfChar; Index++) {
158 Count[BitLen[Index]]++;
164 for (Index = 1; Index <= 16; Index++) { [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockSparseMatrix.h | 63 typedef _Index Index; 107 typedef typename BlockSparseMatrixT::Index Index; 122 Index outerSize() const 126 Index cols() const 130 Index rows() const 134 Scalar coeff(Index row, Index col) 138 Scalar coeffRef(Index row, Index col [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Pei/ |
Tcg2Pei.c | 154 UINTN Index;
158 for (Index = 0; Index < DigestList->count; Index++) {
159 if (DigestList->digests[Index].hashAlg == HashAlg) {
162 &DigestList->digests[Index].digest,
243 UINTN Index;
246 for (Index = 0; Index < BufferSize; Index++) { [all...] |
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixVector.h | 17 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder, int Version=Specialized> 20 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version> 21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version> 29 static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 30 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const RhsScalar& alpha); 33 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version> 34 EIGEN_DONT_INLINE void triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
ParseInf.c | 393 INT32 Index;
405 for (Index = 0; AsciiGuidBuffer[Index] != '\0' && Index < 37; Index ++) {
406 if (Index == 8 || Index == 13 || Index == 18 || Index == 23) {
407 if (AsciiGuidBuffer[Index] != '-') { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/ |
VarCheckLib.c | 138 UINTN Index;
142 for (Index = 0; Index < sizeof (mVarCheckVariableWithWildcardName)/sizeof (mVarCheckVariableWithWildcardName[0]); Index++) {
143 if (CompareGuid (mVarCheckVariableWithWildcardName[Index].Guid, VendorGuid)){
145 if ((StrLen (VariableName) == StrLen (mVarCheckVariableWithWildcardName[Index].Name)) &&
146 (StrnCmp (VariableName, mVarCheckVariableWithWildcardName[Index].Name, NameLength) == 0) &&
151 return &mVarCheckVariableWithWildcardName[Index].VariableProperty;
154 if (StrCmp (mVarCheckVariableWithWildcardName[Index].Name, VariableName) == 0) {
155 return &mVarCheckVariableWithWildcardName[Index].VariableProperty; [all...] |
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Pei/PlatformInit/ |
MrcWrapper.c | 550 UINT8 Index;
622 for (Index = 0; Index < NumRanges; Index++)
624 DEBUG ((EFI_D_INFO, "Found 0x%x bytes at ", MemoryMap[Index].RangeLength));
625 DEBUG ((EFI_D_INFO, "0x%x.\n", MemoryMap[Index].PhysicalAddress));
627 if ((MemoryMap[Index].Type == DualChannelDdrMainMemory) &&
628 (MemoryMap[Index].PhysicalAddress + MemoryMap[Index].RangeLength < MAX_ADDRESS) &&
629 (MemoryMap[Index].PhysicalAddress >= PeiMemoryBaseAddress) && [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV2/ |
ArmGicV2Dxe.c | 213 UINTN Index;
217 for (Index = 0; Index < mGicNumInterrupts; Index++) {
218 GicV2DisableInterruptSource (&gHardwareInterruptV2Protocol, Index);
255 UINTN Index;
267 for (Index = 0; Index < mGicNumInterrupts; Index++) {
268 GicV2DisableInterruptSource (&gHardwareInterruptV2Protocol, Index);
[all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/ |
RuntimeMemAllocation.c | 86 UINTN Index;
111 for (Index = 0; Index < mRTPageTable->PageCount; Index++) {
112 mRTPageTable->Pages[Index].PageFlag = RT_PAGE_FREE;
113 mRTPageTable->Pages[Index].StartPageOffset = 0;
137 UINTN Index;
147 for (Index = StartPageIndex; Index <= (mRTPageTable->PageCount - ReqPages); ) {
152 if ((mRTPageTable->Pages[SubIndex + Index].PageFlag & RT_PAGE_USED) != 0) { [all...] |
/device/linaro/bootloader/edk2/DuetPkg/DxeIpl/ |
LegacyTable.c | 36 UINTN Index;
52 for (Index = 0; Index < 0x400 ; Index += 16) {
53 if (*(UINT64 *)(Address + Index) == EFI_ACPI_3_0_ROOT_SYSTEM_DESCRIPTION_POINTER_SIGNATURE) {
84 UINTN Index;
100 for (Index = 0; Index < 0x400 ; Index += 16) {
101 if (*(UINT32 *)(Address + Index) == MPS_PTR) { [all...] |