Searched refs:int32Value (Results 1 – 5 of 5) 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 | 63 int32_t int32Value; in C2ValueToMessageItem() local 68 if (value.get(&int32Value)) { in C2ValueToMessageItem() 69 item.set(int32Value); in C2ValueToMessageItem() 150 int32_t int32Value; in mapFromMessage() local 154 if (item.find(&int32Value)) { in mapFromMessage() 155 value = int32Value; in mapFromMessage() 1683 int32_t int32Value; in convert() local 1690 if (from.find(&int32Value)) { in convert() 1691 to->set(int32Value); in convert() 1711 int32_t int32Value; in relaxValues() local [all …]
|
/frameworks/av/media/module/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 593 "int32_t %s = %d", item.mName, item.u.int32Value); in debugString() 703 item->u.int32Value = parcel.readInt32(); in FromParcel() 791 parcel->writeInt32(item.u.int32Value); in writeToParcel() 858 if (oitem == NULL || item.u.int32Value != oitem->u.int32Value) { in changesFrom() 859 diff->setInt32(item.mName, item.u.int32Value); in changesFrom() 985 case kTypeInt32: it.set(mItems[index].u.int32Value); break; in getEntryAt() 1051 if (item.find(&dst->u.int32Value)) { in setEntryAt() [all …]
|
/frameworks/av/media/module/foundation/include/media/stagefright/foundation/ |
D | AMessage.h | 300 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()
|