/external/llvm/include/llvm/CodeGen/ |
D | ValueTypes.td | 1 //===- ValueTypes.td - ValueType definitions ---------------*- tablegen -*-===// 16 class ValueType<int size, int value> { 22 def OtherVT: ValueType<0 , 0>; // "Other" value 23 def i1 : ValueType<1 , 1>; // One bit boolean value 24 def i8 : ValueType<8 , 2>; // 8-bit integer value 25 def i16 : ValueType<16 , 3>; // 16-bit integer value 26 def i32 : ValueType<32 , 4>; // 32-bit integer value 27 def i64 : ValueType<64 , 5>; // 64-bit integer value 28 def i128 : ValueType<128, 6>; // 128-bit integer value 29 def f16 : ValueType<16 , 7>; // 16-bit floating point value [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/ |
D | DexBackedEncodedValue.java | 34 import org.jf.dexlib2.ValueType; 54 case ValueType.BYTE: in readFrom() 57 case ValueType.SHORT: in readFrom() 60 case ValueType.CHAR: in readFrom() 63 case ValueType.INT: in readFrom() 66 case ValueType.LONG: in readFrom() 69 case ValueType.FLOAT: in readFrom() 73 case ValueType.DOUBLE: in readFrom() 77 case ValueType.STRING: in readFrom() 80 case ValueType.TYPE: in readFrom() [all …]
|
/external/lldb/include/lldb/Core/ |
D | Flags.h | 33 typedef uint32_t ValueType; typedef 44 Flags (ValueType flags = 0) : 75 ValueType 91 return sizeof (ValueType) * 8; in GetBitSize() 101 Reset (ValueType flags) in Reset() 115 ValueType 116 Clear (ValueType mask = ~(ValueType)0) 133 ValueType 134 Set (ValueType mask) in Set() 149 AllSet (ValueType mask) const in AllSet() [all …]
|
/external/chromium_org/gpu/command_buffer/common/ |
D | gles2_cmd_format_autogen.h | 15 typedef ActiveTexture ValueType; typedef 21 return static_cast<uint32_t>(sizeof(ValueType)); // NOLINT in ComputeSize() 24 void SetHeader() { header.SetCmd<ValueType>(); } in SetHeader() 32 static_cast<ValueType*>(cmd)->Init(_texture); in Set() 33 return NextCmdAddress<ValueType>(cmd); in Set() 47 typedef AttachShader ValueType; typedef 53 return static_cast<uint32_t>(sizeof(ValueType)); // NOLINT in ComputeSize() 56 void SetHeader() { header.SetCmd<ValueType>(); } in SetHeader() 65 static_cast<ValueType*>(cmd)->Init(_program, _shader); in Set() 66 return NextCmdAddress<ValueType>(cmd); in Set() [all …]
|
D | cmd_buffer_common.h | 183 typedef Noop ValueType; typedef 198 static_cast<ValueType*>(cmd)->Init(skip_count); in Set() 199 return NextImmediateCmdAddress<ValueType>( in Set() 212 typedef SetToken ValueType; typedef 218 header.SetCmd<ValueType>(); in SetHeader() 226 static_cast<ValueType*>(cmd)->Init(token); in Set() 227 return NextCmdAddress<ValueType>(cmd); in Set() 253 typedef SetBucketSize ValueType; typedef 259 header.SetCmd<ValueType>(); in SetHeader() 268 static_cast<ValueType*>(cmd)->Init(_bucket_id, _size); in Set() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deCommandLine.hpp | 41 template<typename ValueType> 42 void parseType (const char* src, ValueType* dst); 54 typedef typename OptName::ValueType ValueType; typedef 55 typedef void (*ParseFunc) (const char* src, ValueType* dst); 65 const NamedValue<ValueType>* namedValues; //!< Named values or null. 66 const NamedValue<ValueType>* namedValuesEnd; //!< Named value list end. 74 , parse (parseType<ValueType>) in Option() 93 …Name_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<Value… in Option() 106 …ame_, const char* longName_, const char* description_, const NamedValue<ValueType> (&namedValues_)… in Option() 121 typedef typename Option::ValueType ValueType; typedef [all …]
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/ |
D | EncodedValueAdaptor.java | 32 import org.jf.dexlib2.ValueType; 43 case ValueType.ANNOTATION: in writeTo() 46 case ValueType.ARRAY: in writeTo() 49 case ValueType.BOOLEAN: in writeTo() 52 case ValueType.BYTE: in writeTo() 55 case ValueType.CHAR: in writeTo() 58 case ValueType.DOUBLE: in writeTo() 61 case ValueType.ENUM: in writeTo() 65 case ValueType.FIELD: in writeTo() 68 case ValueType.FLOAT: in writeTo() [all …]
|
/external/lldb/include/lldb/Utility/ |
D | Range.h | 22 typedef uint64_t ValueType; typedef 24 static const ValueType OPEN_END = UINT64_MAX; 28 Range (ValueType low = 0, 29 ValueType high = OPEN_END); 34 ValueType 40 ValueType 47 SetLow (ValueType low) in SetLow() 53 SetHigh (ValueType high) in SetHigh() 67 typedef bool (*RangeCallback)(ValueType index); 72 ValueType [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/ |
D | ImmutableEncodedValueFactory.java | 36 import org.jf.dexlib2.ValueType; 48 case ValueType.BYTE: in of() 50 case ValueType.SHORT: in of() 52 case ValueType.CHAR: in of() 54 case ValueType.INT: in of() 56 case ValueType.LONG: in of() 58 case ValueType.FLOAT: in of() 60 case ValueType.DOUBLE: in of() 62 case ValueType.STRING: in of() 64 case ValueType.TYPE: in of() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
D | EncodedValueUtils.java | 34 import org.jf.dexlib2.ValueType; 40 case ValueType.BOOLEAN: in isDefaultValue() 42 case ValueType.BYTE: in isDefaultValue() 44 case ValueType.CHAR: in isDefaultValue() 46 case ValueType.DOUBLE: in isDefaultValue() 48 case ValueType.FLOAT: in isDefaultValue() 50 case ValueType.INT: in isDefaultValue() 52 case ValueType.LONG: in isDefaultValue() 54 case ValueType.NULL: in isDefaultValue() 56 case ValueType.SHORT: in isDefaultValue()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
D | DexPool.java | 34 import org.jf.dexlib2.ValueType; 96 case ValueType.ANNOTATION: in writeEncodedValue() 100 case ValueType.ARRAY: in writeEncodedValue() 104 case ValueType.BOOLEAN: in writeEncodedValue() 107 case ValueType.BYTE: in writeEncodedValue() 110 case ValueType.CHAR: in writeEncodedValue() 113 case ValueType.DOUBLE: in writeEncodedValue() 116 case ValueType.ENUM: in writeEncodedValue() 119 case ValueType.FIELD: in writeEncodedValue() 122 case ValueType.FLOAT: in writeEncodedValue() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | EncodedValueWriter.java | 34 import org.jf.dexlib2.ValueType; 70 writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0); in writeAnnotation() 80 writer.writeEncodedValueHeader(ValueType.ARRAY, 0); in writeArray() 88 writer.writeEncodedValueHeader(ValueType.BOOLEAN, value ? 1 : 0); in writeBoolean() 92 writer.writeEncodedInt(ValueType.BYTE, value); in writeByte() 96 writer.writeEncodedUint(ValueType.CHAR, value); in writeChar() 100 writer.writeEncodedDouble(ValueType.DOUBLE, value); in writeDouble() 104 writer.writeEncodedUint(ValueType.ENUM, fieldSection.getItemIndex(value)); in writeEnum() 108 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value)); in writeField() 112 writer.writeEncodedFloat(ValueType.FLOAT, value); in writeFloat() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
D | BuilderContext.java | 38 import org.jf.dexlib2.ValueType; 101 case ValueType.ANNOTATION: 103 case ValueType.ARRAY: 105 case ValueType.BOOLEAN: 108 case ValueType.BYTE: 110 case ValueType.CHAR: 112 case ValueType.DOUBLE: 114 case ValueType.ENUM: 116 case ValueType.FIELD: 118 case ValueType.FLOAT: [all …]
|
D | DexBuilder.java | 38 import org.jf.dexlib2.ValueType; 212 case ValueType.ANNOTATION: 216 case ValueType.ARRAY: 220 case ValueType.BOOLEAN: 223 case ValueType.BYTE: 226 case ValueType.CHAR: 229 case ValueType.DOUBLE: 232 case ValueType.ENUM: 235 case ValueType.FIELD: 238 case ValueType.FLOAT: [all …]
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8PersistentValueMap.h | 48 template<class KeyType, class ValueType, bool is_weak> 83 …typedef v8::PersistentValueMap<KeyType, ValueType, V8PersistentValueMapTraits<KeyType, ValueType, … 87 …llbackDataType* WeakCallbackParameter(MapType* map, KeyType key, const v8::Local<ValueType>& value) in WeakCallbackParameter() 97 const v8::WeakCallbackData<ValueType, WeakCallbackDataType>& data) in MapFromWeakCallbackData() argument 103 const v8::WeakCallbackData<ValueType, WeakCallbackDataType>& data) in KeyFromWeakCallbackData() argument 109 … static void Dispose(v8::Isolate* isolate, v8::UniquePersistent<ValueType> value, KeyType key) { } in Dispose() 119 template<class KeyType, class ValueType, bool is_weak = true> 120 …lueMap : public v8::PersistentValueMap<KeyType, ValueType, V8PersistentValueMapTraits<KeyType, Val… 122 typedef V8PersistentValueMapTraits<KeyType, ValueType, is_weak> Traits; 123 …explicit V8PersistentValueMap(v8::Isolate* isolate) : v8::PersistentValueMap<KeyType, ValueType, T… in V8PersistentValueMap()
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
D | AutoDiffVector.h | 32 template<typename ValueType, typename JacobianType> 37 typedef typename internal::traits<ValueType>::Scalar BaseScalar; 45 inline AutoDiffVector(const ValueType& values) in AutoDiffVector() 67 inline AutoDiffVector(const ValueType& values, const JacobianType& jac) in AutoDiffVector() 95 inline const ValueType& values() const { return m_values; } in values() 96 inline ValueType& values() { return m_values; } in values() 103 … typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,ValueType,OtherValueType>::Type, 108 … typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,ValueType,OtherValueType>::Type, 125 … typename MakeCwiseBinaryOp<internal::scalar_difference_op<Scalar>,ValueType,OtherValueType>::Type, 130 … typename MakeCwiseBinaryOp<internal::scalar_difference_op<Scalar>,ValueType,OtherValueType>::Type, [all …]
|
/external/lldb/tools/lldb-perf/lib/ |
D | MemoryGauge.h | 103 ValueType 106 virtual ValueType 112 virtual ValueType 118 virtual ValueType 129 ValueType 133 ValueType m_start; 134 ValueType m_stop; 135 ValueType m_delta;
|
D | Metric.h | 21 template <class ValueType> 35 Append (ValueType v); 37 ValueType 43 ValueType 46 ValueType 68 std::vector<ValueType> m_dataset;
|
D | Measurement.h | 34 m_metric (Metric<typename GaugeType::ValueType>(name, desc)) in Measurement() 41 m_metric (Metric<typename GaugeType::ValueType>(name, desc)) in Measurement() 74 virtual const Metric<typename GaugeType::ValueType>& 86 typename GaugeType::ValueType 98 …me(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.G… in WriteStartValue() 105 …me(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.G… in WriteStopValue() 112 …me(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.G… in WriteAverageValue() 119 …me(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.G… in WriteAverageAndStandardDeviation() 122 …dictionary->Add("stddev", NULL, lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.… in WriteAverageAndStandardDeviation() 130 …me(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.G… in WriteStandardDeviation() [all …]
|
D | Gauge.h | 24 typedef T ValueType; typedef 36 virtual ValueType 39 virtual ValueType 42 virtual ValueType 45 virtual ValueType
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashTable.h | 111 typedef Value ValueType; typedef 113 typedef const ValueType* PointerType; 212 typedef Value ValueType; typedef 214 typedef ValueType* PointerType; 290 template<typename HashTableType, typename ValueType> struct HashTableAddResult { 291 HashTableAddResult(const HashTableType* container, ValueType* storedValue, bool isNewEntry) 313 ValueType* storedValue; 372 typedef Value ValueType; 377 typedef HashTableAddResult<HashTable, ValueType> AddResult; 474 …static bool isEmptyBucket(const ValueType& value) { return isHashTraitsEmptyValue<KeyTraits>(Extra… [all …]
|
/external/llvm/lib/Target/Mips/ |
D | MipsOptimizePICCall.cpp | 38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef 42 ScopedHashTableVal<ValueType, CntRegP> > 44 typedef ScopedHashTable<ValueType, CntRegP, DenseMapInfo<ValueType>, 83 ValueType &Val) const; 87 unsigned getCount(ValueType Entry); 91 unsigned getReg(ValueType Entry); 94 void incCntAndSetReg(ValueType Entry, unsigned Reg); 215 ValueType Entry; in visitNode() 247 ValueType &Val) const { in isCallViaRegister() 283 unsigned OptimizePICCall::getCount(ValueType Entry) { in getCount() [all …]
|
/external/lldb/tools/debugserver/source/ |
D | DNBError.h | 25 typedef uint32_t ValueType; typedef 36 explicit DNBError( ValueType err = 0, 45 ValueType Error() const { return m_err; } in Error() 48 ValueType operator = (kern_return_t err) 70 void SetError(ValueType err, FlavorType flavor) in SetError() 90 ValueType m_err;
|
/external/chromium_org/components/copresence/ |
D | timed_map.h | 24 template <typename KeyType, typename ValueType> 28 : kEmptyValue(ValueType()), in TimedMap() 37 void Add(const KeyType& key, const ValueType& value) { in Add() 49 const ValueType& GetValue(const KeyType& key) { in GetValue() 51 typename std::map<KeyType, ValueType>::const_iterator elt = map_.find(key); in GetValue() 84 const ValueType kEmptyValue; 90 std::map<KeyType, ValueType> map_;
|
/external/chromium_org/net/base/ |
D | expiring_cache.h | 18 typename ValueType, 23 const ValueType& value, in Handle() 68 typename ValueType, 72 ValueType, 82 typedef std::pair<ValueType, ExpirationType> Entry; 87 typedef ValueType value_type; 103 const ValueType& value() const { return it_->second.first; } in value() 125 const ValueType* Get(const KeyType& key, const ExpirationType& now) { in Get() 141 const ValueType& value, in Put()
|