Home
last modified time | relevance | path

Searched refs:NumericValue (Results 1 – 9 of 9) sorted by relevance

/external/flatbuffers/swift/Sources/FlatBuffers/
DConstants.swift47 associatedtype NumericValue
48 var convertedEndian: NumericValue { get }
57 public var convertedEndian: NumericValue {
58 self as! Self.NumericValue
63 public typealias NumericValue = UInt64 typealias
71 public typealias NumericValue = UInt32 typealias
83 public typealias NumericValue = UInt8 typealias
87 public typealias NumericValue = Int typealias
91 public typealias NumericValue = Int8 typealias
95 public typealias NumericValue = Int16 typealias
[all …]
/external/guice/core/test/com/google/inject/
DTypeConversionTest.java39 @interface NumericValue {} annotation in TypeConversionTest
56 @Inject @NumericValue Byte byteField;
57 @Inject @NumericValue byte primitiveByteField;
58 @Inject @NumericValue Short shortField;
59 @Inject @NumericValue short primitiveShortField;
60 @Inject @NumericValue Integer integerField;
61 @Inject @NumericValue int primitiveIntField;
62 @Inject @NumericValue Long longField;
63 @Inject @NumericValue long primitiveLongField;
64 @Inject @NumericValue Float floatField;
[all …]
/external/perfetto/src/trace_processor/db/
Dnumeric_storage.cc32 inline void TypedFastPathComparison(std::optional<NumericValue> val, in TypedFastPathComparison()
59 inline void TypedSlowPathComparison(std::optional<NumericValue> val, in TypedSlowPathComparison()
81 NumericValue val = *GetNumericTypeVariant(type_, SqlValue::Long(0)); in StableSort()
103 std::optional<NumericValue> val = GetNumericTypeVariant(type_, sql_val); in CompareFast()
127 std::optional<NumericValue> val = GetNumericTypeVariant(type_, sql_val); in CompareSlow()
145 uint32_t NumericStorage::UpperBoundIndex(NumericValue val) const { in UpperBoundIndex()
159 uint32_t NumericStorage::LowerBoundIndex(NumericValue val) const { in LowerBoundIndex()
174 std::optional<NumericValue> val = GetNumericTypeVariant(type_, sql_val); in CompareSorted()
222 uint32_t NumericStorage::UpperBoundIndex(NumericValue val, in UpperBoundIndex()
239 uint32_t NumericStorage::LowerBoundIndex(NumericValue val, in LowerBoundIndex()
[all …]
Dnumeric_storage.h60 uint32_t UpperBoundIndex(NumericValue val) const;
64 uint32_t LowerBoundIndex(NumericValue val) const;
68 uint32_t UpperBoundIndex(NumericValue val, uint32_t* order) const;
72 uint32_t LowerBoundIndex(NumericValue val, uint32_t* order) const;
Dstorage_variants.h29 using NumericValue = std::variant<uint32_t, int32_t, int64_t, double_t>; variable
45 inline std::optional<NumericValue> GetNumericTypeVariant(ColumnType type, in GetNumericTypeVariant()
76 inline std::optional<NumericValue> GetNumericTypeVariant(ColumnType type) { in GetNumericTypeVariant()
/external/deqp/executor/
DxeTestCaseResult.cpp71 std::ostream& operator<< (std::ostream& str, const NumericValue& value) in operator <<()
75 case NumericValue::NUMVALTYPE_FLOAT64: in operator <<()
78 case NumericValue::NUMVALTYPE_INT64: in operator <<()
82 DE_ASSERT(value.getType() == NumericValue::NUMVALTYPE_EMPTY); in operator <<()
DxeTestCaseResult.hpp163 class NumericValue class
175 NumericValue (void) : m_type(NUMVALTYPE_EMPTY) {} in NumericValue() function in xe::ri::NumericValue
176 NumericValue (deInt64 value) : m_type(NUMVALTYPE_INT64) { m_value.int64 = value; } in NumericValue() function in xe::ri::NumericValue
177 NumericValue (double value) : m_type(NUMVALTYPE_FLOAT64) { m_value.float64 = value; } in NumericValue() function in xe::ri::NumericValue
192 std::ostream& operator<< (std::ostream& str, const NumericValue& value);
241 NumericValue value;
501 NumericValue value;
DxeTestResultParser.cpp288 static ri::NumericValue getNumericValue (const std::string& value) in getNumericValue()
295 return ri::NumericValue(num); in getNumericValue()
300 return ri::NumericValue(num); in getNumericValue()
/external/deqp/executor/tools/
DxeExtractValues.cpp54 typedef xe::ri::NumericValue Value;