Searched refs:queueSize (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10.1/IOKitUser-1050.1.21/
H A DIODataQueueClient.c50 UInt32 queueSize = dataQueue->queueSize; local
59 if ((headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) ||
60 ((headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE) > queueSize))
85 UInt32 queueSize = dataQueue->queueSize; local
92 if ((headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) ||
94 ((headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE) > queueSize)) {
142 UInt32 queueSize = dataQueue->queueSize; local
308 UInt32 queueSize = 0; local
329 UInt32 queueSize = 0; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOSharedDataQueue.cpp103 dataQueue->queueSize = size;
154 UInt32 queueSize = getQueueSize(); local
156 if (headOffset >= queueSize) {
168 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) ||
170 (headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) {
173 // queueSize of UINT32_MAX
212 // The tail can range from 0 to dataQueue->queueSize inclusive.
282 UInt32 queueSize = getQueueSize(); local
284 if (headOffset > queueSize) {
294 (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) ||
[all...]
H A DIODataQueue.cpp103 dataQueue->queueSize = size;
135 IOFreeAligned(dataQueue, round_page(dataQueue->queueSize + DATA_QUEUE_MEMORY_HEADER_SIZE));
160 // Check for underflow of (dataQueue->queueSize - tail)
161 if (dataQueue->queueSize < tail) {
169 ((tail + entrySize) <= dataQueue->queueSize) )
178 // The tail can range from 0 to dataQueue->queueSize inclusive.
193 if ( ( dataQueue->queueSize - tail ) >= DATA_QUEUE_ENTRY_HEADER_SIZE )
273 descriptor = IOMemoryDescriptor::withAddress(dataQueue, dataQueue->queueSize + DATA_QUEUE_MEMORY_HEADER_SIZE, kIODirectionOutIn);
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIODataQueueShared.h51 * @discussion This struct is variable sized. The struct represents the data queue header information plus a pointer to the actual data queue itself. The size of the struct is the combined size of the header fields (3 * sizeof(UInt32)) plus the actual size of the queue region. This size is stored in the queueSize field.
52 * @field queueSize The size of the queue region pointed to by the queue field.
55 * @field queue Represents the beginning of the queue memory region. The size of the region pointed to by queue is stored in the queueSize field.
58 UInt32 queueSize; member in struct:_IODataQueueMemory
82 * @defined DATA_QUEUE_MEMORY_HEADER_SIZE Represents the size of the data queue memory header independent of the actual size of the queue data itself. The total size of the queue memory is equal to this value plus the size of the queue appendix and the size of the queue data region which is stored in the queueSize field of IODataQueueMeory.
87 * @defined DATA_QUEUE_MEMORY_APPENDIX_SIZE Represents the size of the data queue memory appendix independent of the actual size of the queue data itself. The total size of the queue memory is equal to this value plus the size of queue header and size of the queue data region which is stored in the queueSize field of IODataQueueMeory.
H A DIOSharedDataQueue.h60 UInt32 queueSize; member in struct:IOSharedDataQueue::ExpansionData
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventServiceUserClient.cpp209 uint32_t queueSize = kQueueSizeMax; local
220 queueSize = ((OSNumber*)object)->unsigned32BitValue();
221 queueSize = min(kQueueSizeMax, queueSize);
225 if ( queueSize ) {
226 _queue = IOHIDEventServiceQueue::withCapacity(queueSize);
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibPriv.h389 mach_vm_size_t queueSize ; member in struct:IOFireWireLib::AddressSpaceCreateParams
402 mach_vm_size_t queueSize ; member in struct:IOFireWireLib::FWUserAsyncStreamListenerCreateParams
H A DIOFireWireLibDevice.cpp1220 params.queueSize = (UInt32) inQueueBufferSize ;
1232 params.queueSize = OSSwapInt64( params.queueSize );
1790 params.queueSize = (UInt32) inQueueBufferSize ;
1800 params.queueSize = OSSwapInt32( params.queueSize );
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWUserAsyncStreamListener.cpp217 params->queueSize,
H A DIOFWUserPseudoAddressSpace.cpp437 fPacketQueue = IOFWRingBufferQ::withAddressRange( params->queueBuffer, params->queueSize, kIODirectionOutIn, fUserClient->getOwningTask() ) ;

Completed in 211 milliseconds