Home
last modified time | relevance | path

Searched refs:floatValue (Results 1 – 5 of 5) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DVehicleEmulator.cpp298 for (auto& floatValue : val->value.floatValues) { in populateProtoVehiclePropValue() local
299 protoVal->add_float_values(floatValue); in populateProtoVehiclePropValue()
/hardware/google/av/media/sfplugin/
DReflectedParamUpdater.cpp50 float floatValue; in debugString() local
82 (void)c2Value.get(&floatValue); in debugString()
83 s << "c2::float " << it.first << " = " << floatValue; in debugString()
DCCodecConfig.cpp121 float floatValue; in mapFromMessage() local
127 } else if (item.find(&floatValue)) { in mapFromMessage()
128 value = floatValue; in mapFromMessage()
145 float floatValue; in mapToMessage() local
159 } else if (value.get(&floatValue)) { in mapToMessage()
160 item.set(floatValue); in mapToMessage()
1266 float floatValue; in convert() local
1277 } else if (from.find(&floatValue)) { in convert()
1278 to->set(C2Value(floatValue)); in convert()
/hardware/google/pixel/pixelstats/
DUeventListener.cpp200 val.floatValue(ssoc_tmp); in ReportVoltageTierStats()
/hardware/google/av/codec2/tests/
DC2Param_test.cpp2314 C2FloatValue floatValue(123.4f); in TEST_F() local
2315 static_assert(std::is_same<decltype(floatValue.value), float>::value, "should be float"); in TEST_F()
2316 EXPECT_EQ(123.4f, floatValue.value); in TEST_F()
2317 std::vector<C2FieldDescriptor> fields = floatValue.FieldList(); in TEST_F()