/device/linaro/bootloader/edk2/MdePkg/Library/DxePalLibEsal/ |
DxePalLibEsal.c | 25 This is a wrapper function to make a PAL procedure call. Based on the Index value,
39 @param Index - The PAL procedure Index number.
50 IN UINT64 Index,
63 Index,
|
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtBlockIoDxe/ |
DriverDiagnostics.c | 136 UINTN Index;
161 for (Index = 0; SupportedLanguages[Index] != 0 && SupportedLanguages[Index] != ';'; Index++);
162 if ((AsciiStrnCmp(SupportedLanguages, Language, Index) == 0) && (Language[Index] == 0)) {
166 SupportedLanguages += Index;
|
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Include/Library/ |
IoApicLib.h | 23 If Index is >= 0x100, then ASSERT().
25 @param Index Specifies the I/O APIC register to read.
27 @return The 32-bit value read from the I/O APIC register specified by Index.
32 IN UINTN Index
38 If Index is >= 0x100, then ASSERT().
40 @param Index Specifies the I/O APIC register to write.
41 @param Value Specifies the value to write to the I/O APIC register specified by Index.
43 @return The 32-bit value written to I/O APIC register specified by Index.
48 IN UINTN Index,
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Config/ |
Tcg2ConfigPeim.c | 80 UINTN Index;
132 for (Index = 0; Index < sizeof(mTpmInstanceId)/sizeof(mTpmInstanceId[0]); Index++) {
133 if (TpmDevice == mTpmInstanceId[Index].TpmDevice) {
134 Size = sizeof(mTpmInstanceId[Index].TpmInstanceGuid);
135 Status = PcdSetPtrS (PcdTpmInstanceGuid, &Size, &mTpmInstanceId[Index].TpmInstanceGuid);
137 DEBUG ((EFI_D_INFO, "TpmDevice PCD: %g\n", &mTpmInstanceId[Index].TpmInstanceGuid));
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEConfig/ |
TrEEConfigPeim.c | 80 UINTN Index;
132 for (Index = 0; Index < sizeof(mTpmInstanceId)/sizeof(mTpmInstanceId[0]); Index++) {
133 if (TpmDevice == mTpmInstanceId[Index].TpmDevice) {
134 Size = sizeof(mTpmInstanceId[Index].TpmInstanceGuid);
135 Status = PcdSetPtrS (PcdTpmInstanceGuid, &Size, &mTpmInstanceId[Index].TpmInstanceGuid);
137 DEBUG ((EFI_D_INFO, "TpmDevice PCD: %g\n", &mTpmInstanceId[Index].TpmInstanceGuid));
|
/external/clang/lib/Sema/ |
TypeLocBuilder.h | 33 /// The index of the first occupied byte in the buffer. 34 size_t Index; 49 Index(InlineCapacity), NumBytesAtAlign4(0), NumBytesAtAlign8(0) 82 Index = Capacity; 109 size_t FullDataSize = Capacity - Index; 111 memcpy(DI->getTypeLoc().getOpaqueData(), &Buffer[Index], FullDataSize); 122 size_t FullDataSize = Capacity - Index; 124 memcpy(Mem, &Buffer[Index], FullDataSize); 145 return TypeLoc(T, &Buffer[Index]);
|
/external/eigen/Eigen/src/Core/ |
ReturnByValue.h | 63 EIGEN_DEVICE_FUNC inline Index rows() const { return static_cast<const Derived*>(this)->rows(); } 64 EIGEN_DEVICE_FUNC inline Index cols() const { return static_cast<const Derived*>(this)->cols(); } 72 const Unusable& coeff(Index) const { return *reinterpret_cast<const Unusable*>(this); } 73 const Unusable& coeff(Index,Index) const { return *reinterpret_cast<const Unusable*>(this); } 74 Unusable& coeffRef(Index) { return *reinterpret_cast<Unusable*>(this); } 75 Unusable& coeffRef(Index,Index) { return *reinterpret_cast<Unusable*>(this); }
|
CwiseNullaryOp.h | 44 <tr class="alt"><td>\c operator()(Index i)</td><td>if the procedural generation makes sense for vectors only and that it depends on the coefficient index \c i (e.g., linspace) </td></tr> 45 <tr ><td>\c operator()(Index i,Index j)</td><td>if the procedural generation depends on the matrix coordinates \c i, \c j (e.g., to generate a checkerboard with 0 and 1)</td></tr> 49 * See DenseBase::NullaryExpr(Index,const CustomNullaryOp&) for an example binding 68 CwiseNullaryOp(Index rows, Index cols, const NullaryOp& func = NullaryOp()) 78 EIGEN_STRONG_INLINE Index rows() const { return m_rows.value(); } 80 EIGEN_STRONG_INLINE Index cols() const { return m_cols.value(); } 87 const internal::variable_if_dynamic<Index, RowsAtCompileTime> m_rows [all...] |
/external/eigen/Eigen/src/QR/ |
ColPivHouseholderQR_LAPACKE.h | 51 Index rows = matrix.rows();\ 52 Index cols = matrix.cols();\ 55 Index size = m_qr.diagonalSize();\ 59 /*Index number_of_transpositions = 0;*/ \ 66 lapack_int lda = internal::convert_index<lapack_int,Index>(m_qr.outerStride()); \ 68 LAPACKE_##LAPACKE_PREFIX##geqp3( matrix_order, internal::convert_index<lapack_int,Index>(rows), internal::convert_index<lapack_int,Index>(cols), \ 75 for(Index i=0;i<size;i++) { \ 78 for(Index i=0;i<cols;i++) perm[i]--;\
|
HouseholderQR.h | 78 HouseholderQR(Index rows, Index cols) 205 inline Index rows() const { return m_qr.rows(); } 206 inline Index cols() const { return m_qr.cols(); } 260 Index rows = mat.rows(); 261 Index cols = mat.cols(); 262 Index size = (std::min)(rows,cols); 274 for(Index k = 0; k < size; ++k) 276 Index remainingRows = rows - k; 277 Index remainingCols = cols - k - 1 [all...] |
/external/eigen/blas/ |
Rank2Update.h | 18 template<typename Scalar, typename Index, int UpLo> 21 static void run(Index size, Scalar* mat, Index stride, const Scalar* u, const Scalar* v, Scalar alpha) 24 for (Index i=0; i<size; ++i) 36 template<typename Scalar, typename Index, int UpLo> 39 static void run(Index size, Scalar* mat, const Scalar* u, const Scalar* v, Scalar alpha) 42 Index offset = 0; 43 for (Index i=0; i<size; ++i)
|
/external/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
DwarfStringPoolEntry.h | 23 unsigned Index; 42 unsigned getIndex() const { return I->second.Index; }
|
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/ |
PxeBcDhcp4.c | 19 // This is a map from the interested DHCP4 option tags' index to the tag value.
224 @return Index The count of the built-in options.
235 UINT32 Index;
239 Index = 0;
246 OptList[Index]->OpCode = PXEBC_DHCP4_TAG_MSG_TYPE;
247 OptList[Index]->Length = 1;
248 OptEnt.Mesg = (PXEBC_DHCP4_OPTION_MESG *) OptList[Index]->Data;
250 Index++;
251 OptList[Index] = GET_NEXT_DHCP_OPTION (OptList[Index - 1]); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/ |
Print.c | 159 UINTN Index;
223 for (Index = 0; UnicodeWeight[Index] != 0; Index++) {
224 if (UnicodeWeight[Index] == CHAR_BACKSPACE ||
225 UnicodeWeight[Index] == CHAR_LINEFEED ||
226 UnicodeWeight[Index] == CHAR_CARRIAGE_RETURN) {
227 UnicodeWeight[Index] = 0;
296 for (Index = 0; Index < BufferLen; Index++) { [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU.h | 47 * SparseLU<SparseMatrix<scalar, ColMajor>, COLAMDOrdering<Index> > solver; 132 inline Index rows() const { return m_mat.rows(); } 133 inline Index cols() const { return m_mat.cols(); } 229 for(Index j = 0; j < B.cols(); ++j) 237 for (Index j = 0; j < B.cols(); ++j) 261 for (Index j = 0; j < this->cols(); ++j) 265 if(it.index() == j) 290 for (Index j = 0; j < this->cols(); ++j) 313 Index det = 1; 316 for (Index j = 0; j < this->cols(); ++j [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorConvolution.h | 24 template <typename Index, typename InputDims, int NumKernelDims, int Layout> 27 IndexMapper(const InputDims& input_dims, const array<Index, NumKernelDims>& kernel_dims, 28 const array<Index, NumKernelDims>& indices) { 30 array<Index, NumDims> dimensions = input_dims; 32 const Index index = indices[i]; local 33 const Index input_dim = input_dims[index]; 34 const Index kernel_dim = kernel_dims[i]; 35 const Index result_dim = input_dim - kernel_dim + 1 65 const Index index = i + offset; local 336 const Index index = op.indices()[i]; local 355 const Index index = op.indices()[i]; local 782 const Index index = op.indices()[i]; local [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/ |
TrEEDxe.c | 184 @param[in] PCRIndex TPM PCR index
215 UINTN Index;
216 for (Index = 0; Index < Size; Index++) {
217 DEBUG ((EFI_D_INFO, "%02x", (UINTN)Data[Index]));
235 UINTN Index;
243 for (Index = 0; Index < Count; Index++) { [all...] |