Searched defs:int64Value (Results 1 - 3 of 3) sorted by relevance

/hardware/google/av/media/sfplugin/
H A DReflectedParamUpdater.cpp48 int64_t int64Value; local
69 (void)c2Value.get(&int64Value);
70 s << "c2::i64 " << it.first << " = " << int64Value;
91 } else if (it.second.find(&int64Value)) {
92 s << "int64_t " << it.first << " = " << int64Value;
339 int64_t int64Value; local
364 if ((param->second.find(&c2Value) && c2Value.get(&int64Value))
365 || param->second.find(&int64Value)) {
366 work(name, desc, &int64Value, sizeof(int64Value));
[all...]
H A DCCodecConfig.cpp80 int64_t int64Value; local
85 } else if (item.find(&int64Value)) {
86 value = int64Value;
103 int64_t int64Value; local
114 } else if (value.get(&int64Value)) {
115 item.set(int64Value);
754 int64_t int64Value; local
762 } else if (from.find(&int64Value)) {
763 to->set(int64Value);
782 int64_t int64Value; local
[all...]
/hardware/google/av/media/sfplugin/tests/
H A DReflectedParamUpdater_test.cpp180 int64_t int64Value = 0; local
189 EXPECT_EQ(true, c2Value.get(&int64Value));
190 EXPECT_EQ(34, int64Value);

Completed in 65 milliseconds