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

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/ArmPlatformPkg/Bds/
BootOption.c 53 UINTN Index;
67 for (Index = 0; Index < BootOrderSize / sizeof (UINT16); Index++) {
68 Status = BootOptionFromLoadOptionIndex (BootOrder[Index], &BdsLoadOption);
200 // Add the new Boot Index to the list
204 // Add the new index at the end
266 UINTN Index;
278 // Find the index of the removed entry
279 for (Index = 0; Index < BootOrderCount; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/
DxeSecurityManagementLib.c 220 UINT32 Index;
248 for (Index = 0; Index < mNumberOfSecurityHandler; Index ++) {
249 if ((mSecurityTable[Index].SecurityOperation & EFI_AUTH_OPERATION_IMAGE_REQUIRED) == EFI_AUTH_OPERATION_IMAGE_REQUIRED) {
274 Status = mSecurityTable[Index].SecurityHandler (
486 UINT32 Index;
506 for (Index = 0; Index < mNumberOfSecurity2Handler; Index ++) {
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointProduct.h 22 template<typename Scalar, typename Index, int UpLo, bool ConjLhs, bool ConjRhs>
23 struct selfadjoint_rank1_update<Scalar,Index,ColMajor,UpLo,ConjLhs,ConjRhs>
25 static void run(Index size, Scalar* mat, Index stride, const Scalar* vecX, const Scalar* vecY, const Scalar& alpha)
30 for (Index i=0; i<size; ++i)
38 template<typename Scalar, typename Index, int UpLo, bool ConjLhs, bool ConjRhs>
39 struct selfadjoint_rank1_update<Scalar,Index,RowMajor,UpLo,ConjLhs,ConjRhs>
41 static void run(Index size, Scalar* mat, Index stride, const Scalar* vecX, const Scalar* vecY, const Scalar& alpha)
43 selfadjoint_rank1_update<Scalar,Index,ColMajor,UpLo==Lower?Upper:Lower,ConjRhs,ConjLhs>::run(size,mat,stride,vecY,vecX,alpha)
    [all...]
  /external/eigen/Eigen/src/SVD/
SVDBase.h 56 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
118 Index nonzeroSingularValues() const
130 inline Index rank() const
136 Index i = m_nonzeroSingularValues-1;
184 : (std::max<Index>)(1,m_diagSize)*NumTraits<Scalar>::epsilon();
192 inline Index rows() const { return m_rows; }
193 inline Index cols() const { return m_cols; }
227 bool allocate(Index rows, Index cols, unsigned int computationOptions)
    [all...]
  /external/eigen/test/
eigensolver_complex.cpp 16 template<typename MatrixType> bool find_pivot(typename MatrixType::Scalar tol, MatrixType &diffs, Index col=0)
25 Index n = diffs.cols();
26 std::vector<std::pair<Index,Index> > transpositions;
27 for(Index i=col; i<n; ++i)
29 Index best_index(0);
41 transpositions.push_back(std::pair<Index,Index>(n-(i-col)-1,best_index));
44 for(Index k=transpositions.size()-1; k>=0; --k)
64 Index n = vec1.rows()
    [all...]
qr_fullpivoting.cpp 16 typedef typename MatrixType::Index Index;
18 Index max_size = EIGEN_TEST_MAX_SIZE;
19 Index min_size = numext::maxi(1,EIGEN_TEST_MAX_SIZE/10);
20 Index rows = internal::random<Index>(min_size,max_size),
21 cols = internal::random<Index>(min_size,max_size),
22 cols2 = internal::random<Index>(min_size,max_size),
23 rank = internal::random<Index>(1, (std::min)(rows, cols)-1);
59 Index size = rows
    [all...]
sparse.h 69 for(Index j=0; j<sparseMat.outerSize(); j++)
72 for(Index i=0; i<sparseMat.innerSize(); i++)
74 Index ai(i), aj(j);
111 template<typename Scalar,int Opt1,int Opt2,typename Index> void
114 DynamicSparseMatrix<Scalar, Opt2, Index>& sparseMat,
116 std::vector<Matrix<Index,2,1> >* zeroCoords = 0,
117 std::vector<Matrix<Index,2,1> >* nonzeroCoords = 0)
119 enum { IsRowMajor = DynamicSparseMatrix<Scalar,Opt2,Index>::IsRowMajor };
148 nonzeroCoords->push_back(Matrix<Index,2,1> (ai,aj));
152 zeroCoords->push_back(Matrix<Index,2,1> (ai,aj))
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorGenerator.h 29 typedef typename XprTraits::Index Index;
61 typedef typename Eigen::internal::traits<TensorGeneratorOp>::Index Index;
84 typedef typename XprType::Index Index;
126 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const
128 array<Index, NumDims> coords;
129 extract_coordinates(index, coords)
    [all...]
TensorDimensions.h 40 template<typename Index, std::size_t NumIndices, std::size_t n, bool RowMajor>
44 static inline Index run(array<Index, NumIndices> const& indices,
49 fixed_size_tensor_index_linearization_helper<Index, NumIndices, n - 1, RowMajor>::run(indices, dimensions);
53 template<typename Index, std::size_t NumIndices, bool RowMajor>
54 struct fixed_size_tensor_index_linearization_helper<Index, NumIndices, 0, RowMajor>
57 static inline Index run(array<Index, NumIndices> const&, const Dimensions&)
63 template<typename Index, std::size_t n>
67 static inline Index run(const Index index
    [all...]
  /system/bt/embdrv/sbc/encoder/srce/
sbc_dct.c 183 uint8_t Index, k;
186 for (Index = 0; Index < 8; Index++) {
189 /*temp += (int32_t)(((int64_t)M[(Index*strEncParams->numOfSubBands*2)+k] *
191 temp += (gas16AnalDCTcoeff8[(Index * 8 * 2) + k] * (pInVect[k] >> 16));
193 ((gas16AnalDCTcoeff8[(Index * 8 * 2) + k] * (pInVect[k] & 0xFFFF)) >>
196 pOutVect[Index] = temp;
252 uint8_t Index, k;
255 for (Index = 0; Index < 4; Index++)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFv/
GenFvInternalLib.c 193 UINTN Index;
260 for (Index = 0; Index < sizeof (mFvbAttributeName)/sizeof (CHAR8 *); Index ++) {
261 if ((mFvbAttributeName [Index] != NULL) && \
262 (FindToken (InfFile, ATTRIBUTES_SECTION_STRING, mFvbAttributeName [Index], 0, Value) == EFI_SUCCESS)) {
264 FvInfo->FvAttributes |= 1 << Index;
266 Error (NULL, 0, 2000, "Invalid parameter", "%s expected %s | %s", mFvbAttributeName [Index], TRUE_STRING, FALSE_STRING);
275 for (Index = 0; Index < sizeof (mFvbAlignmentName)/sizeof (CHAR8 *); Index ++) {
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciRomTable.c 311 UINTN Index;
323 for (Index = 0; Index < PciOptionRomTable->PciOptionRomCount; Index++) {
324 PciOptionRomDescriptor = &PciOptionRomTable->PciOptionRomDescriptors[Index];
363 UINTN Index;
370 for (Index = 0; Index < PciOptionRomTable->PciOptionRomCount; Index++) {
371 PciOptionRomDescriptor = &PciOptionRomTable->PciOptionRomDescriptors[Index];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ia32/
EbcSupport.c 120 UINTN Index;
134 for (Index = 0; Index < sizeof(mInstructionBufferTemplate) - sizeof(UINTN); Index++) {
135 if (*(UINTN *)&mInstructionBufferTemplate[Index] == EBC_ENTRYPOINT_SIGNATURE) {
136 *(UINTN *)&InstructionBuffer[Index] = EBC_ENTRYPOINT_SIGNATURE;
137 IndexOfEbcEntrypoint = Index;
139 if (*(UINTN *)&mInstructionBufferTemplate[Index] == EBC_LL_EBC_ENTRYPOINT_SIGNATURE) {
140 *(UINTN *)&InstructionBuffer[Index] = EBC_LL_EBC_ENTRYPOINT_SIGNATURE;
472 UINT32 Index;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/X64/
EbcSupport.c 429 UINT32 Index;
466 for (Index = 0; Index < sizeof(mInstructionBufferTemplate) - sizeof(UINTN); Index++) {
467 if (*(UINTN *)&Ptr[Index] == EBC_ENTRYPOINT_SIGNATURE) {
468 *(UINTN *)&Ptr[Index] = (UINTN)EbcEntryPoint;
470 if (*(UINTN *)&Ptr[Index] == EBC_LL_EBC_ENTRYPOINT_SIGNATURE) {
472 *(UINTN *)&Ptr[Index] = (UINTN)EbcLLExecuteEbcImageEntryPoint;
474 *(UINTN *)&Ptr[Index] = (UINTN)EbcLLEbcInterpret;
516 UINTN Index;
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 66 typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
94 explicit ComplexSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
188 * \sa compute(const MatrixType&, bool, Index)
228 ComplexSchur& setMaxIterations(Index maxIters)
235 Index getMaxIterations()
253 Index m_maxIters;
256 bool subdiagonalEntryIsNeglegible(Index i);
257 ComplexScalar computeShift(Index iu, Index iter)
    [all...]
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 72 typedef _Index Index;
75 typedef SparseMatrix<Scalar, ColMajor, Index> JacobianType;
140 Index *nfev,
173 void setMaxfev(Index maxfev) {m_maxfev = maxfev; }
194 Index maxfev() const {return m_maxfev; }
200 Index iterations() { return m_iter; }
203 Index nfev() { return m_nfev; }
206 Index njev() { return m_njev; }
253 Index n;
254 Index m;
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 124 inline Index rows() const { return m_pmat.rows(); }
128 inline Index cols() const { return m_pmat.cols();}
149 Index rank() const
197 Index rank = this->rank();
205 y.resize((std::max<Index>)(cols(),y.rows()),y.cols());
267 SparseMatrix<Scalar, RowMajor, Index> mQrm(this->m_Q);
287 Index m_nonzeropivots; // Number of non zero pivots found
315 Index n = mat.cols();
316 Index m = mat.rows();
317 Index diagSize = (std::min)(m,n)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
GuidChk.c 599 int Index;
627 for (Index = 0; Str[Index] != NULL; Index++) {
628 fprintf (stdout, "%s\n", Str[Index]);
851 int Index;
858 for (Index = 0; FileTypeTable[Index].Extension != NULL; Index++) {
859 if (_stricmp (FileTypeTable[Index].Extension, Extension) == 0) {
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118DxeUtil.h 46 UINT32 Index
53 UINT32 Index,
63 UINT32 Index
70 UINT32 Index,
79 UINT32 Index
85 UINT32 Index,
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
DriverConfiguration.c 130 UINTN Index;
151 for (Index = 0; Index < 4; Index++) {
152 gST->ConOut->OutputString (gST->ConOut, OptionString[Index]);
160 NewValue = (UINT8) (NewValue | (1 << Index));
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConsole.c 43 UINTN Index;
80 for (Index = 0; Index < HandleCount; Index++) {
81 Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiPciIoProtocolGuid, (VOID **) &PciIo);
95 VideoController = HandleBuffer[Index];
125 UINTN Index;
162 for (Index = 0; Index < EntryCount; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiIbft.c 177 UINTN Index;
184 for (Index = 0; Index < 4; Index++) {
185 V6->Addr[12 + Index] = V4->Addr[Index];
266 UINTN Index;
284 for (Index = 0; Index < HandleCount; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Start.c 125 UINTN Index;
157 for (Index = 0; Index < MAX_MAP_LENGTH; Index++) {
158 Snp->MapList[Index].VirtualAddress = 0;
159 Snp->MapList[Index].MapCookie = 0;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcSupport.c 157 UINTN Index;
160 Index = 63;
161 TempStr[Index] = 0;
164 Index--;
165 TempStr[Index] = (CHAR8) ('0' + (Number % 10));
169 AsciiStrCpyS (Buffer, BufferSize, &TempStr[Index]);
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/
Xen.c 74 @param XenLeaf CPUID index used to connect.
84 UINT32 Index;
95 for (Index = 0; Index < TransferPages; Index++) {
98 (Index << EFI_PAGE_SHIFT) + Index);

Completed in 927 milliseconds

<<21222324252627282930>>