Searched refs:inlineBuffer (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WTF-7600.1.24/wtf/
H A DSizeLimits.cpp70 typename std::aligned_storage<sizeof(T), std::alignment_of<T>::value>::type inlineBuffer[inlineCapacity]; member in struct:WTF::SameSizeAsVectorWithInlineCapacity
H A DVector.h411 : Base(inlineBuffer(), inlineCapacity, 0)
416 : Base(inlineBuffer(), inlineCapacity, size)
433 m_buffer = inlineBuffer();
442 m_buffer = inlineBuffer();
449 if (bufferToDeallocate == inlineBuffer())
468 if (buffer() == inlineBuffer() && other.buffer() == other.inlineBuffer()) {
471 } else if (buffer() == inlineBuffer()) {
473 other.m_buffer = other.inlineBuffer();
476 } else if (other.buffer() == other.inlineBuffer()) {
539 T* inlineBuffer() { return reinterpret_cast_ptr<T*>(m_inlineBuffer); } function in class:WTF::VectorBuffer
540 const T* inlineBuffer() const { return reinterpret_cast_ptr<const T*>(m_inlineBuffer); } function in class:WTF::VectorBuffer
[all...]
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/i2c/
H A DIOI2CInterfacePrivate.h41 UInt8 inlineBuffer[ kIOI2CInlineBufferBytes ]; member in struct:IOI2CBuffer
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibUnitDirectory.cpp122 UInt8 inlineBuffer[ bufferSize ] ; local
123 result = (char*)inlineBuffer ;
125 ::CFStringGetBytes( string, ::CFRangeMake( 0, stringLength ), kCFStringEncodingUTF8, 0xFF, false, inlineBuffer, bufferSize, NULL ) ;
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOI2CInterface.cpp232 request->sendBuffer = (vm_address_t) &buffer->inlineBuffer[0];
242 request->replyBuffer = (vm_address_t) &buffer->inlineBuffer[0];
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOGraphicsLib.c5583 if( request->sendBytes > sizeof(buffer.inlineBuffer))
5585 if( request->replyBytes > sizeof(buffer.inlineBuffer))
5599 bcopy( (void *) request->sendBuffer, &buffer.inlineBuffer[0], request->sendBytes );
5607 bcopy( &buffer.inlineBuffer[0], (void *) request->replyBuffer, buffer.request.replyBytes );

Completed in 102 milliseconds