Home
last modified time | relevance | path

Searched refs:ValueType (Results 1 – 25 of 220) sorted by relevance

123456789

/external/llvm/include/llvm/CodeGen/
DValueTypes.td1 //===- 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/
DDexBackedEncodedValue.java34 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/
DFlags.h33 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 …]
DError.h54 typedef uint32_t ValueType; typedef
70 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric);
147 ValueType
226 SetError (ValueType err, lldb::ErrorType type);
304 ValueType m_code; ///< Error code as an integer value.
/external/google-breakpad/src/processor/
Dpostfix_evaluator-inl.h69 template<typename ValueType>
70 bool PostfixEvaluator<ValueType>::EvaluateToken( in EvaluateToken()
103 ValueType operand1 = ValueType(); in EvaluateToken()
104 ValueType operand2 = ValueType(); in EvaluateToken()
112 ValueType result; in EvaluateToken()
131 operand1 & (static_cast<ValueType>(-1) ^ (operand2 - 1)); in EvaluateToken()
151 ValueType address; in EvaluateToken()
158 ValueType value; in EvaluateToken()
168 ValueType value; in EvaluateToken()
204 template<typename ValueType>
[all …]
Dpostfix_evaluator.h86 template<typename ValueType>
89 typedef map<string, ValueType> DictionaryType;
114 bool EvaluateForValue(const string &expression, ValueType *result);
135 PopResult PopValueOrIdentifier(ValueType *value, string *identifier);
141 bool PopValue(ValueType *value);
146 bool PopValues(ValueType *value1, ValueType *value2);
149 void PushValue(const ValueType &value);
/external/deqp/framework/delibs/decpp/
DdeCommandLine.hpp41 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/lldb/include/lldb/Utility/
DRange.h22 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/
DImmutableEncodedValueFactory.java36 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/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DEncodedValueAdaptor.java33 import org.jf.dexlib2.ValueType;
47 case ValueType.ANNOTATION: in writeTo()
50 case ValueType.ARRAY: in writeTo()
53 case ValueType.BOOLEAN: in writeTo()
56 case ValueType.BYTE: in writeTo()
59 case ValueType.CHAR: in writeTo()
62 case ValueType.DOUBLE: in writeTo()
65 case ValueType.ENUM: in writeTo()
74 case ValueType.FIELD: in writeTo()
82 case ValueType.FLOAT: in writeTo()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DEncodedValueUtils.java34 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/
DDexPool.java35 import org.jf.dexlib2.ValueType;
114 case ValueType.ANNOTATION: in writeEncodedValue()
118 case ValueType.ARRAY: in writeEncodedValue()
122 case ValueType.BOOLEAN: in writeEncodedValue()
125 case ValueType.BYTE: in writeEncodedValue()
128 case ValueType.CHAR: in writeEncodedValue()
131 case ValueType.DOUBLE: in writeEncodedValue()
134 case ValueType.ENUM: in writeEncodedValue()
137 case ValueType.FIELD: in writeEncodedValue()
140 case ValueType.FLOAT: in writeEncodedValue()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DEncodedValueWriter.java35 import org.jf.dexlib2.ValueType;
73 writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0); in writeAnnotation()
87 writer.writeEncodedValueHeader(ValueType.ARRAY, 0); in writeArray()
95 writer.writeEncodedValueHeader(ValueType.BOOLEAN, value ? 1 : 0); in writeBoolean()
99 writer.writeEncodedInt(ValueType.BYTE, value); in writeByte()
103 writer.writeEncodedUint(ValueType.CHAR, value); in writeChar()
107 writer.writeEncodedDouble(ValueType.DOUBLE, value); in writeDouble()
111 writer.writeEncodedUint(ValueType.ENUM, fieldSection.getItemIndex(value)); in writeEnum()
115 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value)); in writeField()
119 writer.writeEncodedFloat(ValueType.FLOAT, value); in writeFloat()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderContext.java38 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 …]
DDexBuilder.java39 import org.jf.dexlib2.ValueType;
218 case ValueType.ANNOTATION:
222 case ValueType.ARRAY:
226 case ValueType.BOOLEAN:
229 case ValueType.BYTE:
232 case ValueType.CHAR:
235 case ValueType.DOUBLE:
238 case ValueType.ENUM:
241 case ValueType.FIELD:
244 case ValueType.FLOAT:
[all …]
/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffVector.h32 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/
DMemoryGauge.h103 ValueType
106 virtual ValueType
112 virtual ValueType
118 virtual ValueType
129 ValueType
133 ValueType m_start;
134 ValueType m_stop;
135 ValueType m_delta;
DMetric.h21 template <class ValueType>
35 Append (ValueType v);
37 ValueType
43 ValueType
46 ValueType
68 std::vector<ValueType> m_dataset;
DMeasurement.h34 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 …]
DGauge.h24 typedef T ValueType; typedef
36 virtual ValueType
39 virtual ValueType
42 virtual ValueType
45 virtual ValueType
/external/llvm/lib/Target/Mips/
DMipsOptimizePICCall.cpp38 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/
DDNBError.h25 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/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DEncodedValueRewriter.java34 import org.jf.dexlib2.ValueType;
54 case ValueType.TYPE: in rewrite()
56 case ValueType.FIELD: in rewrite()
58 case ValueType.METHOD: in rewrite()
60 case ValueType.ENUM: in rewrite()
62 case ValueType.ARRAY: in rewrite()
64 case ValueType.ANNOTATION: in rewrite()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyTIL.h131 struct ValueType { struct
155 inline static ValueType getValueType(); argument
157 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) in ValueType() function
168 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { in getSizeType() argument
181 inline ValueType ValueType::getValueType<void>() {
182 return ValueType(BT_Void, ST_0, false, 0);
186 inline ValueType ValueType::getValueType<bool>() {
187 return ValueType(BT_Bool, ST_1, false, 0);
191 inline ValueType ValueType::getValueType<int8_t>() {
192 return ValueType(BT_Int, ST_8, true, 0);
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DJsonValue.java38 private ValueType type;
50 public JsonValue (ValueType type) { in JsonValue()
317 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asStringArray()
349 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asFloatArray()
378 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asDoubleArray()
407 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asLongArray()
436 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asIntArray()
465 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asBooleanArray()
494 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asByteArray()
523 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type); in asShortArray()
[all …]

123456789