Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/test/unittest/common/
H A Dlink_queue_test.cpp22 constexpr uint32_t QUEUE_MAX_SIZE = 8; variable
54 for (int i = 0; i < QUEUE_MAX_SIZE; i++) {
115 LinkQueue queue(QUEUE_MAX_SIZE);
117 for (int i = 0; i < QUEUE_MAX_SIZE + 1; i++) {
120 EXPECT_EQ(queue.LengthQueue(), QUEUE_MAX_SIZE);
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_output/output_control/src/
H A Doutput_controller.cpp38 if (dataQueue_.size() > QUEUE_MAX_SIZE) { in PushData()
39 AVTRANS_LOGE("DataQueue is greater than QUEUE_MAX_SIZE %{public}zu.", QUEUE_MAX_SIZE); in PushData()
378 const uint32_t halfQueueSize = QUEUE_MAX_SIZE / 2; in WaitRereadClockFailed()
379 while (GetQueueSize() < QUEUE_MAX_SIZE) { in WaitRereadClockFailed()
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_output/output_control/include/
H A Doutput_controller.h166 const uint32_t QUEUE_MAX_SIZE = 100; variable