Searched defs:bufSize (Results 1 - 25 of 68) sorted by relevance

123

/external/mesa3d/src/mesa/main/
H A Dvarray.h51 GLsizeiptrARB bufSize = (GLsizeiptrARB) array->BufferObj->Size; local
53 if (offset < bufSize) {
54 array->_MaxElement = (bufSize - offset + array->StrideB
H A Dpolygon.c243 _mesa_GetnPolygonStippleARB( GLsizei bufSize, GLubyte *dest ) argument
254 bufSize, dest, "glGetPolygonStipple");
H A Dcolortab.c92 GLsizei bufSize, GLvoid *data )
91 _mesa_GetnColorTableARB( GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data ) argument
H A Dhistogram.c48 GLenum type, GLsizei bufSize, GLvoid *values)
66 GLenum type, GLsizei bufSize, GLvoid *values)
47 _mesa_GetnMinmaxARB(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values) argument
65 _mesa_GetnHistogramARB(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values) argument
H A Dconvolve.c119 GLsizei bufSize, GLvoid *image)
118 _mesa_GetnConvolutionFilterARB(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image) argument
H A Dpixel.c176 " bufSize (%d) is too small)", clientMemSize);
338 _mesa_GetnPixelMapfvARB( GLenum map, GLsizei bufSize, GLfloat *values ) argument
355 GL_FLOAT, bufSize, values)) {
389 _mesa_GetnPixelMapuivARB( GLenum map, GLsizei bufSize, GLuint *values ) argument
406 GL_UNSIGNED_INT, bufSize, values)) {
440 _mesa_GetnPixelMapusvARB( GLenum map, GLsizei bufSize, GLushort *values ) argument
457 GL_UNSIGNED_SHORT, bufSize, values)) {
H A Dsyncobj.c373 _mesa_GetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, argument
420 const GLsizei copy_count = MIN2(size, bufSize);
/external/aac/libFDK/include/
H A DFDK_bitbuffer.h107 UINT bufSize; member in struct:__anon141
124 void FDK_CreateBitBuffer (HANDLE_FDK_BITBUF *hBitBuffer, UCHAR *pBuffer, UINT bufSize) ;
127 UINT bufSize, UINT validBits) ;
H A DFDK_bitstream.h125 * \param bufSize Length of BitBuffer array. (awaits size 2^n)
130 UINT bufSize,
134 FDK_InitBitBuffer(&hBitStream->hBitBuf, pBuffer, bufSize, 0) ;
149 * \param bufSize Length of BitBuffer array. (awaits size 2^n)
157 UINT bufSize,
161 FDK_InitBitBuffer(&hBitStream->hBitBuf, pBuffer, bufSize, validBits) ;
129 FDKcreateBitStream(UCHAR *pBuffer, UINT bufSize, FDK_BS_CFG config = BS_READER) argument
155 FDKinitBitStream(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *pBuffer, UINT bufSize, UINT validBits, FDK_BS_CFG config = BS_READER) argument
/external/deqp/framework/delibs/decpp/
H A DdeRingBuffer.cpp41 int bufSize = rnd.getInt(1, 2048); local
43 RingBuffer<int> buffer (bufSize);
59 DE_TEST_ASSERT(buffer.getNumFree() == bufSize - (writePos-readPos));
H A DdeSocket.hpp98 deSocketResult send (const void* buf, int bufSize, int* numSent) { return deSocket_send(m_socket, buf, bufSize, numSent); } argument
99 deSocketResult receive (void* buf, int bufSize, int* numRecv) { return deSocket_receive(m_socket, buf, bufSize, numRecv); } argument
H A DdeThreadSafeRingBuffer.cpp129 int bufSize = rnd.getInt(1, 2048); local
133 ThreadSafeRingBuffer<Message> buffer (bufSize);
/external/deqp/framework/delibs/destream/
H A DdeInStream.h38 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten);
44 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten) argument
46 return deIOStream_read(&(stream->ioStream), buf, bufSize, numWritten);
H A DdeOutStream.h38 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
45 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
47 return deIOStream_write(&(stream->ioStream), buf, bufSize, numWritten);
H A DdeFileStream.c34 static deStreamResult fileIOStream_read (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead) argument
40 deFileResult result = deFile_read(fileStream->file, buf, bufSize, &_numRead);
67 static deStreamResult fileIOStream_write (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
72 deFileResult result = deFile_write(fileStream->file, buf, bufSize, &_numWritten);
H A DdeRingbuffer.c113 static deStreamResult producerStream_write (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* written) argument
128 while (*written < bufSize)
140 writeSize = deMin32(ringbuffer->blockSize - ringbuffer->inPos, bufSize - *written);
195 static deStreamResult consumerStream_read (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* read) argument
204 while (*read < bufSize)
237 writeSize = deMin32(ringbuffer->blockUsage[ringbuffer->outBlock] - ringbuffer->outPos, bufSize - *read);
H A DdeThreadStream.c83 static deStreamResult threadInStream_read (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead) argument
86 return deInStream_read(&(threadStream->consumerStream), buf, bufSize, numRead);
152 static deStreamResult threadOutStream_write (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
155 return deOutStream_write(&(threadStream->producerStream), buf, bufSize, numWritten);
H A DdeIOStream.h52 typedef deStreamResult (*deIOStreamReadFunc) (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead);
53 typedef deStreamResult (*deIOStreamWriteFunc) (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
77 DE_INLINE deStreamResult deIOStream_read (deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead);
78 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
86 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
92 return stream->vfTable->writeFunc(stream->streamData, buf, bufSize, numWritten);
95 DE_INLINE deStreamResult deIOStream_read (deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead) argument
101 return stream->vfTable->readFunc(stream->streamData, buf, bufSize, numRead);
/external/icu/icu4c/source/test/threadtest/
H A Dconverttest.cpp51 int32_t bufSize = U_CNV_SAFECLONE_BUFFERSIZE; local
60 &bufSize,
/external/deqp/framework/delibs/dethread/unix/
H A DdeNamedSemaphoreUnix.c39 static void NamedSemaphore_getName (const NamedSemaphore* sem, char* buf, int bufSize) argument
41 deSprintf(buf, bufSize, "/desem-%d-%p", getpid(), (void*)sem);
/external/zlib/src/contrib/minizip/
H A Dcrypt.h92 int bufSize,
103 if (bufSize<RAND_HEAD_LEN)
90 crypthead(const char* passwd, unsigned char* buf, int bufSize, unsigned long* pkeys, const z_crc_t* pcrc_32_tab, unsigned long crcForCrypting) argument
/external/deqp/execserver/
H A DxsProtocol.cpp149 void Message::writeHeader (MessageType type, int messageSize, deUint8* dst, int bufSize) argument
151 XS_CHECK_MSG(bufSize >= MESSAGE_HEADER_SIZE, "Incomplete header");
/external/deqp/framework/delibs/deimage/
H A DdeTarga.c42 int bufSize; local
65 bufSize = stride;
66 buffer = deMalloc(bufSize);
87 fread(buffer, 1, bufSize, file);
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp116 UINT bufSize)
118 FDK_InitBitBuffer (*hBitBuf, pBuffer, bufSize, 0);
120 FDKmemclear((*hBitBuf)->Buffer, bufSize*sizeof(UCHAR));
126 UINT bufSize, UINT validBits)
135 hBitBuf->bufSize = bufSize ;
136 hBitBuf->bufBits = (bufSize << 3) ;
139 if (bufSize!=0) {
140 UINT x = 0, n=bufSize;
142 if ( bufSize !
115 FDK_CreateBitBuffer(HANDLE_FDK_BITBUF *hBitBuf, UCHAR *pBuffer, UINT bufSize) argument
125 FDK_InitBitBuffer(HANDLE_FDK_BITBUF hBitBuf, UCHAR *pBuffer, UINT bufSize, UINT validBits) argument
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeFile.c186 deFileResult deFile_read (deFile* file, void* buf, deInt64 bufSize, deInt64* numReadPtr) argument
188 deInt64 numRead = read(file->fd, buf, bufSize);
196 deFileResult deFile_write (deFile* file, const void* buf, deInt64 bufSize, deInt64* numWrittenPtr) argument
198 deInt64 numWritten = write(file->fd, buf, bufSize);
364 deFileResult deFile_read (deFile* file, void* buf, deInt64 bufSize, deInt64* numReadPtr) argument
366 DWORD bufSize32 = (DWORD)bufSize;
371 DE_ASSERT((deInt64)bufSize32 == bufSize);
381 deFileResult deFile_write (deFile* file, const void* buf, deInt64 bufSize, deInt64* numWrittenPtr) argument
383 DWORD bufSize32 = (DWORD)bufSize;
388 DE_ASSERT((deInt64)bufSize32 == bufSize);
[all...]

Completed in 547 milliseconds

123