Home
last modified time | relevance | path

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

/hardware/google/av/media/sfplugin/
DReflectedParamUpdater.cpp46 int32_t int32Value; in debugString() local
56 (void)c2Value.get(&int32Value); in debugString()
57 s << "c2::i32 " << it.first << " = " << int32Value; in debugString()
89 } else if (it.second.find(&int32Value)) { in debugString()
90 s << "int32_t " << it.first << " = " << int32Value; in debugString()
381 int32_t int32Value; in parseMessageAndDoWork() local
389 if ((param->second.find(&c2Value) && c2Value.get(&int32Value)) in parseMessageAndDoWork()
390 || param->second.find(&int32Value)) { in parseMessageAndDoWork()
391 work(name, desc, &int32Value, sizeof(int32Value)); in parseMessageAndDoWork()
395 if ((param->second.find(&c2Value) && c2Value.get((uint32_t*)&int32Value)) in parseMessageAndDoWork()
[all …]
DCCodecConfig.cpp119 int32_t int32Value; in mapFromMessage() local
123 if (item.find(&int32Value)) { in mapFromMessage()
124 value = int32Value; in mapFromMessage()
141 int32_t int32Value; in mapToMessage() local
149 if (value.get(&int32Value)) { in mapToMessage()
150 item.set(int32Value); in mapToMessage()
1262 int32_t int32Value; in convert() local
1269 if (from.find(&int32Value)) { in convert()
1270 to->set(int32Value); in convert()
1290 int32_t int32Value; in relaxValues() local
[all …]
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DVehicleEmulator.cpp293 for (auto& int32Value : val->value.int32Values) { in populateProtoVehiclePropValue() local
294 protoVal->add_int32_values(int32Value); in populateProtoVehiclePropValue()
/hardware/google/av/media/sfplugin/tests/
DReflectedParamUpdater_test.cpp179 int32_t int32Value = 0; in TEST_F() local
184 EXPECT_EQ(true, c2Value.get(&int32Value)); in TEST_F()
185 EXPECT_EQ(12, int32Value); in TEST_F()
/hardware/google/av/codec2/tests/
DC2Param_test.cpp2270 C2Int32Value int32Value(INT32_MIN); in TEST_F() local
2271 … static_assert(std::is_same<decltype(int32Value.value), int32_t>::value, "should be int32_t"); in TEST_F()
2272 EXPECT_EQ(INT32_MIN, int32Value.value); in TEST_F()
2273 std::vector<C2FieldDescriptor> fields = int32Value.FieldList(); in TEST_F()