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

<<21222324252627282930>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
TrigramIndex.h 17 // index (trigram -> list of rules with it) and then count trigrams in the query
42 /// Inserts a new Regex into the index.
60 // Index holds a list of rules indices for each trigram. The same indices
65 std::unordered_map<unsigned, SmallVector<size_t, 4>> Index{256};
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAEnumDebugStreams.h 26 ChildTypePtr getChildAtIndex(uint32_t Index) const override;
DIAEnumLineNumbers.h 25 ChildTypePtr getChildAtIndex(uint32_t Index) const override;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
IPDBDataStream.h 31 virtual llvm::Optional<RecordType> getItemAtIndex(uint32_t Index) const = 0;
IPDBEnumChildren.h 27 virtual ChildTypePtr getChildAtIndex(uint32_t Index) const = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
TrigramIndex.h 17 // index (trigram -> list of rules with it) and then count trigrams in the query
42 /// Inserts a new Regex into the index.
60 // Index holds a list of rules indices for each trigram. The same indices
65 std::unordered_map<unsigned, SmallVector<size_t, 4>> Index{256};
  /system/update_engine/payload_generator/
graph_types.h 56 index(-1),
71 std::vector<Vertex>::size_type index; member in struct:chromeos_update_engine::Vertex
77 typedef std::vector<Vertex>::size_type Index;
78 static const Vertex::Index kInvalidIndex;
83 typedef std::pair<Vertex::Index, Vertex::Index> Edge;
  /external/eigen/Eigen/src/SVD/
BDCSVD.h 99 typedef Array<Index,1,Dynamic> ArrayXi;
118 BDCSVD(Index rows, Index cols, unsigned int computationOptions = 0)
174 void allocate(Index rows, Index cols, unsigned int computationOptions);
175 void divide(Index firstCol, Index lastCol, Index firstRowW, Index firstColW, Index shift)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
InputHandler.c 74 UINTN Index;
143 Index = (GetStringWidth (StringPtr) / 2) - DimensionsWidth + 2;
145 Index = 0;
152 for (Count = 0; Index + 1 < GetStringWidth (StringPtr) / 2; Index++, Count++) {
153 BufferedString[Count] = StringPtr[Index];
196 for (Index = CurrentCursor; StringPtr[Index] != CHAR_NULL; Index++) {
197 StringPtr[Index] = StringPtr[Index + 1];
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Bds/
FirmwareVolume.c 36 UINTN Index;
55 for (Index = 0; Index < NoHandles; Index++) {
56 Status = gBS->HandleProtocol (Buffer[Index], &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
71 *FvHandle = Buffer[Index];
91 *FvHandle = Buffer[Index];
BdsEntry.c 71 UINTN Index;
146 for (Index = 0; Index < HandleCount; Index++) {
147 gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
162 for (Index = 0; Index < HandleCount; Index++) {
164 FileSystemDevicePath = DevicePathFromHandle(HandleBuffer[Index]);
176 LoadImageDevicePath = FileDevicePath(HandleBuffer[Index], L"Ebl.efi");
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/DebugPeCoffExtraActionLib/
DebugPeCoffExtraActionLib.c 43 UINTN Index;
51 for (Index = 9, Index2 = 0; (Index < (Size + 9)) && (Ptr[Index] != '\0'); Index++, Index2++) {
52 Temp[Index2] = Ptr[Index];
58 Temp[Index2 - 1] = Ptr[Index];
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
XPressRich3.c 68 UINT32 Index;
132 for (Index = 0; Index < 1000; Index++) {
150 for (Index = 0; Index < 1000; Index++) {
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Bds/
FirmwareVolume.c 36 UINTN Index;
55 for (Index = 0; Index < NoHandles; Index++) {
56 Status = gBS->HandleProtocol (Buffer[Index], &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
71 *FvHandle = Buffer[Index];
91 *FvHandle = Buffer[Index];
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiPerformanceLib/
PerformanceLib.c 91 INTN Index;
200 for (Index = PerfHobData->NumberOfEntries-1; Index >= 0; Index--) {
203 if (PerfHobData->Log[Index].DescriptionString[Index2] == 0) {
204 Log = &(PerfHobData->Log[Index]);
207 if (PerfHobData->Log[Index].DescriptionString[Index2] !=
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
Perf.c 81 INTN Index;
193 for (Index = PerfHobData->NumberOfEntries-1; Index >= 0; Index--) {
196 if (PerfHobData->Log[Index].DescriptionString[Index2] == 0) {
197 Log = &(PerfHobData->Log[Index]);
200 if (PerfHobData->Log[Index].DescriptionString[Index2] !=
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
UefiShellDebug1CommandsLib.c 159 UINTN Index;
168 for (Index = 0; Index < Size; Index += 1) {
169 TempByte = Data[Index];
170 Val[Index * 3 + 0] = Hex[TempByte >> 4];
171 Val[Index * 3 + 1] = Hex[TempByte & 0xF];
172 Val[Index * 3 + 2] = (CHAR8) ((Index == 7) ? '-' : ' ');
173 Str[Index] = (CHAR8) ((TempByte < ' ' || TempByte > 'z') ? '.' : TempByte);
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixMatrix_BLAS.h 44 template <typename Index, \
47 struct product_selfadjoint_matrix<EIGTYPE,Index,LhsStorageOrder,true,ConjugateLhs,RhsStorageOrder,false,ConjugateRhs,ColMajor> \
51 Index rows, Index cols, \
52 const EIGTYPE* _lhs, Index lhsStride, \
53 const EIGTYPE* _rhs, Index rhsStride, \
54 EIGTYPE* res, Index resStride, \
91 template <typename Index, \
94 struct product_selfadjoint_matrix<EIGTYPE,Index,LhsStorageOrder,true,ConjugateLhs,RhsStorageOrder,false,ConjugateRhs,ColMajor> \
97 Index rows, Index cols,
    [all...]
  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 37 MatrixBase<Derived>::eulerAngles(Index a0, Index a1, Index a2) const
48 const Index odd = ((a0+1)%3 == a1) ? 0 : 1;
49 const Index i = a0;
50 const Index j = (a0 + 1 + odd)%3;
51 const Index k = (a0 + 2 - odd)%3;
  /external/eigen/Eigen/src/SparseLU/
SparseLU_gemm_kernel.h 26 void sparselu_gemm(Index m, Index n, Index d, const Scalar* A, Index lda, const Scalar* B, Index ldb, Scalar* C, Index ldc)
40 Index d_end = (d/RK)*RK; // number of columns of A (rows of B) suitable for full register blocking
41 Index n_end = (n/RN)*RN; // number of columns of B-C suitable for processing RN columns at once
42 Index i0 = internal::first_default_aligned(A,m);
47 for(Index i=0; i<i0; ++i
    [all...]
  /external/eigen/test/
determinant.cpp 19 typedef typename MatrixType::Index Index;
20 Index size = m.rows();
30 Index i = internal::random<Index>(0, size-1);
31 Index j;
33 j = internal::random<Index>(0, size-1);
real_qz.cpp 21 typedef typename MatrixType::Index Index;
24 Index dim = m.cols();
31 Index k=internal::random<Index>(0, dim-1);
54 for (Index i=0; i<A.cols(); i++)
55 for (Index j=0; j<i; j++) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorContraction.h 33 typedef typename promote_index_type<typename traits<LhsXprType>::Index,
34 typename traits<RhsXprType>::Index>::type Index;
83 typedef typename Eigen::internal::traits<TensorContractionOp>::Index Index;
118 typedef typename XprType::Index Index;
146 typedef array<Index, ContractDims> contract_t;
147 typedef array<Index, LDims - ContractDims> left_nocontract_t;
148 typedef array<Index, RDims - ContractDims> right_nocontract_t
    [all...]
  /external/pdfium/third_party/bigint/
BigUnsignedInABase.cc 9 BigUnsignedInABase::BigUnsignedInABase(const Digit *d, Index l, Base base)
16 for (Index i = 0; i < l; i++)
52 Index digitNum = 0;
70 Index digitNum = len;
87 // `s.length()' is a `size_t', while `len' is a `NumberlikeArray::Index',
89 len = Index(s.length());
92 Index digitNum, symbolNumInString;
119 Index digitNum, symbolNumInString;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
EfiCompressor.c 36 Py_ssize_t Index;
65 for (Index = 0; Index < SegNum; ++Index) {
69 Len = SrcData->ob_type->tp_as_buffer->bf_getreadbuffer((PyObject *)SrcData, Index, &BufSeg);
113 Py_ssize_t Index;
142 for (Index = 0; Index < SegNum; ++Index) {
146 Len = SrcData->ob_type->tp_as_buffer->bf_getreadbuffer((PyObject *)SrcData, Index, &BufSeg);
    [all...]

Completed in 3049 milliseconds

<<21222324252627282930>>