Lines Matching refs:queueSize
46 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
300 queueSize = ((IODataQueueInternal *) notifyMsg)->queueSize; in getMemoryDescriptor()
302 …descriptor = IOMemoryDescriptor::withAddress(dataQueue, queueSize + DATA_QUEUE_MEMORY_HEADER_SIZE,… in getMemoryDescriptor()