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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
CpuIdEx.c 20 IN UINT32 Index,
29 mov eax, Index
50 mov eax, Index
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
CpuId.c 18 Executes the CPUID instruction with EAX set to the value specified by Index.
19 This function always returns Index.
26 @param Index The 32-bit value to load into EAX prior to invoking the CPUID
37 @return Index.
43 IN UINT32 Index,
51 mov eax, Index
71 mov eax, Index
CpuIdEx.c 18 Executes the CPUID instruction with EAX set to the value specified by Index
20 Index. This function is only available on IA-32 and x64.
27 @param Index The 32-bit value to load into EAX prior to invoking the
44 @return Index.
50 IN UINT32 Index,
59 mov eax, Index
80 mov eax, Index
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenHypercallLib/
XenHypercall.c 26 IN UINT32 Index
33 Parameter.index = Index;
39 (INT64)Error, Index));
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/MemoryOverwriteControl/
TcgMor.c 90 UINTN Index;
173 for (Index = 0; Index < Len; Index++) {
174 if (Data->SupportedSecurityProtocol[Index] == SECURITY_PROTOCOL_TCG) {
183 if (Data->SupportedSecurityProtocol[Index] == SECURITY_PROTOCOL_IEEE1667) {
256 UINTN Index;
276 for (Index = 0; Index < HandleCount; Index ++) {
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 21 template<typename Scalar, typename Index, typename UType, typename VType, int UpLo>
24 template<typename Scalar, typename Index, typename UType, typename VType>
25 struct selfadjoint_rank2_update_selector<Scalar,Index,UType,VType,Lower>
27 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, const Scalar& alpha)
29 const Index size = u.size();
30 for (Index i=0; i<size; ++i)
39 template<typename Scalar, typename Index, typename UType, typename VType>
40 struct selfadjoint_rank2_update_selector<Scalar,Index,UType,VType,Upper>
42 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, const Scalar& alpha)
44 const Index size = u.size()
    [all...]
TriangularSolverMatrix_BLAS.h 42 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
43 struct triangular_solve_matrix<EIGTYPE,Index,OnTheLeft,Mode,Conjugate,TriStorageOrder,ColMajor> \
52 Index size, Index otherSize, \
53 const EIGTYPE* _tri, Index triStride, \
54 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
95 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
96 struct triangular_solve_matrix<EIGTYPE,Index,OnTheRight,Mode,Conjugate,TriStorageOrder,ColMajor> \
105 Index size, Index otherSize,
    [all...]
  /external/eigen/Eigen/src/Core/util/
BlasUtil.h 21 template<typename LhsScalar, typename RhsScalar, typename Index, typename DataMapper, int mr, int nr, bool ConjugateLhs=false, bool ConjugateRhs=false>
24 template<typename Scalar, typename Index, typename DataMapper, int nr, int StorageOrder, bool Conjugate = false, bool PanelMode=false>
27 template<typename Scalar, typename Index, typename DataMapper, int Pack1, int Pack2, int StorageOrder, bool Conjugate = false, bool PanelMode = false>
31 typename Index,
37 template<typename Index,
136 template<typename Scalar, typename Index>
141 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Scalar operator()(Index i) const {
145 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Packet load(Index i) const {
150 EIGEN_DEVICE_FUNC bool aligned(Index i) const {
158 template<typename Scalar, typename Index, int AlignmentType
    [all...]
  /external/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
25 /// Class to build a module summary index for the given Module, possibly from
28 /// The index being built
29 std::unique_ptr<ModuleSummaryIndex> Index;
30 /// The module for which we are building an index
37 /// Constructor that builds an index for the given Module. An optional
43 /// Get a reference to the index owned by builder
44 ModuleSummaryIndex &getIndex() const { return *Index; }
46 /// Take ownership of the built index
47 std::unique_ptr<ModuleSummaryIndex> takeIndex() { return std::move(Index); }
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamArray.h 207 const T &operator[](uint32_t Index) const {
208 assert(Index < size());
209 uint32_t Off = Index * sizeof(T);
237 FixedStreamArrayIterator(const FixedStreamArray<T> &Array, uint32_t Index)
238 : Array(Array), Index(Index) {}
242 return Index == R.Index;
249 const T &operator*() const { return Array[Index]; }
252 assert(Index < Array.size())
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
FunctionImportUtils.h 30 /// Module summary index passed in for function importing/exporting handling.
74 Module &M, const ModuleSummaryIndex &Index,
76 : M(M), ImportIndex(Index), GlobalsToImport(GlobalsToImport) {
95 Module &M, const ModuleSummaryIndex &Index,
  /external/mesa3d/src/mesa/program/
programopt.c 91 newInst[i].DstReg.Index = VARYING_SLOT_POS;
94 newInst[i].SrcReg[0].Index = mvpRef[i];
97 newInst[i].SrcReg[1].Index = VERT_ATTRIB_POS;
162 newInst[0].DstReg.Index = hposTemp;
165 newInst[0].SrcReg[0].Index = VERT_ATTRIB_POS;
168 newInst[0].SrcReg[1].Index = mvpRef[0];
174 newInst[i].DstReg.Index = hposTemp;
177 newInst[i].SrcReg[0].Index = VERT_ATTRIB_POS;
180 newInst[i].SrcReg[1].Index = mvpRef[i];
183 newInst[i].SrcReg[2].Index = hposTemp
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 1 //===- ModuleSummaryAnalysis.h - Module summary index builder ---*- C++ -*-===//
51 Optional<ModuleSummaryIndex> Index;
58 /// Get the index built by pass
59 ModuleSummaryIndex &getIndex() { return *Index; }
60 const ModuleSummaryIndex &getIndex() const { return *Index; }
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/Flash/
Flash.c 151 UINTN Index;
164 for (Index = 0; Index < sizeof(PartInfo); Index++) {
165 PartInfo[Index] = MmioRead16(GPMC_NAND_DATA_0);
169 for (Index = 0; Index < sizeof(gNandPartInfoTable)/sizeof(NAND_PART_INFO_TABLE); Index++) {
170 if (gNandPartInfoTable[Index].ManufactureId == PartInfo[0] && gNandPartInfoTable[Index].DeviceId == PartInfo[1]) {
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PlatformBdsLib/
BdsPlatform.c 156 UINTN Index;
222 for (Index = 0; Index < GopHandleCount; Index++) {
223 Status = gBS->HandleProtocol (GopHandleBuffer[Index], &gEfiDevicePathProtocolGuid, (VOID*)&TempDevicePath);
354 UINTN Index;
373 for (Index = 0; Index < HandleCount; Index++) {
374 Status = gBS->HandleProtocol (HandleBuffer[Index], Id, &Instance);
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/Flash/
Flash.c 151 UINTN Index;
164 for (Index = 0; Index < sizeof(PartInfo); Index++) {
165 PartInfo[Index] = MmioRead16(GPMC_NAND_DATA_0);
169 for (Index = 0; Index < sizeof(gNandPartInfoTable)/sizeof(NAND_PART_INFO_TABLE); Index++) {
170 if (gNandPartInfoTable[Index].ManufactureId == PartInfo[0] && gNandPartInfoTable[Index].DeviceId == PartInfo[1]) {
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/AcpiPlatform/
MadtPlatform.c 145 UINT8 Index;
151 for (Index = 0; Index < EFI_ACPI_INTERRUPT_SOURCE_OVERRIDE_COUNT_MAX; Index ++ ) {
152 if (MadtConfigData->MadtInterruptSetting[Index].Enable != 0) {
156 for (Index = 0; Index < NumberOfCPUs; Index ++ ) {
157 if (0 != (MadtConfigData->MadtLocalApicSetting.NmiEnabelApicIdMask & (1 << Index))) {
190 UINTN Index;
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorPatch.h 29 typedef typename XprTraits::Index Index;
61 typedef typename Eigen::internal::traits<TensorPatchOp>::Index Index;
84 typedef typename XprType::Index Index;
86 typedef DSizes<Index, NumDims> Dimensions;
104 Index num_patches = 1;
155 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) cons
    [all...]

Completed in 1466 milliseconds

<<11121314151617181920>>