Home
last modified time | relevance | path

Searched refs:intData (Results 1 - 14 of 14) sorted by relevance

/foundation/multimedia/av_codec/test/fuzztest/audiodecoderconfigure_fuzzer/
H A DaudiodecoderConfigure_fuzzer.cpp33 int32_t intData = *reinterpret_cast<const int32_t *>(data); in AudioAACConfigureFuzzTest() local
36 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_CHANNEL_COUNT, intData); in AudioAACConfigureFuzzTest()
37 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_SAMPLE_RATE, intData); in AudioAACConfigureFuzzTest()
39 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUDIO_SAMPLE_FORMAT, intData); in AudioAACConfigureFuzzTest()
40 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITS_PER_CODED_SAMPLE, intData); in AudioAACConfigureFuzzTest()
41 OH_AVFormat_SetIntValue(format, OH_MD_KEY_COMPLIANCE_LEVEL, intData); in AudioAACConfigureFuzzTest()
59 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_CHANNEL_COUNT, intData); in AudioAACConfigureFuzzTest()
60 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_SAMPLE_RATE, intData); in AudioAACConfigureFuzzTest()
62 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUDIO_SAMPLE_FORMAT, intData); in AudioAACConfigureFuzzTest()
63 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITS_PER_CODED_SAMPLE, intData); in AudioAACConfigureFuzzTest()
86 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioFlacConfigureFuzzTest() local
138 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioMP3ConfigureFuzzTest() local
168 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioVorbisConfigureFuzzTest() local
198 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioLBVCConfigureFuzzTest() local
250 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAMRNBConfigureFuzzTest() local
302 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAMRWBConfigureFuzzTest() local
354 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAPEConfigureFuzzTest() local
406 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioOPUSConfigureFuzzTest() local
458 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioG711ConfigureFuzzTest() local
510 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioVividConfigureFuzzTest() local
[all...]
/foundation/multimedia/av_codec/test/fuzztest/audiodecodersetparameter_fuzzer/
H A DaudiodecoderSetParameter_fuzzer.cpp33 int32_t intData = *reinterpret_cast<const int32_t *>(data); in AudioAACSetParameterFuzzTest() local
35 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_CHANNEL_COUNT, intData); in AudioAACSetParameterFuzzTest()
36 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_SAMPLE_RATE, intData); in AudioAACSetParameterFuzzTest()
38 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUDIO_SAMPLE_FORMAT, intData); in AudioAACSetParameterFuzzTest()
39 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITS_PER_CODED_SAMPLE, intData); in AudioAACSetParameterFuzzTest()
40 OH_AVFormat_SetIntValue(format, OH_MD_KEY_COMPLIANCE_LEVEL, intData); in AudioAACSetParameterFuzzTest()
58 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_CHANNEL_COUNT, intData); in AudioAACSetParameterFuzzTest()
59 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_SAMPLE_RATE, intData); in AudioAACSetParameterFuzzTest()
61 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUDIO_SAMPLE_FORMAT, intData); in AudioAACSetParameterFuzzTest()
62 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITS_PER_CODED_SAMPLE, intData); in AudioAACSetParameterFuzzTest()
85 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioFlacSetParameterFuzzTest() local
137 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioMP3SetParameterFuzzTest() local
167 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioVorbisSetParameterFuzzTest() local
197 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioLBVCSetParameterFuzzTest() local
249 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAMRNBSetParameterFuzzTest() local
301 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAMRWBSetParameterFuzzTest() local
353 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioAPESetParameterFuzzTest() local
405 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioOPUSSetParameterFuzzTest() local
457 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioG711SetParameterFuzzTest() local
509 int32_t intData = *reinterpret_cast<const int32_t *>(data); AudioVividSetParameterFuzzTest() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/utils/
H A Ddata_test.cpp61 auto intData = new int(); in HWTEST_F() local
62 EXPECT_TRUE(data->BuildFromMalloc(intData, sizeof(intData))); in HWTEST_F()
75 auto intData = std::make_unique<int>(); in HWTEST_F() local
76 EXPECT_TRUE(data->BuildWithCopy(intData.get(), sizeof(*intData.get()))); in HWTEST_F()
89 auto intData = std::make_unique<int>(); in HWTEST_F() local
90 EXPECT_TRUE(data->BuildWithoutCopy(intData.get(), sizeof(*intData.get()))); in HWTEST_F()
103 auto intData in HWTEST_F() local
130 auto intData = std::make_unique<int>(); HWTEST_F() local
145 auto intData = std::make_unique<int>(10); HWTEST_F() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_data_test.cpp63 auto intData = new int(); in HWTEST_F() local
64 EXPECT_TRUE(skiaData.BuildFromMalloc(intData, sizeof(intData))); in HWTEST_F()
76 auto intData = std::make_unique<int>(); in HWTEST_F() local
77 EXPECT_TRUE(skiaData.BuildWithCopy(intData.get(), sizeof(*intData.get()))); in HWTEST_F()
89 auto intData = std::make_unique<int>(); in HWTEST_F() local
90 EXPECT_TRUE(skiaData.BuildWithoutCopy(intData.get(), sizeof(*intData.get()))); in HWTEST_F()
102 auto intData in HWTEST_F() local
[all...]
/foundation/multimedia/av_codec/test/fuzztest/swdecodersetparameter_fuzzer/
H A Dswdecodersetparameter_fuzzer.cpp46 int32_t intData = *reinterpret_cast<const int32_t *>(data); in DoSomethingInterestingWithMyAPI() local
49 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITRATE, intData); in DoSomethingInterestingWithMyAPI()
50 OH_AVFormat_SetIntValue(format, OH_MD_KEY_MAX_INPUT_SIZE, intData); in DoSomethingInterestingWithMyAPI()
51 OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, intData); in DoSomethingInterestingWithMyAPI()
52 OH_AVFormat_SetIntValue(format, OH_MD_KEY_HEIGHT, intData); in DoSomethingInterestingWithMyAPI()
53 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PIXEL_FORMAT, intData); in DoSomethingInterestingWithMyAPI()
54 OH_AVFormat_SetIntValue(format, OH_MD_KEY_VIDEO_ENCODE_BITRATE_MODE, intData); in DoSomethingInterestingWithMyAPI()
55 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PROFILE, intData); in DoSomethingInterestingWithMyAPI()
56 OH_AVFormat_SetIntValue(format, OH_MD_KEY_I_FRAME_INTERVAL, intData); in DoSomethingInterestingWithMyAPI()
57 OH_AVFormat_SetIntValue(format, OH_MD_KEY_ROTATION, intData); in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/multimedia/av_codec/test/fuzztest/hevcswdecodersetparameter_fuzzer/
H A Dhevcswdecodersetparameter_fuzzer.cpp45 int32_t intData = *reinterpret_cast<const int32_t *>(data); in DoSomethingInterestingWithMyAPI() local
48 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITRATE, intData); in DoSomethingInterestingWithMyAPI()
49 OH_AVFormat_SetIntValue(format, OH_MD_KEY_MAX_INPUT_SIZE, intData); in DoSomethingInterestingWithMyAPI()
50 OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, intData); in DoSomethingInterestingWithMyAPI()
51 OH_AVFormat_SetIntValue(format, OH_MD_KEY_HEIGHT, intData); in DoSomethingInterestingWithMyAPI()
52 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PIXEL_FORMAT, intData); in DoSomethingInterestingWithMyAPI()
53 OH_AVFormat_SetIntValue(format, OH_MD_KEY_VIDEO_ENCODE_BITRATE_MODE, intData); in DoSomethingInterestingWithMyAPI()
54 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PROFILE, intData); in DoSomethingInterestingWithMyAPI()
55 OH_AVFormat_SetIntValue(format, OH_MD_KEY_I_FRAME_INTERVAL, intData); in DoSomethingInterestingWithMyAPI()
56 OH_AVFormat_SetIntValue(format, OH_MD_KEY_ROTATION, intData); in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/multimedia/av_codec/test/fuzztest/encodersetparameter_fuzzer/
H A Dencodersetparameter_fuzzer.cpp50 int32_t intData = *reinterpret_cast<const int32_t *>(data); in DoSomethingInterestingWithMyAPI() local
53 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITRATE, intData); in DoSomethingInterestingWithMyAPI()
54 OH_AVFormat_SetIntValue(format, OH_MD_KEY_MAX_INPUT_SIZE, intData); in DoSomethingInterestingWithMyAPI()
55 OH_AVFormat_SetIntValue(format, OH_MD_KEY_WIDTH, intData); in DoSomethingInterestingWithMyAPI()
56 OH_AVFormat_SetIntValue(format, OH_MD_KEY_HEIGHT, intData); in DoSomethingInterestingWithMyAPI()
57 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PIXEL_FORMAT, intData); in DoSomethingInterestingWithMyAPI()
58 OH_AVFormat_SetIntValue(format, OH_MD_KEY_VIDEO_ENCODE_BITRATE_MODE, intData); in DoSomethingInterestingWithMyAPI()
59 OH_AVFormat_SetIntValue(format, OH_MD_KEY_PROFILE, intData); in DoSomethingInterestingWithMyAPI()
60 OH_AVFormat_SetIntValue(format, OH_MD_KEY_I_FRAME_INTERVAL, intData); in DoSomethingInterestingWithMyAPI()
61 OH_AVFormat_SetIntValue(format, OH_MD_KEY_ROTATION, intData); in DoSomethingInterestingWithMyAPI()
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_profiler/unittest/
H A Drs_profiler_archive_test.cpp202 archive.Serialize(intData); in Serialize()
208 return intData == other.intData && stringData == other.stringData; in operator ==()
211 int intData = 0; member
/foundation/multimedia/av_codec/test/fuzztest/audioencoderpreapisetparameter_fuzzer/
H A Daudioencoderdemo.cpp624 int32_t intData = *reinterpret_cast<const int32_t *>(data);
627 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_CHANNEL_COUNT, intData);
628 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUD_SAMPLE_RATE, intData);
630 OH_AVFormat_SetIntValue(format, OH_MD_KEY_AUDIO_SAMPLE_FORMAT, intData);
631 OH_AVFormat_SetIntValue(format, OH_MD_KEY_BITS_PER_CODED_SAMPLE, intData);
632 OH_AVFormat_SetIntValue(format, OH_MD_KEY_COMPLIANCE_LEVEL, intData);
/foundation/multimedia/av_codec/test/fuzztest/audiodecoderpreapisetparameter_fuzzer/
H A Daudiodecoderdemo.cpp574 int32_t intData = *reinterpret_cast<const int32_t *>(data);
577 OH_AVFormat_SetIntValue(format, MediaDescriptionKey::MD_KEY_AAC_IS_ADTS.data(), intData);
579 OH_AVFormat_SetIntValue(format, MediaDescriptionKey::MD_KEY_AUDIO_SAMPLE_FORMAT.data(), intData);
580 OH_AVFormat_SetIntValue(format, MediaDescriptionKey::MD_KEY_CHANNEL_COUNT.data(), intData);
581 OH_AVFormat_SetIntValue(format, MediaDescriptionKey::MD_KEY_SAMPLE_RATE.data(), intData);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_utils_extend.cpp571 int64_t intData = 0; in BindDataValueByType() local
572 (void)data.value().GetInt64(intData); in BindDataValueByType()
573 errCode = SQLiteUtils::MapSQLiteErrno(sqlite3_bind_int64(statement, cid, intData)); in BindDataValueByType()
/foundation/resourceschedule/qos_manager/test/fuzztest/concurrent_fuzzer/
H A Dconcurrent_fuzzer.cpp506 int32_t intData; in FuzzConcurrentTaskServiceStubQueryDeadlineInner() local
510 intData = GetData<int32_t>(); in FuzzConcurrentTaskServiceStubQueryDeadlineInner()
514 data4.WriteInt32(intData); in FuzzConcurrentTaskServiceStubQueryDeadlineInner()
517 intData = GetData<int32_t>(); in FuzzConcurrentTaskServiceStubQueryDeadlineInner()
518 data4.WriteInt32(intData); in FuzzConcurrentTaskServiceStubQueryDeadlineInner()
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H A Dmtp_packet_tools.cpp1026 int intData = static_cast<int>(u8); in DumpChar() local
1028 if (isprint(intData)) { in DumpChar()
1029 if (sprintf_s(txtTmp, sizeof(txtTmp), "%d", intData) == -1) { in DumpChar()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Ddistributeddb_relational_ver_p2p_sync_test.cpp206 int64_t intData = 0; in BindValue() local
207 (void)item.GetInt64(intData); in BindValue()
208 EXPECT_EQ(sqlite3_bind_int64(stmt, col, intData), SQLITE_OK); in BindValue()

Completed in 14 milliseconds