Searched refs:int32Value (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/media/codec2/sfplugin/ |
D | ReflectedParamUpdater.cpp | 46 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() 404 int32_t int32Value; in parseMessageAndDoWork() local 412 if ((param->second.find(&c2Value) && c2Value.get(&int32Value)) in parseMessageAndDoWork() 413 || param->second.find(&int32Value)) { in parseMessageAndDoWork() 414 work(name, desc, &int32Value, sizeof(int32Value)); in parseMessageAndDoWork() 418 if ((param->second.find(&c2Value) && c2Value.get((uint32_t*)&int32Value)) in parseMessageAndDoWork() [all …]
|
D | CCodecConfig.cpp | 61 int32_t int32Value; in C2ValueToMessageItem() local 66 if (value.get(&int32Value)) { in C2ValueToMessageItem() 67 item.set(int32Value); in C2ValueToMessageItem() 148 int32_t int32Value; in mapFromMessage() local 152 if (item.find(&int32Value)) { in mapFromMessage() 153 value = int32Value; in mapFromMessage() 1651 int32_t int32Value; in convert() local 1658 if (from.find(&int32Value)) { in convert() 1659 to->set(int32Value); in convert() 1679 int32_t int32Value; in relaxValues() local [all …]
|
/frameworks/av/media/libstagefright/foundation/ |
D | AMessage.cpp | 240 *value = (float)item->u.int32Value; in findAsFloat() 261 *value = item->u.int32Value; in findAsInt64() 294 BASIC_TYPE(Int32,int32Value,int32_t) in BASIC_TYPE() argument 582 "int32_t %s = %d", item.mName, item.u.int32Value); in debugString() 692 item->u.int32Value = parcel.readInt32(); in FromParcel() 780 parcel->writeInt32(item.u.int32Value); in writeToParcel() 847 if (oitem == NULL || item.u.int32Value != oitem->u.int32Value) { in changesFrom() 848 diff->setInt32(item.mName, item.u.int32Value); in changesFrom() 969 case kTypeInt32: it.set(mItems[index].u.int32Value); break; in getEntryAt() 1035 if (item.find(&dst->u.int32Value)) { in setEntryAt() [all …]
|
/frameworks/av/media/codec2/sfplugin/tests/ |
D | ReflectedParamUpdater_test.cpp | 179 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()
|
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
D | AMessage.h | 294 int32_t int32Value; member
|
/frameworks/av/media/codec2/tests/ |
D | C2Param_test.cpp | 2278 C2Int32Value int32Value(INT32_MIN); in TEST_F() local 2279 … static_assert(std::is_same<decltype(int32Value.value), int32_t>::value, "should be int32_t"); in TEST_F() 2280 EXPECT_EQ(INT32_MIN, int32Value.value); in TEST_F() 2281 std::vector<C2FieldDescriptor> fields = int32Value.FieldList(); in TEST_F()
|