/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/ |
Callback.c | 200 UINTN Index;
235 for (Index = 0; Index < MAX_MAP_LENGTH; Index++) {
236 if (Snp->MapList[Index].VirtualAddress == 0) {
241 if (Index >= MAX_MAP_LENGTH) {
247 Snp->MapList[Index].VirtualAddress = (EFI_PHYSICAL_ADDRESS) CpuAddr;
255 &(Snp->MapList[Index].MapCookie)
259 Snp->MapList[Index].VirtualAddress = 0;
291 UINT16 Index;
[all...] |
/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/ |
MpService.c | 137 UINTN Index;
141 for (Index = mMaxNumberOfCpus; Index-- > 0;) {
142 if (Index != BspIndex && mSmmMpSyncData->CpuData[Index].Present) {
143 ReleaseSemaphore (&mSmmMpSyncData->CpuData[Index].Run);
162 UINTN Index;
174 for (Index = mMaxNumberOfCpus; Index-- > 0;) {
175 if (!CpuData[Index].Present && ProcessorInfo[Index].ProcessorId != INVALID_APIC_ID) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/ |
Console.c | 213 UINTN Index;
222 Index = (Low + High) >> 1;
223 Item = &(mUnicodeWidthTable[Index]);
224 if (Index == 0) {
233 Low = Index + 1;
234 } else if (UnicodeChar <= mUnicodeWidthTable[Index - 1].WChar) {
235 High = Index - 1;
238 // Index - 1 < UnicodeChar <= Index. Found
|
/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/X64/ |
SmmFuncsArch.c | 32 UINTN Index;
48 for (Index = 0; Index < gSmmCpuPrivate->SmmCoreEntryContext.NumberOfCpus; Index++) {
49 CopyMem (GdtTssTables + GdtTableStepSize * Index, (VOID*)(UINTN)gcSmiGdtr.Base, gcSmiGdtr.Limit + 1 + TSS_SIZE);
54 TssBase = (UINTN)(GdtTssTables + GdtTableStepSize * Index + gcSmiGdtr.Limit + 1);
64 *(UINTN *)(TssBase + TSS_X64_IST1_OFFSET) = (mSmmStackArrayBase + EFI_PAGE_SIZE + Index * mSmmStackSize);
|
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaBase.cs | 17 public uint Index;
18 public void Init() { Index = 0; }
21 if (Index < 4) Index = 0;
22 else if (Index < 10) Index -= 3;
23 else Index -= 6;
25 public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); }
26 public void UpdateRep() { Index = (uint)(Index < 7 ? 8 : 11); } [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/ |
Dhcp4Option.c | 170 INTN Index;
218 for (Index = 0; Index < Occur; Index++) {
219 if ((OptValue[Index] != 0) && (OptValue[Index] != 1)) {
501 UINT8 Index;
506 Index = OptCount[Tag].Index;
510 if (Options[Index].Data == NULL) { [all...] |
/device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/ |
Edid.c | 116 UINTN Index;
121 for (Index = 0; Index < EDID_BLOCK_SIZE * 2; Index ++) {
122 I2cReadByte (Private->PciIo, 0xa0, (UINT8)Index, &EdidData[Index]);
130 for (Index = 0; Index < EDID_BLOCK_SIZE * 2; Index ++, ValidEdid ++) {
136 if (Index == 256) { [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_Utils.h | 21 void SparseLUImpl<Scalar,StorageIndex>::countnz(const Index n, Index& nnzL, Index& nnzU, GlobalLU_t& glu) 25 Index nsuper = (glu.supno)(n); 26 Index jlen; 27 Index i, j, fsupc; 52 void SparseLUImpl<Scalar,StorageIndex>::fixupL(const Index n, const IndexVector& perm_r, GlobalLU_t& glu) 54 Index fsupc, i, j, k, jstart; 57 Index nsuper = (glu.supno)(n);
|
SparseLU_copy_to_ucol.h | 50 Index SparseLUImpl<Scalar,StorageIndex>::copy_to_ucol(const Index jcol, const Index nseg, IndexVector& segrep, 53 Index ksub, krep, ksupno; 55 Index jsupno = glu.supno(jcol); 58 Index k = nseg - 1, i; 60 Index kfnz, isub, segsize; 61 Index new_next,irow; 62 Index fsupc, mem;
|
SparseLU_heap_relax_snode.h | 46 void SparseLUImpl<Scalar,StorageIndex>::heap_relax_snode (const Index n, IndexVector& et, const Index relax_columns, IndexVector& descendants, IndexVector& relax_end) 58 for (Index i = 0; i < n; ++i) 67 Index j, parent; 76 Index snode_start; // beginning of a snode 78 Index nsuper_et_post = 0; // Number of relaxed snodes in postordered etree 79 Index nsuper_et = 0; // Number of relaxed snodes in the original etree 93 for (Index i = snode_start; i <= j; ++i) 104 for (Index i = snode_start; i <= j; ++i)
|
SparseLU_pivotL.h | 60 Index SparseLUImpl<Scalar,StorageIndex>::pivotL(const Index jcol, const RealScalar& diagpivotthresh, IndexVector& perm_r, IndexVector& iperm_c, Index& pivrow, GlobalLU_t& glu) 63 Index fsupc = (glu.xsup)((glu.supno)(jcol)); // First column in the supernode containing the column jcol 64 Index nsupc = jcol - fsupc; // Number of columns in the supernode portion, excluding jcol; nsupc >=0 65 Index lptr = glu.xlsub(fsupc); // pointer to the starting location of the row subscripts for this supernode portion 66 Index nsupr = glu.xlsub(fsupc+1) - lptr; // Number of rows in the supernode 67 Index lda = glu.xlusup(fsupc+1) - glu.xlusup(fsupc); // leading dimension 73 Index diagind = iperm_c(jcol); // diagonal index [all...] |
/external/eigen/blas/ |
PackedSelfadjointProduct.h | 18 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjLhs, bool ConjRhs> 21 template<typename Scalar, typename Index, int UpLo, bool ConjLhs, bool ConjRhs> 22 struct selfadjoint_packed_rank1_update<Scalar,Index,ColMajor,UpLo,ConjLhs,ConjRhs> 25 static void run(Index size, Scalar* mat, const Scalar* vec, RealScalar alpha) 31 for (Index i=0; i<size; ++i) 41 template<typename Scalar, typename Index, int UpLo, bool ConjLhs, bool ConjRhs> 42 struct selfadjoint_packed_rank1_update<Scalar,Index,RowMajor,UpLo,ConjLhs,ConjRhs> 45 static void run(Index size, Scalar* mat, const Scalar* vec, RealScalar alpha) 47 selfadjoint_packed_rank1_update<Scalar,Index,ColMajor,UpLo==Lower?Upper:Lower,ConjRhs,ConjLhs>::run(size,mat,vec,alpha);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
ObjectCodeEmitter.cpp | 119 /// getJumpTableEntryAddress - Return the address of the jump table with index 120 /// 'Index' in the function that last called initJumpTableInfo. 121 uintptr_t ObjectCodeEmitter::getJumpTableEntryAddress(unsigned Index) const { 122 assert(JTLocations.size() > Index && "JT not emitted!"); 123 return JTLocations[Index]; 126 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in 128 uintptr_t ObjectCodeEmitter::getConstantPoolEntryAddress(unsigned Index) const { 129 assert(CPLocations.size() > Index && "CP not emitted!"); 130 return CPLocations[Index]; 133 /// getConstantPoolEntrySection - Return the section of the 'Index' entry i [all...] |
/external/eigen/Eigen/src/Core/products/ |
SelfadjointMatrixVector_BLAS.h | 46 template<typename Scalar, typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs> 48 selfadjoint_matrix_vector_product<Scalar,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs,BuiltIn> {}; 51 template<typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs> \ 52 struct selfadjoint_matrix_vector_product<Scalar,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs,Specialized> { \ 54 Index size, const Scalar* lhs, Index lhsStride, \ 60 selfadjoint_matrix_vector_product<Scalar,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs,BuiltIn>::run( \ 63 selfadjoint_matrix_vector_product_symv<Scalar,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs>::run( \ 75 template<typename Index, int StorageOrder, int UpLo, bool ConjugateLhs, bool ConjugateRhs> \ 76 struct selfadjoint_matrix_vector_product_symv<EIGTYPE,Index,StorageOrder,UpLo,ConjugateLhs,ConjugateRhs> [all...] |
/external/eigen/test/ |
jacobi.cpp | 17 typedef typename MatrixType::Index Index; 18 Index rows = m.rows(); 19 Index cols = m.cols(); 35 Index p = internal::random<Index>(0, rows-1); 36 Index q; 38 q = internal::random<Index>(0, rows-1); 48 Index p = internal::random<Index>(0, cols-1) [all...] |
/external/llvm/include/llvm/DebugInfo/CodeView/ |
MemoryTypeTableBuilder.h | 28 uint32_t Index = TypeIndex::FirstNonSimpleIndex; 31 Func(TypeIndex(Index), R); 32 ++Index;
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Bitcode/ |
BitcodeWriter.h | 41 /// If \c Index is supplied, the bitcode will contain the summary index 54 const ModuleSummaryIndex *Index = nullptr, 67 /// If \c Index is supplied, the bitcode will contain the summary index 81 const ModuleSummaryIndex *Index = nullptr, 85 /// Write the specified module summary index to the given raw output stream, 87 /// writing the combined index file for ThinLTO. When writing a subset of the 88 /// index for a distributed backend, provide the \p ModuleToSummariesForIndex 90 void WriteIndexToFile(const ModuleSummaryIndex &Index, raw_ostream &Out [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
TypeDatabase.h | 26 /// Gets the type index for the next type record. 29 /// Records the name of a type, and reserves its type index. 35 StringRef getTypeName(TypeIndex Index) const; 37 const CVType &getTypeRecord(TypeIndex Index) const; 39 bool containsTypeIndex(TypeIndex Index) const; 47 /// greater than 0x1000 are user defined. Subtract 0x1000 from the index to 48 /// index into this vector.
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/ |
NativeEnumModules.h | 25 uint32_t Index = 0); 28 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override; 36 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Bitcode/ |
BitcodeWriter.h | 41 /// If \c Index is supplied, the bitcode will contain the summary index 54 const ModuleSummaryIndex *Index = nullptr, 67 /// If \c Index is supplied, the bitcode will contain the summary index 81 const ModuleSummaryIndex *Index = nullptr, 85 /// Write the specified module summary index to the given raw output stream, 87 /// writing the combined index file for ThinLTO. When writing a subset of the 88 /// index for a distributed backend, provide the \p ModuleToSummariesForIndex 90 void WriteIndexToFile(const ModuleSummaryIndex &Index, raw_ostream &Out [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
TypeDatabase.h | 26 /// Gets the type index for the next type record. 29 /// Records the name of a type, and reserves its type index. 35 StringRef getTypeName(TypeIndex Index) const; 37 const CVType &getTypeRecord(TypeIndex Index) const; 39 bool containsTypeIndex(TypeIndex Index) const; 47 /// greater than 0x1000 are user defined. Subtract 0x1000 from the index to 48 /// index into this vector.
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/ |
NativeEnumModules.h | 25 uint32_t Index = 0); 28 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override; 36 uint32_t Index;
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Bitcode/ |
BitcodeWriter.h | 41 /// If \c Index is supplied, the bitcode will contain the summary index 54 const ModuleSummaryIndex *Index = nullptr, 67 /// If \c Index is supplied, the bitcode will contain the summary index 81 const ModuleSummaryIndex *Index = nullptr, 85 /// Write the specified module summary index to the given raw output stream, 87 /// writing the combined index file for ThinLTO. When writing a subset of the 88 /// index for a distributed backend, provide the \p ModuleToSummariesForIndex 90 void WriteIndexToFile(const ModuleSummaryIndex &Index, raw_ostream &Out [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/ |
TypeDatabase.h | 26 /// Gets the type index for the next type record. 29 /// Records the name of a type, and reserves its type index. 35 StringRef getTypeName(TypeIndex Index) const; 37 const CVType &getTypeRecord(TypeIndex Index) const; 39 bool containsTypeIndex(TypeIndex Index) const; 47 /// greater than 0x1000 are user defined. Subtract 0x1000 from the index to 48 /// index into this vector.
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/ |
NativeEnumModules.h | 25 uint32_t Index = 0); 28 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override; 36 uint32_t Index;
|