Searched refs:value_type (Results 1 - 25 of 215) sorted by relevance

123456789

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndianStream.h26 template <typename value_type>
27 inline void write(raw_ostream &os, value_type value, endianness endian) {
28 value = byte_swap<value_type>(value, endian);
29 os.write((const char *)&value, sizeof(value_type));
43 template <typename value_type>
44 inline void write(raw_ostream &os, ArrayRef<value_type> vals,
46 for (value_type v : vals)
55 template <typename value_type> void write(ArrayRef<value_type> Val) {
58 template <typename value_type> voi
[all...]
H A DEndian.h48 template <typename value_type>
49 inline value_type byte_swap(value_type value, endianness endian) {
56 template<typename value_type, endianness endian>
57 inline value_type byte_swap(value_type value) {
62 template <typename value_type, std::size_t alignment>
63 inline value_type read(const void *memory, endianness endian) {
64 value_type ret;
68 memory, (detail::PickAlignment<value_type, alignmen
[all...]
H A DCapacity.h25 return x.capacity() * sizeof(typename T::value_type);
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dnodes.hpp123 typedef ValueType value_type; typedef in class:utils::config::typed_leaf_node
132 const value_type& value(void) const;
135 value_type& value(void);
138 void set(const value_type&);
142 optional< value_type > _value;
145 virtual void validate(const value_type&) const;
183 virtual void validate(const value_type&) const;
205 typedef std::set< ValueType > value_type; typedef in class:utils::config::base_set_node
219 const value_type& value(void) const;
226 value_type
[all...]
H A Dtree.hpp104 const typename LeafType::value_type& lookup(const std::string&) const;
106 typename LeafType::value_type& lookup_rw(const std::string&);
109 void set(const std::string&, const typename LeafType::value_type&);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h39 using value_type = std::pair<Int, V>;
40 using reference = value_type &;
41 using const_reference = const value_type &;
42 using pointer = value_type *;
43 using const_pointer = const value_type *;
46 using Representation = SmallVector<value_type, InitialCapacity>;
66 void insert(const value_type &Val) {
75 void insertOrReplace(const value_type &Val) {
134 void insert(const value_type &Val) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DTrace.h57 using value_type = RecordVector::value_type;
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Demitter.h118 emitter_type_t value_type, const void *value) {
136 switch (value_type) {
251 emitter_json_value(emitter_t *emitter, emitter_type_t value_type,
256 value_type, value);
264 emitter_type_t value_type, const void *value) {
266 emitter_json_value(emitter, value_type, value);
345 emitter_type_t value_type, const void *value,
352 value_type, value);
366 emitter_type_t value_type, const void *value) {
367 emitter_table_kv_note(emitter, table_key, value_type, valu
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDagOperands.h81 using value_type = GIMatchDagOperand;
105 const value_type &operator[](unsigned I) const { return Operands[I]; }
106 const value_type &operator[](StringRef K) const;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DDebugUtils.h48 raw_ostream &operator<<(raw_ostream &OS, const SymbolFlagsMap::value_type &KV);
51 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap::value_type &KV);
61 const SymbolDependenceMap::value_type &KV);
80 raw_ostream &operator<<(raw_ostream &OS, const SymbolLookupSet::value_type &KV);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp81 typename Pred = PrintAll<typename Sequence::value_type>>
125 bool operator()(const orc::SymbolFlagsMap::value_type &KV) {
131 bool operator()(const orc::SymbolMap::value_type &KV) {
180 raw_ostream &operator<<(raw_ostream &OS, const SymbolFlagsMap::value_type &KV) {
184 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap::value_type &KV) {
199 const SymbolDependenceMap::value_type &KV) {
205 PrintAll<SymbolDependenceMap::value_type>());
247 const SymbolLookupSet::value_type &KV) {
253 PrintAll<SymbolLookupSet::value_type>());
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringLexer.h23 typedef std::string::value_type Character;
H A DEnvironment.h43 using Base::value_type;
80 static std::string compose(const value_type &KeyValue) {
/freebsd-13-stable/contrib/kyua/utils/text/
H A Dtable.hpp71 widths_vector::value_type column_width(const widths_vector::size_type)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVariable.cpp169 Value::ValueType value_type = m_value.GetValueType(); local
183 if (value_type == Value::eValueTypeHostAddress &&
195 switch (value_type) {
216 if (value_type == Value::eValueTypeFileAddress && process_is_alive)
223 SetValueDidChange(value_type != old_value.GetValueType() ||
233 SetValueDidChange(value_type != old_value.GetValueType() ||
250 Value::ValueType value_type = valobj.GetValue().GetValueType(); local
258 switch (value_type) {
H A DValueObjectMemory.cpp167 Value::ValueType value_type = m_value.GetValueType(); local
169 switch (value_type) {
190 if (value_type == Value::eValueTypeFileAddress &&
203 SetValueDidChange(value_type != old_value.GetValueType() ||
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseSet.h55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT),
64 using value_type = ValueT;
118 using value_type = ValueT;
119 using pointer = value_type *;
120 using reference = value_type &;
144 using value_type = ValueT;
145 using pointer = const value_type *;
146 using reference = const value_type &;
H A Dilist_iterator.h25 using value_type = typename OptionsT::value_type;
32 using value_type = const typename OptionsT::value_type;
66 using value_type = typename Traits::value_type;
H A DImmutableSet.h45 using value_type = typename ImutInfo::value_type;
71 const value_type& getValue() const { return value; }
233 value_type value;
827 const typename T::value_type> {
846 using value_type = const T;
857 using value_type = const T;
884 using value_type = const bool;
896 using value_type = const T*;
897 using value_type_ref = value_type;
[all...]
H A DImmutableMap.h28 using value_type = const std::pair<T,S>;
29 using value_type_ref = const value_type&;
64 using value_type = typename ValInfo::value_type;
217 value_type* getMaxElement() const {
241 using value_type = typename ValInfo::value_type;
347 value_type* getMaxElement() const {
H A DPriorityQueue.h26 class Compare = std::less<typename Sequence::value_type> >
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DImportedFunctionsInliningStatistics.cpp189 for (const NodesMapTy::value_type& Node : NodesMap)
192 llvm::sort(SortedNodes, [&](const SortedNodesTy::value_type &Lhs,
193 const SortedNodesTy::value_type &Rhs) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionIterator.h102 using value_type = typename super::value_type;
132 inline value_type operator*() const {
177 using value_type = typename super::value_type;
211 inline value_type operator*() const {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h180 lldb::SBValue FindValue(const char *name, ValueType value_type);
182 lldb::SBValue FindValue(const char *name, ValueType value_type,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariableList.h45 lldb::ValueType value_type,

Completed in 367 milliseconds

123456789