Home
last modified time | relevance | path

Searched refs:ring (Results 1 - 8 of 8) sorted by relevance

/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dlf_ring.c56 * Input : ring - lock-free queue to be initialized
60 * Output : ring - initialized lock-free queue
64 void FillpLfRingInit(struct FillpLfRing *ring, char *name, size_t size) in FillpLfRingInit() argument
67 if (ring == FILLP_NULL_PTR) { in FillpLfRingInit()
75 ring->size = (FILLP_ULONG)size; in FillpLfRingInit()
77 ring->cons.head = 0; in FillpLfRingInit()
78 ring->cons.tail = 0; in FillpLfRingInit()
80 ring->prod.head = 0; in FillpLfRingInit()
81 ring->prod.tail = 0; in FillpLfRingInit()
82 ring in FillpLfRingInit()
88 FillpLfRingSetProdSafe(struct FillpLfRing *ring, FILLP_BOOL safe) FillpLfRingSetProdSafe() argument
93 FillpLfRingSetConsSafe(struct FillpLfRing *ring, FILLP_BOOL safe) FillpLfRingSetConsSafe() argument
98 FillpLfRingMpEnqueueWait(struct FillpLfRing *ring, FILLP_UINT count, FILLP_ULONG *prodHead, FILLP_ULONG *prodNext) FillpLfRingMpEnqueueWait() argument
131 FillpLfRingMpEnqueue(struct FillpLfRing *ring, void **dataTable, FILLP_UINT count) FillpLfRingMpEnqueue() argument
181 FillpLfRingMcDequeueWait(struct FillpLfRing *ring, FILLP_UINT count, FILLP_ULONG *consHead, FILLP_ULONG *consNext) FillpLfRingMcDequeueWait() argument
214 FillpLfRingMcDequeue(struct FillpLfRing *ring, void **dataTable, FILLP_UINT count) FillpLfRingMcDequeue() argument
[all...]
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
H A Dlf_ring.h61 Input : ring - lock-free queue to be initialized
65 Output : ring - initialized lock-free queue
69 void FillpLfRingInit(struct FillpLfRing *ring, char *name, size_t size);
91 Input : ring - lock-free queue to be initialized
99 FillpErrorType FillpLfRingMpEnqueue(struct FillpLfRing *ring, void **dataTable, FILLP_UINT count);
108 Input : ring - lock-free queue to be initialized
116 FILLP_INT FillpLfRingMcDequeue(struct FillpLfRing *ring, void **dataTable, FILLP_UINT count);
121 void FillpLfRingSetConsSafe(struct FillpLfRing *ring, FILLP_BOOL safe);
123 void FillpLfRingSetProdSafe(struct FillpLfRing *ring, FILLP_BOOL safe);
H A Dqueue.h33 struct FillpLfRing ring; member
41 ret = FillpLfRingMpEnqueue(&q->ring, &msg[totalPush], count - (FILLP_UINT)totalPush); in FillpQueuePush()
59 return FillpLfRingMcDequeue(&q->ring, msg, count); in FillpQueuePop()
64 return FillpRingEmpty(&q->ring); in QueueEmpty()
81 FillpLfRingSetProdSafe(&q->ring, safe); in FillpQueueSetProdSafe()
86 FillpLfRingSetConsSafe(&q->ring, safe); in FillpQueueSetConsSafe()
91 FillpLfRingInit(&q->ring, name, size); in FillpQueueInit()
127 return FillpRingValidOnes(&q->ring); in FillpQueueValidOnes()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp166 for (uint32_t ring = 0; ring < rings; ++ring) { in GenerateSphereGeometry()
167 const auto ringF = static_cast<float>(ring); in GenerateSphereGeometry()
178 if (ring < rings - 1) { in GenerateSphereGeometry()
179 const uint32_t curRow = ring * sectors; in GenerateSphereGeometry()
180 const uint32_t nextRow = (ring + 1) * sectors; in GenerateSphereGeometry()
214 // Cap ring and triangles. in GenerateConeCap()
259 // Bottom ring vertices and side triangles, with given radius in GenerateConeGeometry()
328 for (uint32_t ring in GenerateTorusGeometry()
[all...]
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dspunge_stack.c354 con = unsendBox->ring.cons.head + 1; in SpungeConnCheckUnsendBoxEmpty()
355 prod = unsendBox->ring.prod.tail; in SpungeConnCheckUnsendBoxEmpty()
358 data = unsendBox->ring.ringCache[con % unsendBox->ring.size]; in SpungeConnCheckUnsendBoxEmpty()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_statemachine.cpp945 bool ring = (event.arg1_ == 0) ? false : true; in ProcessInbandRingEvent() local
947 if (isInBandRing_ != ring || isFirstTime == true) { in ProcessInbandRingEvent()
948 isInBandRing_ = ring; in ProcessInbandRingEvent()
/foundation/multimodalinput/input/util/common/include/
H A Dstruct_multimodal.h489 } ring; member
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dapi.c1375 FillpRingFreeEntries(&(g_spunge->sockTable->freeQueqe->ring))); in FtFillpStatShow()

Completed in 8 milliseconds