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

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseMap.h 1 //===- llvm/ADT/DenseMap.h - Dense probed hash table ------------*- C++ -*-===//
10 // This file defines the DenseMap class.
39 class DenseMap {
51 DenseMap(const DenseMap &other) {
56 explicit DenseMap(unsigned NumInitBuckets = 0) {
61 DenseMap(const InputIt &I, const InputIt &E) {
66 ~DenseMap() {
101 /// Grow the densemap so that it has at least Size buckets. Does not shrink
201 void swap(DenseMap& RHS)
    [all...]
  /external/llvm/include/llvm/ADT/
DenseMap.h 1 //===- llvm/ADT/DenseMap.h - Dense probed hash table ------------*- C++ -*-===//
10 // This file defines the DenseMap class.
84 /// Grow the densemap so that it can contain at least \p NumEntries items
272 /// somewhere into the DenseMap's array of buckets (i.e. either to a key or
273 /// value in the DenseMap).
280 /// determine whether an insertion caused the DenseMap to reallocate.
310 /// Returns the number of buckets to allocate to ensure that the DenseMap can
574 /// This is just the raw memory used by DenseMap.
585 class DenseMap : public DenseMapBase<DenseMap<KeyT, ValueT, KeyInfoT, BucketT>
    [all...]

Completed in 217 milliseconds