Home
last modified time | relevance | path

Searched refs:ppBuffer (Results 1 – 25 of 1056) sorted by relevance

12345678910>>...43

/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/clientsetup/win/
H A Dterminate.cpp44 int diagnostics_get_process_information(PVOID* ppBuffer, PULONG pcbBuffer) { in diagnostics_get_process_information() argument
55 *ppBuffer = HeapAlloc(hHeap, HEAP_ZERO_MEMORY, *pcbBuffer); in diagnostics_get_process_information()
56 if (ppBuffer == NULL) { in diagnostics_get_process_information()
62 *ppBuffer, in diagnostics_get_process_information()
68 HeapFree(hHeap, NULL, *ppBuffer); in diagnostics_get_process_information()
71 HeapFree(hHeap, NULL, *ppBuffer); in diagnostics_get_process_information()
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glShareTopology/
H A DsceneBase.cpp218 std::vector<unsigned int> ppBuffer; in CreateIndexBuffer() local
235 patchArray.primitiveIDOffset = (int)ppBuffer.size()/3; in CreateIndexBuffer()
250 ppBuffer.push_back(patchParams[k].field0); in CreateIndexBuffer()
251 ppBuffer.push_back(patchParams[k].field1); in CreateIndexBuffer()
252 ppBuffer.push_back(*((unsigned int *)&sharpness)); in CreateIndexBuffer()
274 ppBuffer.push_back(patchParamTable[i].faceIndex); in CreateIndexBuffer()
275 ppBuffer.push_back(patchParamTable[i].bitField.field); in CreateIndexBuffer()
276 ppBuffer.push_back(*((unsigned int *)&sharpness)); in CreateIndexBuffer()
288 glBufferData(GL_ARRAY_BUFFER, ppBuffer.size()*sizeof(unsigned int), in CreateIndexBuffer()
289 &ppBuffer[0], GL_STATIC_DRAW); in CreateIndexBuffer()
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/lib/
H A Dprocinfo_win.cpp21 static int get_process_information(PVOID* ppBuffer, PULONG pcbBuffer) { in get_process_information() argument
33 *ppBuffer = HeapAlloc(hHeap, HEAP_ZERO_MEMORY, *pcbBuffer); in get_process_information()
34 if (*ppBuffer == NULL) { in get_process_information()
40 *ppBuffer, in get_process_information()
53 HeapFree(hHeap, NULL, *ppBuffer); in get_process_information()
56 HeapFree(hHeap, NULL, *ppBuffer); in get_process_information()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/VirtualCamera/src/dshow/VirtualCamera/src/
H A Dmemallocator.cpp166 HRESULT AkVCam::MemAllocator::GetBuffer(IMediaSample **ppBuffer, in GetBuffer() argument
173 if (!ppBuffer) in GetBuffer()
176 *ppBuffer = nullptr; in GetBuffer()
195 *ppBuffer = sample; in GetBuffer()
196 (*ppBuffer)->AddRef(); in GetBuffer()
197 (*ppBuffer)->GetTime(pStartTime, pEndTime); in GetBuffer()
H A Dmediasample.h46 HRESULT STDMETHODCALLTYPE GetPointer(BYTE **ppBuffer);
80 HRESULT STDMETHODCALLTYPE GetPointer(BYTE **ppBuffer) \
82 return MediaSample::GetPointer(ppBuffer); \
/dports/devel/jna/jna-5.7.0/contrib/platform/test/com/sun/jna/platform/win32/
H A DWtsapi32Test.java121 PointerByReference ppBuffer = new PointerByReference(); in testWTSEnumerateSessions() local
124 WTS_INFO_CLASS.WTSClientProtocolType, ppBuffer, pBytes); in testWTSEnumerateSessions()
125 Pointer pBuffer = ppBuffer.getValue(); // pointer to USHORT in testWTSEnumerateSessions()
131 WTS_INFO_CLASS.WTSSessionInfo, ppBuffer, pBytes); in testWTSEnumerateSessions()
132 pBuffer = ppBuffer.getValue(); // returns WTSINFO in testWTSEnumerateSessions()
146 WTS_INFO_CLASS.WTSClientAddress, ppBuffer, pBytes); in testWTSEnumerateSessions()
147 pBuffer = ppBuffer.getValue(); // returns WTS_CLIENT_ADDRESS in testWTSEnumerateSessions()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/dmo/
H A Dbuffer.c105 char **ppBuffer, uint32_t *pcbLength ) in GetBufferAndLength() argument
109 if( !ppBuffer && !pcbLength ) return E_POINTER; in GetBufferAndLength()
110 if( ppBuffer ) *ppBuffer = (char*)p_mb->p_block->p_buffer; in GetBufferAndLength()
/dports/multimedia/libxine/xine-lib-1.2.11/src/libw32dll/dmo/
H A Dbuffer.c44 /* [out] */ char** ppBuffer, in CMediaBuffer_GetBufferAndLength() argument
49 if (!ppBuffer && !pcbLength) in CMediaBuffer_GetBufferAndLength()
51 if (ppBuffer) in CMediaBuffer_GetBufferAndLength()
52 *ppBuffer = cmb->mem; in CMediaBuffer_GetBufferAndLength()
/dports/multimedia/mplayer/mplayer-export-2021-12-29/loader/dmo/
H A Dbuffer.c44 /* [out] */ char** ppBuffer, in CMediaBuffer_GetBufferAndLength() argument
49 if (!ppBuffer && !pcbLength) in CMediaBuffer_GetBufferAndLength()
51 if (ppBuffer) in CMediaBuffer_GetBufferAndLength()
52 *ppBuffer = cmb->mem; in CMediaBuffer_GetBufferAndLength()
/dports/multimedia/mencoder/mplayer-export-2021-12-29/loader/dmo/
H A Dbuffer.c44 /* [out] */ char** ppBuffer, in CMediaBuffer_GetBufferAndLength() argument
49 if (!ppBuffer && !pcbLength) in CMediaBuffer_GetBufferAndLength()
51 if (ppBuffer) in CMediaBuffer_GetBufferAndLength()
52 *ppBuffer = cmb->mem; in CMediaBuffer_GetBufferAndLength()
/dports/math/gretl/gretl-2021d/plugin/libshp/
H A Dshpopen.c723 unsigned char** ppBuffer = NULL; in SHPReadObject() local
786 ppBuffer = &pBuffer; in SHPReadObject()
790 Shape->fX = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
791 Shape->fY = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
792 Shape->fZ = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
793 Shape->fM = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
926 unsigned char** ppBuffer = NULL; in SHPReadObject() local
961 ppBuffer = &pBuffer; in SHPReadObject()
966 Shape->fX = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
967 Shape->fY = SHPAllocBuffer(ppBuffer, sizeof(double) * nPoints); in SHPReadObject()
[all …]
/dports/math/cgal/CGAL-5.3/demo/Polyhedron/
H A Dtexture.h70 int ReadBuffer(float **ppBuffer, int width, int height,float ratio = 1.0f);
71 int WriteBuffer(float **ppBuffer,int width,int height);
72 int WriteBuffer32(float **ppBuffer,int width,int height);
H A Dtexture.cpp669 int Texture::ReadBuffer(float **ppBuffer, in ReadBuffer() argument
674 if(ppBuffer == nullptr) in ReadBuffer()
683 m_pData[m_WidthByte32*j + i*3] = (unsigned char)(ratio*ppBuffer[j][i]); in ReadBuffer()
684 m_pData[m_WidthByte32*j + i*3+1] = (unsigned char)(ratio*ppBuffer[j][i]); in ReadBuffer()
685 m_pData[m_WidthByte32*j + i*3+2] = (unsigned char)(ratio*ppBuffer[j][i]); in ReadBuffer()
693 int Texture::WriteBuffer(float **ppBuffer, in WriteBuffer() argument
697 if(ppBuffer == nullptr) in WriteBuffer()
702 ppBuffer[j][i] = m_pData[m_WidthByte32*j + i*3]; in WriteBuffer()
709 int Texture::WriteBuffer32(float **ppBuffer, in WriteBuffer32() argument
713 if(ppBuffer == nullptr) in WriteBuffer32()
[all …]
/dports/astro/cfitsio/cfitsio-3.49/
H A Dwindumpexts.c299 SkipToNextRecord(BYTE **ppBuffer) in SkipToNextRecord() argument
302 (*ppBuffer)++; /* Skip over the type.*/ in SkipToNextRecord()
303 length = *((WORD*)(*ppBuffer))++; /* Retrieve the length. */ in SkipToNextRecord()
304 *ppBuffer += length; /* Skip over the rest. */ in SkipToNextRecord()
305 return **ppBuffer; /* Return the type. */ in SkipToNextRecord()
/dports/science/healpix/Healpix_3.50/src/healpy/cfitsio/
H A Dwindumpexts.c298 SkipToNextRecord(BYTE **ppBuffer) in SkipToNextRecord() argument
301 (*ppBuffer)++; /* Skip over the type.*/ in SkipToNextRecord()
302 length = *((WORD*)(*ppBuffer))++; /* Retrieve the length. */ in SkipToNextRecord()
303 *ppBuffer += length; /* Skip over the rest. */ in SkipToNextRecord()
304 return **ppBuffer; /* Return the type. */ in SkipToNextRecord()
/dports/x11-toolkits/p5-Tk/Tk-804.035/pTk/mTk/tixWin/
H A DwinDumpExts.c305 SkipToNextRecord(BYTE **ppBuffer) in SkipToNextRecord() argument
308 (*ppBuffer)++; /* Skip over the type.*/ in SkipToNextRecord()
309 length = *((WORD*)(*ppBuffer))++; /* Retrieve the length. */ in SkipToNextRecord()
310 *ppBuffer += length; /* Skip over the rest. */ in SkipToNextRecord()
311 return **ppBuffer; /* Return the type. */ in SkipToNextRecord()
/dports/math/scilab/scilab-6.1.1/scilab/tools/Dumpexts/
H A DwinDumpExts.c336 BYTE SkipToNextRecord(BYTE **ppBuffer) in SkipToNextRecord() argument
339 (*ppBuffer)++; /* Skip over the type.*/ in SkipToNextRecord()
340 length = *((WORD*)(*ppBuffer))++; /* Retrieve the length. */ in SkipToNextRecord()
341 *ppBuffer += length; /* Skip over the rest. */ in SkipToNextRecord()
342 return **ppBuffer; /* Return the type. */ in SkipToNextRecord()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/media/platforms/wmf/
H A DWMF.h78 IMFMediaBuffer** ppBuffer);
83 IMFMediaBuffer** ppBuffer);
/dports/lang/spidermonkey60/firefox-60.9.0/dom/media/platforms/wmf/
H A DWMF.h78 IMFMediaBuffer **ppBuffer);
83 IMFMediaBuffer **ppBuffer);
/dports/net/xrdp-devel/xrdp-0.9.16/xrdpapi/
H A Dxrdpapi.c429 void **ppBuffer, unsigned int *pBytesReturned) in WTSVirtualChannelQuery() argument
443 *ppBuffer = malloc(4); in WTSVirtualChannelQuery()
444 if (*ppBuffer == NULL) in WTSVirtualChannelQuery()
448 memcpy(*ppBuffer, &(wts->fd), 4); in WTSVirtualChannelQuery()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/media/platforms/wmf/
H A DWMFUtils.cpp286 IMFMediaBuffer **ppBuffer) in MFCreateAlignedMemoryBuffer() argument
289 return (MFCreateAlignedMemoryBufferPtr)(cbMaxLength, fAlignmentFlags, ppBuffer); in MFCreateAlignedMemoryBuffer()
304 IMFMediaBuffer **ppBuffer) in MFCreateDXGISurfaceBuffer() argument
307 …MFCreateDXGISurfaceBufferPtr)(riid, punkSurface, uSubresourceIndex, fButtomUpWhenLinear, ppBuffer); in MFCreateDXGISurfaceBuffer()
/dports/x11-drivers/xorgxrdp/xrdp-0.9.17/xrdpapi/
H A Dxrdpapi.c429 void **ppBuffer, unsigned int *pBytesReturned) in WTSVirtualChannelQuery() argument
443 *ppBuffer = malloc(4); in WTSVirtualChannelQuery()
444 if (*ppBuffer == NULL) in WTSVirtualChannelQuery()
448 memcpy(*ppBuffer, &(wts->fd), 4); in WTSVirtualChannelQuery()
/dports/www/firefox-esr/firefox-91.8.0/dom/media/platforms/wmf/
H A DWMF.h78 IMFMediaBuffer** ppBuffer);
83 IMFMediaBuffer** ppBuffer);
/dports/www/firefox/firefox-99.0/dom/media/platforms/wmf/
H A DWMF.h78 IMFMediaBuffer** ppBuffer);
83 IMFMediaBuffer** ppBuffer);
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/platforms/wmf/
H A DWMF.h78 IMFMediaBuffer** ppBuffer);
83 IMFMediaBuffer** ppBuffer);

12345678910>>...43