HomeSort by relevance Sort by last modified time
    Searched refs:pBuffer (Results 1 - 25 of 390) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Buffers.c 63 LVM_Buffer_t *pBuffer;
71 pBuffer = pInstance->pBufferManagement;
72 pDest = pBuffer->pScratch;
73 *pToProcess = pBuffer->pScratch;
74 *pProcessed = pBuffer->pScratch;
84 pInstance->SamplesToProcess = (LVM_INT16)(*pNumSamples + pBuffer->InDelaySamples);
86 pBuffer->BufferState = LVM_FIRSTCALL;
89 pBuffer->SamplesToOutput = 0; /* Samples to output is same as
118 if (pBuffer->BufferState == LVM_FIRSTCALL)
120 pBuffer->BufferState = LVM_FIRSTLASTCALL
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssexttextbuf.cpp 14 void CFX_CSSExtTextBuf::AttachBuffer(const wchar_t* pBuffer, int32_t iBufLen) {
15 m_pExtBuffer = pBuffer;
cfx_cssexttextbuf.h 17 void AttachBuffer(const wchar_t* pBuffer, int32_t iBufLen);
  /external/pdfium/core/fxcrt/xml/
cxml_databufacc.cpp 9 CXML_DataBufAcc::CXML_DataBufAcc(const uint8_t* pBuffer, size_t size)
10 : m_pBuffer(pBuffer), m_dwSize(size), m_dwCurPos(0) {}
cxml_databufacc.h 14 CXML_DataBufAcc(const uint8_t* pBuffer, size_t size);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMemoryFileSystem.h 24 @param[in] pBuffer Pointer to file data
28 CPVRTMemoryFileSystem(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy = false);
33 @param[in] pBuffer Pointer to file data
39 static void RegisterMemoryFile(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy = false);
94 const void* pBuffer; ///< Pointer to file data.
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 82 * pBuffer - pointer to the beginning of the buffer. If the data type of
85 * the LSB of pBuffer[0].
91 uint8 *pBuffer;
pvmp3_getbits.cpp 116 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
130 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE));
131 Elem2 = *(ptBitStream->pBuffer + module(offset + 2, BUFSIZE));
132 Elem3 = *(ptBitStream->pBuffer + module(offset + 3, BUFSIZE));
164 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
171 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE));
200 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
207 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
read.c 29 @param [in] pBuffer Address of the buffer to receive the data
41 void * pBuffer
50 pBuffer,
write.c 24 @param [in] pBuffer Address of the data
36 const void * pBuffer
45 pBuffer,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcssl.h 15 RPCRTAPI RPC_STATUS RPC_ENTRY RpcCertGeneratePrincipalNameW(PCCERT_CONTEXT Context,DWORD Flags,RPC_WSTR *pBuffer);
16 RPCRTAPI RPC_STATUS RPC_ENTRY RpcCertGeneratePrincipalNameA(PCCERT_CONTEXT Context,DWORD Flags,RPC_CSTR *pBuffer);
optary.h 53 LPVOID pBuffer,
58 LPVOID pBuffer,
85 LPVOID pBuffer,
91 LPVOID pBuffer,
107 #define IOptionArray_QueryOption(This,dwOption,pBuffer,pcbBuf) (This)->lpVtbl->QueryOption(This,dwOption,pBuffer,pcbBuf)
108 #define IOptionArray_SetOption(This,dwOption,pBuffer,cbBuf) (This)->lpVtbl->SetOption(This,dwOption,pBuffer,cbBuf)
121 static FORCEINLINE HRESULT IOptionArray_QueryOption(IOptionArray* This,DWORD dwOption,LPVOID pBuffer,ULONG *pcbBuf) {
122 return This->lpVtbl->QueryOption(This,dwOption,pBuffer,pcbBuf)
    [all...]
ntmsmli.h 24 typedef DWORD (WINAPI *CLAIMMEDIALABEL)(const BYTE *const pBuffer,const DWORD nBufferSize,MediaLabelInfo *const pLabelInfo);
25 typedef DWORD (WINAPI *CLAIMMEDIALABELEX)(const BYTE *const pBuffer,const DWORD nBufferSize,MediaLabelInfo *const pLabelInfo,GUID *LabelGuid);
  /external/pdfium/core/fxcrt/
cfx_fileaccess_posix.h 27 size_t Read(void* pBuffer, size_t szBuffer) override;
28 size_t Write(const void* pBuffer, size_t szBuffer) override;
29 size_t ReadPos(void* pBuffer, size_t szBuffer, FX_FILESIZE pos) override;
30 size_t WritePos(const void* pBuffer,
cfx_fileaccess_windows.h 25 size_t Read(void* pBuffer, size_t szBuffer) override;
26 size_t Write(const void* pBuffer, size_t szBuffer) override;
27 size_t ReadPos(void* pBuffer, size_t szBuffer, FX_FILESIZE pos) override;
28 size_t WritePos(const void* pBuffer,
fx_random.h 16 void FX_Random_GenerateMT(uint32_t* pBuffer, int32_t iCount);
ifx_fileaccess.h 28 virtual size_t Read(void* pBuffer, size_t szBuffer) = 0;
29 virtual size_t Write(const void* pBuffer, size_t szBuffer) = 0;
30 virtual size_t ReadPos(void* pBuffer, size_t szBuffer, FX_FILESIZE pos) = 0;
31 virtual size_t WritePos(const void* pBuffer,
cfx_fileaccess_posix.cpp 101 size_t CFX_FileAccess_Posix::Read(void* pBuffer, size_t szBuffer) {
105 return read(m_nFD, pBuffer, szBuffer);
107 size_t CFX_FileAccess_Posix::Write(const void* pBuffer, size_t szBuffer) {
111 return write(m_nFD, pBuffer, szBuffer);
113 size_t CFX_FileAccess_Posix::ReadPos(void* pBuffer,
125 return Read(pBuffer, szBuffer);
127 size_t CFX_FileAccess_Posix::WritePos(const void* pBuffer,
136 return Write(pBuffer, szBuffer);
  /frameworks/wilhelm/src/desktop/
OutputMixExt.h 32 void (*FillBuffer)(SLOutputMixExtItf self, void *pBuffer, SLuint32 size);
48 extern void IOutputMixExt_FillBuffer(SLOutputMixExtItf self, void *pBuffer, SLuint32 size);
  /external/pdfium/core/fpdfapi/render/
cpdf_devicebuffer.cpp 66 auto pBuffer = pdfium::MakeRetain<CFX_DIBitmap>();
67 m_pDevice->CreateCompatibleBitmap(pBuffer, m_pBitmap->GetWidth(),
69 m_pContext->GetBackground(pBuffer, m_pObject.Get(), nullptr, &m_Matrix);
70 pBuffer->CompositeBitmap(0, 0, pBuffer->GetWidth(), pBuffer->GetHeight(),
72 m_pDevice->StretchDIBits(pBuffer, m_Rect.left, m_Rect.top, m_Rect.Width(),
  /hardware/intel/img/psb_video/src/mrst/
lnc_MPEG4ES.c 282 VAEncPictureParameterBufferMPEG4 *pBuffer;
294 pBuffer = (VAEncPictureParameterBufferMPEG4 *) obj_buffer->buffer_data;
298 ctx->ref_surface = SURFACE(pBuffer->reference_picture);
299 ctx->dest_surface = SURFACE(pBuffer->reconstructed_picture);
300 ctx->coded_buf = BUFFER(pBuffer->coded_buf);
302 ASSERT(ctx->Width == pBuffer->picture_width);
303 ASSERT(ctx->Height == pBuffer->picture_height);
316 pBuffer->vop_time_increment, /* In testbench, this should be FrameNum */
318 pBuffer->picture_type,
326 free(pBuffer);
    [all...]
lnc_H263ES.c 251 VAEncPictureParameterBufferH263 *pBuffer;
263 pBuffer = (VAEncPictureParameterBufferH263 *) obj_buffer->buffer_data;
267 ctx->ref_surface = SURFACE(pBuffer->reference_picture);
268 ctx->dest_surface = SURFACE(pBuffer->reconstructed_picture);
269 ctx->coded_buf = BUFFER(pBuffer->coded_buf);
271 ASSERT(ctx->Width == pBuffer->picture_width);
272 ASSERT(ctx->Height == pBuffer->picture_height);
298 pBuffer->picture_type,
311 free(pBuffer);
319 VAEncSliceParameterBuffer *pBuffer;
    [all...]
  /hardware/nxp/secure_element/libese-spi/p73/pal/spi/
phNxpEsePal_spi.h 84 **\param[in] pBuffer - buffer for read data
91 int phPalEse_spi_read(void* pDevHandle, uint8_t* pBuffer, int nNbBytesToRead);
98 * \param[in] pBuffer - buffer to write
105 int phPalEse_spi_write(void* pDevHandle, uint8_t* pBuffer, int nNbBytesToWrite);
114 * \param[in] pBuffer - buffer for read data
  /frameworks/av/media/libaudioprocessing/
BufferProviders.cpp 73 status_t CopyBufferProvider::getNextBuffer(AudioBufferProvider::Buffer *pBuffer)
76 // this, pBuffer, pBuffer->frameCount);
78 status_t res = mTrackBufferProvider->getNextBuffer(pBuffer);
80 copyFrames(pBuffer->raw, pBuffer->raw, pBuffer->frameCount);
85 mBuffer.frameCount = pBuffer->frameCount;
94 pBuffer->raw = NULL;
95 pBuffer->frameCount = 0
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
FwdLockGlue.h 27 * @param[out] pBuffer A reference to the buffer that should receive the random data.
32 int FwdLockGlue_GetRandomNumber(void *pBuffer, size_t numBytes);

Completed in 474 milliseconds

1 2 3 4 5 6 7 8 91011>>