/device/linaro/bootloader/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/ |
SmbusLib.c | 533 Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer.
535 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
539 If ReadBuffer is NULL, then ASSERT().
545 @param ReadBuffer The pointer to the buffer of bytes to read from the SMBUS.
566 OUT VOID *ReadBuffer,
573 ASSERT (ReadBuffer != NULL);
580 // Assuming that ReadBuffer is large enough to save another memory copy.
582 ReadBuffer = CopyMem (ReadBuffer, WriteBuffer, Length);
583 return InternalSmBusExec (EfiSmbusBWBRProcessCall, SmBusAddress, Length, ReadBuffer, Status); [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/SmbusLib/ |
SmbusLib.c | 573 @param ReadBuffer Pointer to the buffer of bytes to read from the SMBUS.
585 OUT UINT8 *ReadBuffer,
640 if (ReadBuffer != NULL) {
649 ReadBuffer[Index] = IoRead8 (IoPortBaseAddress + R_QNC_SMBUS_HBD + (UINT8)Index);
759 Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer.
761 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
765 If ReadBuffer is NULL, then ASSERT().
771 @param ReadBuffer Pointer to the buffer of bytes to read from the SMBUS.
790 OUT VOID *ReadBuffer,
795 ASSERT (ReadBuffer != NULL); [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/I2CLibDxe/ |
I2CLib.c | 494 OUT UINT8 *ReadBuffer,
510 ReceiveDataEnd = &ReadBuffer [ReadBytes];
513 ReceiveRequest = ReadBuffer;
516 while ((ReceiveDataEnd > ReceiveRequest) || (ReceiveDataEnd > ReadBuffer)) {
535 *ReadBuffer++ = (UINT8)ReceiveData;
546 // waiting the last request to get data and make (ReceiveDataEnd > ReadBuffer) =TRUE.
671 // Waiting the last request to get data and make (ReceiveDataEnd > ReadBuffer) =TRUE.
692 @param *ReadBuffer Address to which the value read has to be stored
702 OUT UINT8 *ReadBuffer
709 Status = ByteReadI2CBasic(I2cControllerIndex, SlaveAddress,ReadBytes,ReadBuffer,TRUE,TRUE); [all...] |
/external/libmojo/mojo/edk/system/ |
channel.cc | 369 class Channel::ReadBuffer { 371 ReadBuffer() { 377 ~ReadBuffer() { 388 // Ensures the ReadBuffer has enough contiguous space allocated to hold 466 DISALLOW_COPY_AND_ASSIGN(ReadBuffer); 470 : delegate_(delegate), read_buffer_(new ReadBuffer) {
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
AbstractZipFileTest.java | 55 byte[] readBuffer = new byte[8192]; 64 while (is.read(readBuffer, 0, readBuffer.length) != -1) {} 179 byte[] readBuffer = new byte[8192]; 185 while (in.read(readBuffer, 0, readBuffer.length) != -1) {}
|
/external/mesa3d/src/mesa/main/ |
drawpix.c | 203 _mesa_enum_to_string(ctx->ReadBuffer->ColorReadBuffer), 237 if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) { 243 if (_mesa_is_user_fbo(ctx->ReadBuffer) && 244 ctx->ReadBuffer->Visual.samples > 0) {
|
framebuffer.c | 685 * if this FB is bound as ctx->ReadBuffer (and conversely, the 823 return renderbuffer_exists(ctx, ctx->ReadBuffer, format, GL_TRUE); 843 if (!ctx->ReadBuffer || !ctx->ReadBuffer->_ColorReadBuffer) { 853 const mesa_format format = ctx->ReadBuffer->_ColorReadBuffer->Format; 880 if (!ctx->ReadBuffer || !ctx->ReadBuffer->_ColorReadBuffer) { 890 const GLenum format = ctx->ReadBuffer->_ColorReadBuffer->Format; 918 const struct gl_framebuffer *rfb = ctx->ReadBuffer;
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_viewport.c | 68 stread = st_ws_framebuffer(st->ctx->ReadBuffer);
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
Framebuffer.h | 93 GLenum readBuffer;
|
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Library/ |
I2CLib.h | 147 OUT UINT8 *ReadBuffer,
165 OUT UINT8 *ReadBuffer
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
intel_pixel_read.c | 89 struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer; 141 x, y, _mesa_is_winsys_fbo(ctx->ReadBuffer),
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_pixel_read.c | 96 const struct radeon_renderbuffer *rrb = radeon_renderbuffer(ctx->ReadBuffer->_ColorReadBuffer); 152 flip_y = _mesa_is_winsys_fbo(ctx->ReadBuffer);
|
radeon_tex_copy.c | 68 flip_y = ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Type == GL_NONE; 71 flip_y = ctx->ReadBuffer->Attachment[BUFFER_COLOR0].Type == GL_NONE;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/ |
EdkIIGlueSmbusLib.h | 353 Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer.
355 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
359 If ReadBuffer is NULL, then ASSERT().
365 @param ReadBuffer Pointer to the buffer of bytes to read from the SMBUS.
377 OUT VOID *ReadBuffer,
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLEngineTest.java | [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseS3SmbusLib/ |
S3SmbusLib.c | 467 Bytes are written to the SMBUS from WriteBuffer. Bytes are then read from the SMBUS into ReadBuffer.
469 It is the caller's responsibility to make sure ReadBuffer is large enough for the total number of bytes read.
473 If ReadBuffer is NULL, then ASSERT().
479 @param ReadBuffer Pointer to the buffer of bytes to read from the SMBUS.
491 OUT VOID *ReadBuffer,
497 Length = SmBusBlockProcessCall (SmBusAddress, WriteBuffer, ReadBuffer, Status);
499 InternalSaveSmBusExecToBootScript (EfiSmbusBWBRProcessCall, SmBusAddress, SMBUS_LIB_LENGTH (SmBusAddress), ReadBuffer);
|
/frameworks/av/media/libstagefright/ |
MediaCodecSource.cpp | 61 bool readBuffer(MediaBuffer **buffer); 93 bool readBuffer(MediaBuffer **buffer); 129 bool MediaCodecSource::Puller::Queue::readBuffer(MediaBuffer **mbuf) { 141 while (readBuffer(&mbuf)) { 147 bool MediaCodecSource::Puller::readBuffer(MediaBuffer **mbuf) { 149 return queue->readBuffer(mbuf); 674 while (!mAvailEncoderInputIndices.empty() && mPuller->readBuffer(&mbuf)) { [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/I2CLibPei/ |
I2CLibPei.h | 216 OUT UINT8 *ReadBuffer,
251 @param *ReadBuffer Address to which the value read has to be stored
262 OUT UINT8 *ReadBuffer
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Application/FirmwareUpdate/ |
FirmwareUpdate.h | 76 OUT VOID *ReadBuffer
|
/external/parameter-framework/upstream/parameter/ |
ParameterBlackboard.h | 53 void readBuffer(void *pvDstData, size_t size, size_t offset) const;
|
/system/tools/hidl/ |
FmqType.cpp | 75 << "readBuffer("
|
MemoryType.cpp | 70 << "readBuffer("
|
StringType.cpp | 85 << "readBuffer("
|
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
xm_api.h | 195 XMesaBuffer readBuffer ); 309 XMesaBuffer xm_read_buffer; /** current readbuffer */
|
/hardware/qcom/media/msm8974/mm-core/inc/ |
OMX_ContentPipe.h | 171 CPresult (*ReadBuffer)( CPhandle hContent, CPbyte **ppBuffer, CPuint *nSize, CPbool bForbidCopy); 173 /** Release a buffer obtained by ReadBuffer back to the pipe. */
|