Home
last modified time | relevance | path

Searched refs:MAX_LOOP (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ui_lite/test/unittest/dfx/
H A Devent_injector_unit_test.cpp54 uint8_t MAX_LOOP = 200; variable
247 while ((loop < MAX_LOOP) && !CLICK_FLAG) {
276 while ((loop < MAX_LOOP) && !DRAG_FLAG) {
347 while ((loop < MAX_LOOP) && !LONG_PRESS_FLAG) {
389 while ((loop < MAX_LOOP) && !KEY_FLAG) {
/ohos5.0/foundation/multimedia/av_codec/test/unittest/hls_test/
H A Dm3u8_unit_test.cpp26 constexpr uint32_t MAX_LOOP = 16; variable
111 for (int i = 0; i < static_cast<int>(MAX_LOOP); i++) {
120 uint8_t key[MAX_LOOP] = {1, 2, 3, 4, 5};
121 uint8_t iv[MAX_LOOP] = {6, 7, 8, 9, 10};
259 uint8_t data[MAX_LOOP + 1];
260 uint32_t len = MAX_LOOP + 1;
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dm3u8.cpp29 constexpr uint32_t MAX_LOOP = 16; variable
69 for (int i = 0; i < static_cast<int>(MAX_LOOP); i++) { in M3U8Fragment()
274 uint32_t size = iv_buff.size() > MAX_LOOP ? MAX_LOOP : iv_buff.size(); in ParseKey()
313 if (len <= MAX_LOOP && len != 0) { in SaveData()
314 NZERO_RETURN_V(memcpy_s(key_, MAX_LOOP, data, len), false); in SaveData()