Home
last modified time | relevance | path

Searched refs:numBytes (Results 1 – 25 of 203) sorted by relevance

123456789

/external/deqp/framework/delibs/debase/
DdeMemory.c60 void* deMalloc (size_t numBytes) in deMalloc() argument
64 DE_ASSERT(numBytes > 0); in deMalloc()
66 ptr = malloc((size_t)numBytes); in deMalloc()
72 memset(ptr, 0xcd, numBytes); in deMalloc()
77 VALGRIND_MAKE_MEM_UNDEFINED(ptr, numBytes); in deMalloc()
90 void* deCalloc (size_t numBytes) in deCalloc() argument
92 void* ptr = deMalloc(numBytes); in deCalloc()
94 deMemset(ptr, 0, numBytes); in deCalloc()
104 void* deRealloc (void* ptr, size_t numBytes) in deRealloc() argument
106 return realloc(ptr, numBytes); in deRealloc()
[all …]
DdeMemory.h35 void* deMalloc (size_t numBytes);
36 void* deCalloc (size_t numBytes);
37 void* deRealloc (void* ptr, size_t numBytes);
40 void* deAlignedMalloc (size_t numBytes, size_t alignBytes);
41 void* deAlignedRealloc(void* ptr, size_t numBytes, size_t alignBytes);
52 DE_INLINE void deMemset (void* ptr, int value, size_t numBytes) in deMemset() argument
55 memset(ptr, value, numBytes); in deMemset()
58 DE_INLINE int deMemCmp (const void* a, const void* b, size_t numBytes) in deMemCmp() argument
60 return memcmp(a, b, numBytes); in deMemCmp()
70 DE_INLINE void* deMemcpy (void* dst, const void* src, size_t numBytes) in deMemcpy() argument
[all …]
/external/deqp/modules/glshared/
DglsBufferTestUtil.hpp54 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed);
55 …compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
90 void setSize (int numBytes);
91 void setData (int numBytes, const deUint8* bytes);
92 void setSubData (int offset, int numBytes, const deUint8* bytes);
123 …virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes) = DE_NU…
124 …virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint3…
142 void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes);
143 …void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 targ…
160 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes);
[all …]
DglsBufferTestUtil.cpp68 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed) in fillWithRandomBytes() argument
70 …std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUin… in fillWithRandomBytes()
73 …l compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes) in compareByteArrays() argument
84 for (;ndx < numBytes; ndx++) in compareByteArrays()
233 void ReferenceBuffer::setSize (int numBytes) in setSize() argument
235 m_data.resize(numBytes); in setSize()
238 void ReferenceBuffer::setData (int numBytes, const deUint8* bytes) in setData() argument
240 m_data.resize(numBytes); in setData()
241 std::copy(bytes, bytes+numBytes, m_data.begin()); in setData()
244 void ReferenceBuffer::setSubData (int offset, int numBytes, const deUint8* bytes) in setSubData() argument
[all …]
/external/deqp/framework/delibs/decpp/
DdeMemPool.hpp51 void* alloc (deUintptr numBytes);
52 void* alignedAlloc (deUintptr numBytes, deUint32 alignBytes);
86 inline void* MemPool::alloc (deUintptr numBytes) in alloc() argument
89 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alloc()
90 void* ptr = deMemPool_alloc(m_pool, (int)numBytes); in alloc()
96 inline void* MemPool::alignedAlloc (deUintptr numBytes, deUint32 alignBytes) in alignedAlloc() argument
99 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alignedAlloc()
100 void* ptr = deMemPool_alignedAlloc(m_pool, (int)numBytes, alignBytes); in alignedAlloc()
DdeRingBuffer.cpp63 int numBytes = rnd.getInt(1, buffer.getNumElements()); in RingBuffer_selfTest() local
64 vector<int> tmp (numBytes); in RingBuffer_selfTest()
66 buffer.popBack(&tmp[0], numBytes); in RingBuffer_selfTest()
68 for (int i = 0; i < numBytes; i++) in RingBuffer_selfTest()
71 readPos += numBytes; in RingBuffer_selfTest()
77 int numBytes = rnd.getInt(1, de::min(dataSize-writePos, buffer.getNumFree())); in RingBuffer_selfTest() local
78 buffer.pushFront(&data[writePos], numBytes); in RingBuffer_selfTest()
79 writePos += numBytes; in RingBuffer_selfTest()
/external/protobuf/java/src/test/java/com/google/protobuf/
DIsValidUtf8TestUtil.java189 static void testBytes(int numBytes, long expectedCount)
191 testBytes(numBytes, expectedCount, 0, -1);
205 static void testBytes(int numBytes, long expectedCount, long start, long lim)
208 byte[] bytes = new byte[numBytes];
211 lim = 1L << (numBytes * 8);
217 for (int i = 0; i < numBytes; i++) {
233 assertEquals(isRoundTrippable, Utf8.isValidUtf8(bytes, 0, numBytes));
237 int i = rnd.nextInt(numBytes);
238 int j = rnd.nextInt(numBytes);
244 int state3 = Utf8.partialIsValidUtf8(state2, bytes, j, numBytes);
[all …]
/external/gptfdisk/
Ddiskio-windows.cc215 int DiskIO::Read(void* buffer, int numBytes) { in Read() argument
228 if (numBytes <= blockSize) { in Read()
232 numBlocks = numBytes / blockSize; in Read()
233 if ((numBytes % blockSize) != 0) in Read()
244 for (i = 0; i < numBytes; i++) { in Read()
249 if (((numBlocks * blockSize) != numBytes) && (retval > 0)) in Read()
250 retval = numBytes; in Read()
259 int DiskIO::Write(void* buffer, int numBytes) { in Write() argument
272 if (numBytes <= blockSize) { in Write()
276 numBlocks = numBytes / blockSize; in Write()
[all …]
Ddiskio-unix.cc295 int DiskIO::Read(void* buffer, int numBytes) { in Read() argument
307 if (numBytes <= blockSize) { in Read()
311 numBlocks = numBytes / blockSize; in Read()
312 if ((numBytes % blockSize) != 0) in Read()
323 memcpy(buffer, tempSpace, numBytes); in Read()
326 if (((numBlocks * blockSize) != numBytes) && (retval > 0)) in Read()
327 retval = numBytes; in Read()
338 int DiskIO::Write(void* buffer, int numBytes) { in Write() argument
350 if (numBytes <= blockSize) { in Write()
354 numBlocks = numBytes / blockSize; in Write()
[all …]
/external/deqp/executor/
DxeBatchExecutor.cpp287 void BatchExecutor::onTestLogData (const deUint8* bytes, size_t numBytes) in onTestLogData() argument
291 m_testLogParser.parse(bytes, numBytes); in onTestLogData()
300 void BatchExecutor::onInfoLogData (const deUint8* bytes, size_t numBytes) in onInfoLogData() argument
302 if (numBytes > 0 && m_infoLog) in onInfoLogData()
303 m_infoLog->append(bytes, numBytes); in onInfoLogData()
362 void BatchExecutor::enqueueTestLogData (void* userPtr, const deUint8* bytes, size_t numBytes) in enqueueTestLogData() argument
368 << numBytes; in enqueueTestLogData()
370 writer.write(bytes, numBytes); in enqueueTestLogData()
374 void BatchExecutor::enqueueInfoLogData (void* userPtr, const deUint8* bytes, size_t numBytes) in enqueueInfoLogData() argument
380 << numBytes; in enqueueInfoLogData()
[all …]
DxeCallQueue.cpp178 void CallReader::read (deUint8* bytes, size_t numBytes) in read() argument
180 DE_ASSERT(m_curPos + numBytes <= m_call->getDataSize()); in read()
181 deMemcpy(bytes, m_call->getData()+m_curPos, numBytes); in read()
182 m_curPos += numBytes; in read()
185 const deUint8* CallReader::getDataBlock (size_t numBytes) in getDataBlock() argument
187 DE_ASSERT(m_curPos + numBytes <= m_call->getDataSize()); in getDataBlock()
190 m_curPos += numBytes; in getDataBlock()
232 void CallWriter::write (const deUint8* bytes, size_t numBytes) in write() argument
236 m_call->setDataSize(curPos+numBytes); in write()
237 deMemcpy(m_call->getData()+curPos, bytes, numBytes); in write()
DxeContainerFormatParser.cpp65 void ContainerFormatParser::feed (const deUint8* bytes, size_t numBytes) in feed() argument
68 if (m_buf.getNumFree() < (int)numBytes) in feed()
69 m_buf.resize(getNextBufferSize(m_buf.getSize(), m_buf.getNumElements()+(int)numBytes)); in feed()
72 m_buf.pushFront(bytes, (int)numBytes); in feed()
109 void ContainerFormatParser::getData (deUint8* dst, int numBytes, int offset) in getData() argument
111 …DE_ASSERT(de::inBounds(offset, 0, m_elementLen) && numBytes > 0 && de::inRange(numBytes+offset, 0,… in getData()
113 for (int ndx = 0; ndx < numBytes; ndx++) in getData()
/external/deqp/modules/gles2/functional/
Des2fBufferTestUtil.hpp50 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed);
51 …compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
83 void setSize (int numBytes);
84 void setData (int numBytes, const deUint8* bytes);
85 void setSubData (int offset, int numBytes, const deUint8* bytes);
112 …virtual bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes) = …
132 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes);
149 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes);
165 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes);
Des2fBufferTestUtil.cpp70 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed) in fillWithRandomBytes() argument
72 …std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUin… in fillWithRandomBytes()
75 …l compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes) in compareByteArrays() argument
86 for (;ndx < numBytes; ndx++) in compareByteArrays()
221 void ReferenceBuffer::setSize (int numBytes) in setSize() argument
223 m_data.resize(numBytes); in setSize()
226 void ReferenceBuffer::setData (int numBytes, const deUint8* bytes) in setData() argument
228 m_data.resize(numBytes); in setData()
229 std::copy(bytes, bytes+numBytes, m_data.begin()); in setData()
232 void ReferenceBuffer::setSubData (int offset, int numBytes, const deUint8* bytes) in setSubData() argument
[all …]
/external/deqp/framework/delibs/dethread/win32/
DdeThreadWin32.c119 static SYSTEM_LOGICAL_PROCESSOR_INFORMATION* getWin32ProcessorInfo (deUint32* numBytes) in getWin32ProcessorInfo() argument
131 *numBytes = inOutLen; in getWin32ProcessorInfo()
158 …cessorInfo (ProcessorInfo* dst, const SYSTEM_LOGICAL_PROCESSOR_INFORMATION* src, deUint32 numBytes) in parseWin32ProcessorInfo() argument
164 …nst deUint8*)cur - (const deUint8*)src) + sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION) <= numBytes) in parseWin32ProcessorInfo()
182 deUint32 numBytes = 0; in getProcessorInfo() local
183 SYSTEM_LOGICAL_PROCESSOR_INFORMATION* rawInfo = getWin32ProcessorInfo(&numBytes); in getProcessorInfo()
185 if (!numBytes) in getProcessorInfo()
188 parseWin32ProcessorInfo(info, rawInfo, numBytes); in getProcessorInfo()
/external/mesa3d/src/mesa/main/
Deval.c556 GLsizei numBytes; in _mesa_GetnMapdvARB() local
581 numBytes = n * sizeof *v; in _mesa_GetnMapdvARB()
582 if (bufSize < numBytes) in _mesa_GetnMapdvARB()
591 numBytes = 1 * sizeof *v; in _mesa_GetnMapdvARB()
592 if (bufSize < numBytes) in _mesa_GetnMapdvARB()
597 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB()
598 if (bufSize < numBytes) in _mesa_GetnMapdvARB()
606 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB()
607 if (bufSize < numBytes) in _mesa_GetnMapdvARB()
613 numBytes = 4 * sizeof *v; in _mesa_GetnMapdvARB()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmComputeShaderCase.cpp52 …ceInterface& vkdi, const VkDevice& device, Allocator& allocator, size_t numBytes, AllocationMp* ou… in createBufferAndBindMemory() argument
59 numBytes, // size in createBufferAndBindMemory()
76 …eInterface& vkdi, const VkDevice& device, Allocation* destAlloc, size_t numBytes, const void* data) in setMemory() argument
80 deMemcpy((deUint8*)hostPtr, data, numBytes); in setMemory()
81 flushMappedMemoryRange(vkdi, device, destAlloc->getMemory(), destAlloc->getOffset(), numBytes); in setMemory()
84 …viceInterface& vkdi, const VkDevice& device, Allocation* destAlloc, size_t numBytes, deUint8 value) in fillMemoryWithValue() argument
88 deMemset((deUint8*)hostPtr, value, numBytes); in fillMemoryWithValue()
89 flushMappedMemoryRange(vkdi, device, destAlloc->getMemory(), destAlloc->getOffset(), numBytes); in fillMemoryWithValue()
311 const size_t numBytes = input->getNumBytes(); in iterate() local
312 …buffer = new BufferHandleUp(createBufferAndBindMemory(vkdi, device, allocator, numBytes, &alloc)); in iterate()
[all …]
/external/deqp/framework/delibs/depool/
DdeMemPool.c426 DE_INLINE void* deMemPool_allocInternal (deMemPool* pool, size_t numBytes, deUint32 alignBytes) in deMemPool_allocInternal() argument
442 void* ptr = deAlignedMalloc(numBytes, alignBytes); in deMemPool_allocInternal()
466 if (numBytes + alignPadding > (size_t)(curPage->capacity - curPage->bytesAllocated)) in deMemPool_allocInternal()
470 …int newPageCapacity = deMax32(deMin32(2*curPage->capacity, MAX_PAGE_SIZE), ((int)numBytes)+maxAl… in deMemPool_allocInternal()
485 DE_ASSERT(numBytes + alignPadding <= (size_t)curPage->capacity); in deMemPool_allocInternal()
488 curPage->bytesAllocated += (int)(numBytes + alignPadding); in deMemPool_allocInternal()
499 void* deMemPool_alloc (deMemPool* pool, size_t numBytes) in deMemPool_alloc() argument
503 DE_ASSERT(numBytes > 0); in deMemPool_alloc()
504 ptr = deMemPool_allocInternal(pool, numBytes, DE_POOL_DEFAULT_ALLOC_ALIGNMENT); in deMemPool_alloc()
517 void* deMemPool_alignedAlloc (deMemPool* pool, size_t numBytes, deUint32 alignBytes) in deMemPool_alignedAlloc() argument
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DUtf8Test.java281 private static void testBytes(int numBytes, long expectedCount) { in testBytes() argument
282 testBytes(numBytes, expectedCount, 0, -1); in testBytes()
297 private static void testBytes(int numBytes, long expectedCount, long start, in testBytes() argument
299 byte[] bytes = new byte[numBytes]; in testBytes()
301 lim = 1L << (numBytes * 8); in testBytes()
306 for (int i = 0; i < numBytes; i++) { in testBytes()
311 assertEquals(isRoundTrippable, Utf8.isWellFormed(bytes, 0, numBytes)); in testBytes()
/external/deqp/execserver/
DxsWin32TestProcess.hpp121 int read (deUint8* dst, int numBytes) { return m_logBuffer.tryRead(numBytes, dst); } in read() argument
192 virtual int readTestLog (deUint8* dst, int numBytes);
193 …virtual int readInfoLog (deUint8* dst, int numBytes) { return m_infoBuffer.tryRead(numBytes,… in readInfoLog() argument
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/stub/command/
DFileRetrCommandHandler.java88 int numBytes; in processData() local
89 while ((numBytes = inputStream.read(buffer)) != -1) { in processData()
90 LOG.trace("Sending " + numBytes + " bytes..."); in processData()
91 session.sendData(buffer, numBytes); in processData()
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
DFileRetrCommandHandler.java88 int numBytes; in processData() local
89 while ((numBytes = inputStream.read(buffer)) != -1) { in processData()
90 LOG.trace("Sending " + numBytes + " bytes..."); in processData()
91 session.sendData(buffer, numBytes); in processData()
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/stub/command/
DFileRetrCommandHandler.java88 int numBytes; in processData() local
89 while ((numBytes = inputStream.read(buffer)) != -1) { in processData()
90 LOG.trace("Sending " + numBytes + " bytes..."); in processData()
91 session.sendData(buffer, numBytes); in processData()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
DFileRetrCommandHandler.java88 int numBytes; in processData() local
89 while ((numBytes = inputStream.read(buffer)) != -1) { in processData()
90 LOG.trace("Sending " + numBytes + " bytes..."); in processData()
91 session.sendData(buffer, numBytes); in processData()
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/stub/command/
DFileRetrCommandHandler.java88 int numBytes; in processData() local
89 while ((numBytes = inputStream.read(buffer)) != -1) { in processData()
90 LOG.trace("Sending " + numBytes + " bytes..."); in processData()
91 session.sendData(buffer, numBytes); in processData()

123456789