Searched refs:DenseMapPair (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_dense_map_info.h | 37 struct DenseMapPair { struct 40 constexpr DenseMapPair() = default; argument 41 constexpr DenseMapPair(const KeyT &f, const ValueT &s) in DenseMapPair() function 45 constexpr DenseMapPair(KeyT2 &&f, ValueT2 &&s) in DenseMapPair() function 49 constexpr DenseMapPair(const DenseMapPair &other) = default; 50 constexpr DenseMapPair &operator=(const DenseMapPair &other) = default; argument 51 constexpr DenseMapPair(DenseMapPair &&other) = default; 52 constexpr DenseMapPair &operator=(DenseMapPair &&other) = default; argument 254 struct DenseMapInfo<detail::DenseMapPair<T, U>> { 255 using Pair = detail::DenseMapPair<T, U>; [all …]
|
H A D | sanitizer_dense_map.h | 123 detail::DenseMapPair<value_type *, bool> insert(const value_type &KV) { in insert() 130 detail::DenseMapPair<value_type *, bool> insert(value_type &&KV) { in insert() 139 detail::DenseMapPair<value_type *, bool> try_emplace(KeyT &&Key, in try_emplace() 155 detail::DenseMapPair<value_type *, bool> try_emplace(const KeyT &Key, in try_emplace() 173 detail::DenseMapPair<value_type *, bool> insert_as(value_type &&KV, in insert_as() 567 typename BucketT = detail::DenseMapPair<KeyT, ValueT>>
|
H A D | sanitizer_lzw.h | 25 detail::DenseMapPair<LzwCodeType /* Prefix */, T /* Next input */>; in LzwEncode() 105 InternalMmapVector<detail::DenseMapPair<ItOut /* begin. */, ItOut /* end */>> in LzwDecode()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | Graph.h | 83 detail::DenseMapPair<VertexIdentifier, VertexAttribute>; 87 using EdgeValueType = detail::DenseMapPair<EdgeIdentifier, EdgeAttribute>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseMap.h | 42 struct DenseMapPair : public std::pair<KeyT, ValueT> { struct 55 typename Bucket = llvm::detail::DenseMapPair<KeyT, ValueT>, argument 756 typename BucketT = llvm::detail::DenseMapPair<KeyT, ValueT>> 922 typename BucketT = llvm::detail::DenseMapPair<KeyT, ValueT>>
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_common.cpp | 530 using RootRegions = DenseMap<detail::DenseMapPair<uptr, uptr>, uptr>;
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProfWriter.cpp | 1117 using FuncPair = detail::DenseMapPair<uint64_t, InstrProfRecord>; in writeText()
|