Searched refs:pBuffer (Results 1 - 25 of 25) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DGlobalFunctions.h13 int ReadSafe(CIO * pIO, void * pBuffer, int nBytes);
14 int WriteSafe(CIO * pIO, void * pBuffer, int nBytes);
H A DStdLibFileIO.h22 int Read(void * pBuffer, unsigned int nBytesToRead, unsigned int * pBytesRead);
23 int Write(const void * pBuffer, unsigned int nBytesToWrite, unsigned int * pBytesWritten);
38 int GetName(char* pBuffer);
H A DIO.h30 virtual int Read(void * pBuffer, unsigned int nBytesToRead, unsigned int * pBytesRead) = 0;
31 virtual int Write(const void * pBuffer, unsigned int nBytesToWrite, unsigned int * pBytesWritten) = 0;
46 virtual int GetName(char* pBuffer) = 0;
H A DWAVInputSource.h22 virtual int GetData(unsigned char * pBuffer, int nBlocks, int * pBlocksRetrieved) = 0;
25 virtual int GetHeaderData(unsigned char * pBuffer) = 0;
26 virtual int GetTerminatingData(unsigned char * pBuffer) = 0;
42 int GetData(unsigned char * pBuffer, int nBlocks, int * pBlocksRetrieved);
45 int GetHeaderData(unsigned char * pBuffer);
46 int GetTerminatingData(unsigned char * pBuffer);
H A DGlobalFunctions.cpp49 int ReadSafe(CIO * pIO, void * pBuffer, int nBytes) argument
52 int nRetVal = pIO->Read(pBuffer, nBytes, &nBytesRead);
62 int WriteSafe(CIO * pIO, void * pBuffer, int nBytes) argument
65 int nRetVal = pIO->Write(pBuffer, nBytes, &nBytesWritten);
H A DCircleBuffer.cpp42 int CCircleBuffer::Get(unsigned char * pBuffer, int nBytes) argument
46 if (pBuffer != NULL && nBytes > 0)
51 memcpy(&pBuffer[0], &m_pBuffer[m_nHead], nHeadBytes);
56 memcpy(&pBuffer[nHeadBytes], &m_pBuffer[0], nFrontBytes);
H A DAPETag.cpp61 int CAPETagField::SaveField(char * pBuffer) argument
63 *((int *) pBuffer) = m_nFieldValueBytes;
64 pBuffer += 4;
65 *((int *) pBuffer) = m_nFieldFlags;
66 pBuffer += 4;
69 strcpy(pBuffer, spFieldNameANSI);
70 pBuffer += strlen(spFieldNameANSI) + 1;
72 memcpy(pBuffer, m_spFieldValue, m_nFieldValueBytes);
186 int CAPETag::WriteBufferToEndOfIO(void * pBuffer, int nBytes) argument
193 int nRetVal = m_spIO->Write(pBuffer, nByte
360 GetFieldString(const str_utf16 * pFieldName, str_utf16 * pBuffer, int * pBufferCharacters) argument
415 GetFieldBinary(const str_utf16 * pFieldName, void * pBuffer, int * pBufferBytes) argument
497 LoadField(const char * pBuffer, int nMaximumBytes, int * pBytes) argument
720 GetFieldID3String(const str_utf16 * pFieldName, char * pBuffer, int nBytes) argument
[all...]
H A DCircleBuffer.h41 int Get(unsigned char * pBuffer, int nBytes);
H A DAPETag.h194 int SaveField(char * pBuffer);
242 virtual int GetFieldBinary(const str_utf16 * pFieldName, void * pBuffer, int * pBufferBytes);
243 virtual int GetFieldString(const str_utf16 * pFieldName, str_utf16 * pBuffer, int * pBufferCharacters);
244 // virtual int GetFieldString(const str_utf16 * pFieldName, str_ansi * pBuffer, int * pBufferCharacters, BOOL bUTF8Encode = FALSE);
278 int WriteBufferToEndOfIO(void * pBuffer, int nBytes);
279 int LoadField(const char * pBuffer, int nMaximumBytes, int * pBytes);
285 int GetFieldID3String(const str_utf16 * pFieldName, char * pBuffer, int nBytes);
H A DAPECompress.cpp115 unsigned char * pBuffer = LockBuffer(&nBytesAvailable); local
116 if (pBuffer == NULL || nBytesAvailable <= 0)
121 memcpy(pBuffer, &pData[nBytesDone], nBytesToProcess);
198 unsigned char * pBuffer = LockBuffer(&nBytesAvailable); local
199 if ((pBuffer == NULL) || (nBytesAvailable == 0))
226 int nRetVal = pInputSource->GetData(pBuffer, nBlocksToAdd, &nBlocksAdded);
H A DAPEDecompress.h20 int GetData(char * pBuffer, int nBlocks, int * pBlocksRetrieved);
H A DWAVInputSource.cpp216 int CWAVInputSource::GetData(unsigned char * pBuffer, int nBlocks, int * pBlocksRetrieved) argument
223 if (m_spIO->Read(pBuffer, nBytes, &nBytesRead) != ERROR_SUCCESS)
231 int CWAVInputSource::GetHeaderData(unsigned char * pBuffer) argument
244 int nReadRetVal = m_spIO->Read(pBuffer, m_nHeaderBytes, &nBytesRead);
257 int CWAVInputSource::GetTerminatingData(unsigned char * pBuffer) argument
270 int nReadRetVal = m_spIO->Read(pBuffer, m_nTerminatingBytes, &nBytesRead);
H A DStdLibFileIO.cpp173 int CStdLibFileIO::Read(void * pBuffer, unsigned int nBytesToRead, unsigned int * pBytesRead) argument
175 *pBytesRead = fread(pBuffer, 1, nBytesToRead, m_pFile);
179 int CStdLibFileIO::Write(const void * pBuffer, unsigned int nBytesToWrite, unsigned int * pBytesWritten) argument
181 *pBytesWritten = fwrite(pBuffer, 1, nBytesToWrite, m_pFile);
215 int CStdLibFileIO::GetName(char * pBuffer) argument
217 strcpy(pBuffer, m_cFileName);
H A DAPEInfo.cpp246 char * pBuffer = (char *) nParam1; local
260 memcpy(pBuffer, &WAVHeader, sizeof(WAVE_HEADER));
272 memcpy(pBuffer, m_APEFileInfo.spWaveHeaderData, m_APEFileInfo.nWAVHeaderBytes);
280 char * pBuffer = (char *) nParam1; local
297 m_spIO->Read(pBuffer, m_APEFileInfo.nWAVTerminatingBytes, &nBytesRead);
H A DAPEDecompress.cpp82 int CAPEDecompress::GetData(char * pBuffer, int nBlocks, int * pBlocksRetrieved) argument
95 unsigned char * pOutputBuffer = (unsigned char *) pBuffer;
450 char * pBuffer = (char *) nParam1; local
463 memcpy(pBuffer, &WAVHeader, sizeof(WAVE_HEADER));
H A DMACLib.h232 // char * pBuffer
239 virtual int GetData(char * pBuffer, int nBlocks, int * pBlocksRetrieved) = 0;
/haiku/src/add-ons/kernel/drivers/audio/echo/generic/
H A DCEchoGals_midi.cpp57 PBYTE pBuffer,
61 return GetDspCommObject()->WriteMidi( pBuffer,
54 WriteMidi( DWORD dwExpectedCt, PBYTE pBuffer, PDWORD pdwActualCt ) argument
H A DCEchoGals.h650 PBYTE pBuffer,
/haiku/src/apps/cortex/addons/Flanger/
H A DFlangerNode.cpp308 BBuffer* pBuffer) {
309 ASSERT(pBuffer);
312 if(pBuffer->Header()->destination !=
316 pBuffer->Recycle();
320 if(pBuffer->Header()->time_source != TimeSource()->ID()) {
327 pBuffer->Recycle();
332 filterBuffer(pBuffer);
334 status_t err = SendBuffer(pBuffer, m_output.source, m_output.destination);
338 pBuffer->Recycle();
1402 BBuffer* pBuffer local
307 BufferReceived( BBuffer* pBuffer) argument
1435 filterBuffer( BBuffer* pBuffer) argument
[all...]
H A DFlangerNode.h112 BBuffer* pBuffer);
348 BBuffer* pBuffer); //nyi
/haiku/src/apps/cortex/addons/common/
H A DAudioBuffer.h78 class BBuffer* pBuffer,
H A DAudioBuffer.cpp102 BBuffer* pBuffer,
109 if(pBuffer->Header()->type != B_MEDIA_RAW_AUDIO)
113 m_pData = pBuffer->Data();
115 m_frames = pBuffer->Header()->size_used / m_frameSize;
100 AudioBuffer( const media_raw_audio_format& format, BBuffer* pBuffer, bool bCircular) argument
/haiku/src/apps/cortex/Persistence/
H A DImporter.cpp199 const char* pBuffer,
205 int err = XML_Parse(m_parser, pBuffer, length, last);
198 parseBuffer( const char* pBuffer, uint32 length, bool last) argument
/haiku/src/add-ons/media/media-add-ons/equalizer/
H A DEqualizerNode.h122 virtual void FilterBuffer(BBuffer* pBuffer);
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTNode.h129 virtual void FilterBuffer(BBuffer* pBuffer);

Completed in 111 milliseconds