HomeSort by relevance Sort by last modified time
    Searched defs:Sparse (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Ppi/BaseMemoryTest/
BaseMemoryTest.h 37 Sparse,
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 36 bool Sparse;
43 InstrProfWriter(bool Sparse = false);
74 void setOutputSparse(bool Sparse);
  /external/llvm/include/llvm/ADT/
SparseSet.h 1 //===--- llvm/ADT/SparseSet.h - Sparse set ----------------------*- C++ -*-===//
11 // Briggs, Torczon, "An efficient representation for sparse sets", ACM Letters
14 // A sparse set holds a small number of objects identified by integer keys from
15 // a moderately sized universe. The sparse set uses more memory than other
97 /// SparseSet contains a dense vector holding all the objects and a sparse
99 /// the sparse array which is the size of the key universe. The SparseT
103 /// When SparseT is uint32_t, find() only touches 2 cache lines, but the sparse
107 /// lines, but the sparse array is 4x smaller. N is the number of elements in
129 SparseT *Sparse;
146 SparseSet() : Sparse(nullptr), Universe(0) {
    [all...]
SparseMultiSet.h 1 //===--- llvm/ADT/SparseMultiSet.h - Sparse multiset ------------*- C++ -*-===//
13 // A sparse multiset holds a small number of objects identified by integer keys
14 // from a moderately sized universe. The sparse multiset uses more memory than
47 /// SparseMultiSet contains a dense vector holding all the objects and a sparse
49 /// the sparse array which is the size of the key universe. The SparseT template
53 /// sparse array uses 4 x Universe bytes.
56 /// lines, but the sparse array is 4x smaller. N is the number of elements in
116 SparseT *Sparse;
191 : Sparse(nullptr), Universe(0), FreelistIdx(SMSNode::INVALID), NumFree(0) {}
193 ~SparseMultiSet() { free(Sparse); }
    [all...]
  /prebuilts/go/darwin-x86/src/archive/tar/
format.go 16 // This does cover the old GNU sparse extension.
17 // This does not cover the GNU sparse extensions using PAX headers,
33 // Some newer formats add their own extensions to PAX, such as GNU sparse
62 func (b *block) Sparse() sparseArray { return (sparseArray)(b[:]) }
160 func (h *headerGNU) Sparse() sparseArray { return (sparseArray)(h[386:][:24*4+1]) }
  /prebuilts/go/linux-x86/src/archive/tar/
format.go 16 // This does cover the old GNU sparse extension.
17 // This does not cover the GNU sparse extensions using PAX headers,
33 // Some newer formats add their own extensions to PAX, such as GNU sparse
62 func (b *block) Sparse() sparseArray { return (sparseArray)(b[:]) }
160 func (h *headerGNU) Sparse() sparseArray { return (sparseArray)(h[386:][:24*4+1]) }
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Pei/PlatformInit/
MrcWrapper.h 78 Sparse,
  /external/eigen/Eigen/src/Core/util/
Constants.h 177 * Means that the underlying coefficients can be accessed through pointers to the sparse (un)compressed storage format,
493 /** The type used to identify a general sparse storage. */
494 struct Sparse {};

Completed in 448 milliseconds