HomeSort by relevance Sort by last modified time
    Searched refs:ValueType (Results 1 - 25 of 682) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/nvram/messages/include/nvram/messages/
optional.h 24 template <typename ValueType> class Optional {
27 explicit Optional(ValueType value) : value_(value), valid_(true) {}
30 const ValueType& value() const { return value_; }
33 ValueType& Activate() {
35 value_ = ValueType{};
45 ValueType value_{};
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64RelocationFunctions.h 30 #define DECL_AARCH64_APPLY_RELOC_FUNC_PTRS(ValueType, MappedType) /* NOLINT */\
31 ValueType(0x0, MappedType(&none, "R_AARCH64_NULL", 0)), /* NOLINT */\
32 ValueType(0x1, MappedType(&none, "R_AARCH64_REWRITE_INSN", 32)), /* NOLINT */\
33 ValueType(0x100, MappedType(&none, "R_AARCH64_NONE", 0)), /* NOLINT */\
34 ValueType(0x101, MappedType(&abs, "R_AARCH64_ABS64", 64)), /* NOLINT */\
35 ValueType(0x102, MappedType(&abs, "R_AARCH64_ABS32", 32)), /* NOLINT */\
36 ValueType(0x103, MappedType(&abs, "R_AARCH64_ABS16", 16)), /* NOLINT */\
37 ValueType(0x104, MappedType(&rel, "R_AARCH64_PREL64", 64)), /* NOLINT */\
38 ValueType(0x105, MappedType(&rel, "R_AARCH64_PREL32", 32)), /* NOLINT */\
39 ValueType(0x106, MappedType(&rel, "R_AARCH64_PREL16", 16)), /* NOLINT */
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
cuda_device_array_gpu.h 28 template <typename ValueType, int MaxInlineValues = 8>
32 ValueType inline_values[MaxInlineValues];
33 ValueType* out_of_line_values = nullptr; // used if size > MaxInlineValues;
36 template <typename ValueType, int MaxInlineValues = 8>
37 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ValueType* GetCudaDeviceArrayOnDevice(
38 CudaDeviceArrayStruct<ValueType, MaxInlineValues>* data) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
EncodedValueUtils.java 34 import org.jf.dexlib2.ValueType;
40 case ValueType.BOOLEAN:
42 case ValueType.BYTE:
44 case ValueType.CHAR:
46 case ValueType.DOUBLE:
48 case ValueType.FLOAT:
50 case ValueType.INT:
52 case ValueType.LONG:
54 case ValueType.NULL:
56 case ValueType.SHORT
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
int_type.h 25 // template class IntType<IntTypeName, ValueType> (where ValueType assumes
40 // DEFINE_INT_TYPE(IntTypeName, ValueType);
44 // ValueType: is one of the integral types as defined by base::is_integral
87 // operator allows the same IntTypeName and the ValueType to be used on
90 // It also supports an accessor value() returning the stored value as ValueType,
178 // Holds an integer value (of type ValueType) and behaves as a ValueType by
183 // the file generates a unique IntTypeName). The parameter ValueType defines
190 typedef _ValueType ValueType; // for non-member operator
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedEncodedValue.java 34 import org.jf.dexlib2.ValueType;
50 int valueType = b & 0x1f;
53 switch (valueType) {
54 case ValueType.BYTE:
57 case ValueType.SHORT:
60 case ValueType.CHAR:
63 case ValueType.INT:
66 case ValueType.LONG:
69 case ValueType.FLOAT:
73 case ValueType.DOUBLE
    [all...]
  /external/tensorflow/tensorflow/core/lib/monitoring/
mobile_gauge.h 43 template <typename ValueType, int NumLabels>
50 static_assert(std::is_same<ValueType, int64>::value ||
51 std::is_same<ValueType, string>::value,
57 GaugeCell<ValueType>* GetCell(const Labels&... labels) {
64 GaugeCell<ValueType> default_gauge_cell_;
metric_def.h 40 enum class ValueType : int { kInt64 = 0, kHistogram, kString, kBool };
47 ValueType GetValueType();
50 inline ValueType GetValueType<int64>() {
51 return ValueType::kInt64;
55 inline ValueType GetValueType<HistogramProto>() {
56 return ValueType::kHistogram;
60 inline ValueType GetValueType<string>() {
61 return ValueType::kString;
65 inline ValueType GetValueType<bool>() {
66 return ValueType::kBool
    [all...]
gauge.h 110 // A stateful class for updating a gauge-like metric. Allowed ValueType are
123 template <typename ValueType, int NumLabels>
150 GaugeCell<ValueType>* GetCell(const Labels&... labels) LOCKS_EXCLUDED(mu_);
154 const MetricDef<MetricKind::kGauge, ValueType, NumLabels>& metric_def)
170 const MetricDef<MetricKind::kGauge, ValueType, NumLabels> metric_def_;
175 std::map<LabelArray, GaugeCell<ValueType> > cells_ GUARDED_BY(mu_);
203 template <typename ValueType, int NumLabels>
205 Gauge<ValueType, NumLabels>* Gauge<ValueType, NumLabels>::New(
207 static_assert(std::is_same<ValueType, int64>::value |
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 32 template <typename KeyType, typename ValueType, typename KeyCompare>
36 typedef ValueType value_type;
40 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
52 ValueType& value() { return m_Value; }
54 const ValueType& value() const { return m_Value; }
56 void setValue(const ValueType& pValue) { m_Value = pValue; }
62 ValueType m_Value;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
EncodedValueAdaptor.java 33 import org.jf.dexlib2.ValueType;
47 case ValueType.ANNOTATION:
50 case ValueType.ARRAY:
53 case ValueType.BOOLEAN:
56 case ValueType.BYTE:
59 case ValueType.CHAR:
62 case ValueType.DOUBLE:
65 case ValueType.ENUM:
74 case ValueType.FIELD:
82 case ValueType.FLOAT
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableEncodedValueFactory.java 36 import org.jf.dexlib2.ValueType;
48 case ValueType.BYTE:
50 case ValueType.SHORT:
52 case ValueType.CHAR:
54 case ValueType.INT:
56 case ValueType.LONG:
58 case ValueType.FLOAT:
60 case ValueType.DOUBLE:
62 case ValueType.STRING:
64 case ValueType.TYPE
    [all...]
  /external/google-breakpad/src/processor/
postfix_evaluator-inl.h 69 template<typename ValueType>
70 bool PostfixEvaluator<ValueType>::EvaluateToken(
103 ValueType operand1 = ValueType();
104 ValueType operand2 = ValueType();
112 ValueType result;
131 operand1 & (static_cast<ValueType>(-1) ^ (operand2 - 1));
151 ValueType address;
158 ValueType value
    [all...]
postfix_evaluator.h 44 // either literal values suitable for ValueType, or constants or variables,
86 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/tensorflow/tensorflow/core/util/
stat_summarizer.h 37 template <typename ValueType, typename HighPrecisionValueType = double>
40 void UpdateStat(ValueType v) {
53 void Reset() { new (this) Stat<ValueType, HighPrecisionValueType>(); }
57 ValueType first() const { return first_; }
59 ValueType newest() const { return newest_; }
61 ValueType max() const { return max_; }
63 ValueType min() const { return min_; }
67 ValueType sum() const { return sum_; }
74 return empty() ? std::numeric_limits<ValueType>::quiet_NaN()
78 ValueType std_deviation() const
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 64 \tparam ValueType The value type of the DOM tree. E.g. GenericValue<UTF8<> >
67 \note GenericPointer uses same encoding of ValueType.
70 template <typename ValueType, typename Allocator = CrtAllocator>
73 typedef typename ValueType::EncodingType EncodingType; //!< Encoding type from Value
278 GenericPointer Append(const ValueType& token, Allocator* allocator = 0) const {
387 ValueType& Create(ValueType& root, typename ValueType::AllocatorType& allocator, bool* alreadyExist = 0) const {
389 ValueType* v = &root;
417 typename ValueType::MemberIterator m = v->FindMember(GenericStringRef<Ch>(t->name, t->length))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java 35 import org.jf.dexlib2.ValueType;
73 writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0);
87 writer.writeEncodedValueHeader(ValueType.ARRAY, 0);
95 writer.writeEncodedValueHeader(ValueType.BOOLEAN, value ? 1 : 0);
99 writer.writeEncodedInt(ValueType.BYTE, value);
103 writer.writeEncodedUint(ValueType.CHAR, value);
107 writer.writeEncodedDouble(ValueType.DOUBLE, value);
111 writer.writeEncodedUint(ValueType.ENUM, fieldSection.getItemIndex(value));
115 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value));
119 writer.writeEncodedFloat(ValueType.FLOAT, value)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Tooling/Refactoring/
RefactoringOptions.h 34 using ValueType = Optional<T>;
36 const ValueType &getValue() const { return Value; }
47 using ValueType = T;
49 const ValueType &getValue() const {

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>