Home
last modified time | relevance | path

Searched refs:queueSize (Results 1 – 5 of 5) sorted by relevance

/xnu-11215/iokit/Kernel/
H A DIODataQueue.cpp46 UInt32 queueSize; member
111 ((IODataQueueInternal *)notifyMsg)->queueSize = size; in initWithCapacity()
119 dataQueue->queueSize = size; in initWithCapacity()
148 round_page(((IODataQueueInternal *)notifyMsg)->queueSize + in free()
169 UInt32 queueSize; in enqueue() local
183 queueSize = ((IODataQueueInternal *) notifyMsg)->queueSize; in enqueue()
184 if ((queueSize < tail) || (queueSize < head)) { in enqueue()
191 ((tail + entrySize) <= queueSize)) { in enqueue()
212 if ((queueSize - tail) >= DATA_QUEUE_ENTRY_HEADER_SIZE) { in enqueue()
298 UInt32 queueSize; in getMemoryDescriptor() local
[all …]
H A DIOSharedDataQueue.cpp111 dataQueue->queueSize = size; in initWithCapacity()
189 UInt32 queueSize = getQueueSize(); in peek() local
191 if (headOffset > queueSize) { in peek()
203 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) || in peek()
205 (headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { in peek()
335 UInt32 queueSize = getQueueSize(); in dequeue() local
337 if (headOffset > queueSize) { in dequeue()
347 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) || in dequeue()
356 (entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { in dequeue()
405 return _reserved->queueSize; in getQueueSize()
[all …]
/xnu-11215/iokit/System/
H A DIODataQueueDispatchSourceShared.h314 uint32_t queueSize = ivars->queueByteCount; in Peek() local
316 if (headOffset > queueSize) { in Peek()
403 if (headOffset > queueSize) { in DequeueWithCoalesce()
499 uint32_t queueSize; in EnqueueWithCoalesce() local
507 queueSize = ivars->queueByteCount; in EnqueueWithCoalesce()
524 if (queueSize < tail || queueSize < head) { in EnqueueWithCoalesce()
532 ((tail + entrySize) <= queueSize)) { in EnqueueWithCoalesce()
630 uint32_t queueSize; in CanEnqueueData() local
637 queueSize = ivars->queueByteCount; in CanEnqueueData()
654 if (queueSize < tail || queueSize < head) { in CanEnqueueData()
[all …]
/xnu-11215/iokit/IOKit/
H A DIODataQueueShared.h58 UInt32 queueSize; member
H A DIOSharedDataQueue.h57 UInt32 queueSize; member