/external/deqp/framework/delibs/debase/ |
D | deMemory.c | 60 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 …]
|
D | deMemory.h | 35 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/ |
D | glsBufferTestUtil.hpp | 54 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 …]
|
D | glsBufferTestUtil.cpp | 68 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/ |
D | deMemPool.hpp | 51 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()
|
D | deRingBuffer.cpp | 63 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/gptfdisk/ |
D | diskio-windows.cc | 215 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 …]
|
D | diskio-unix.cc | 297 int DiskIO::Read(void* buffer, int numBytes) { in Read() argument 309 if (numBytes <= blockSize) { in Read() 313 numBlocks = numBytes / blockSize; in Read() 314 if ((numBytes % blockSize) != 0) in Read() 325 memcpy(buffer, tempSpace, numBytes); in Read() 328 if (((numBlocks * blockSize) != numBytes) && (retval > 0)) in Read() 329 retval = numBytes; in Read() 340 int DiskIO::Write(void* buffer, int numBytes) { in Write() argument 352 if (numBytes <= blockSize) { in Write() 356 numBlocks = numBytes / blockSize; in Write() [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 230 static void testBytes(ByteStringFactory factory, int numBytes, long expectedCount) { 231 testBytes(factory, numBytes, expectedCount, 0, -1); 247 ByteStringFactory factory, int numBytes, long expectedCount, long start, long lim) { 249 byte[] bytes = new byte[numBytes]; 252 lim = 1L << (numBytes * 8); 258 for (int i = 0; i < numBytes; i++) { 274 assertEquals(isRoundTrippable, Utf8.isValidUtf8(bytes, 0, numBytes)); 278 int i = rnd.nextInt(numBytes); 279 int j = rnd.nextInt(numBytes); 287 int state3 = Utf8.partialIsValidUtf8(state2, bytes, j, numBytes); [all …]
|
/external/deqp/executor/ |
D | xeBatchExecutor.cpp | 287 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 …]
|
D | xeCallQueue.cpp | 178 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()
|
D | xeContainerFormatParser.cpp | 65 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/ |
D | es2fBufferTestUtil.hpp | 50 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);
|
D | es2fBufferTestUtil.cpp | 70 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/mesa3d/src/mesa/main/ |
D | eval.c | 498 GLsizei numBytes; in _mesa_GetnMapdvARB() local 521 numBytes = n * sizeof *v; in _mesa_GetnMapdvARB() 522 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 531 numBytes = 1 * sizeof *v; in _mesa_GetnMapdvARB() 532 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 537 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB() 538 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 546 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB() 547 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 553 numBytes = 4 * sizeof *v; in _mesa_GetnMapdvARB() [all …]
|
/external/libchrome/mojo/public/js/lib/ |
D | validator.js | 133 Validator.prototype.isValidRange = function(start, numBytes) { argument 136 if (start < this.offset || numBytes <= 0 || 138 !Number.isSafeInteger(numBytes)) 141 var newOffset = start + numBytes; 148 Validator.prototype.claimRange = function(start, numBytes) { argument 149 if (this.isValidRange(start, numBytes)) { 150 this.offset = start + numBytes; 244 var numBytes = this.message.buffer.getUint32(offset); 246 if (numBytes < minNumBytes) 249 if (!this.claimRange(offset, numBytes)) [all …]
|
/external/deqp/framework/delibs/dethread/win32/ |
D | deThreadWin32.c | 119 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/deqp/framework/delibs/depool/ |
D | deMemPool.c | 426 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/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/impl/ |
D | CoreImpl.java | 141 SharedBufferHandle.CreateOptions options, long numBytes) { in createSharedBuffer() argument 148 ResultAnd<Integer> result = nativeCreateSharedBuffer(optionsBuffer, numBytes); in createSharedBuffer() 275 int discardData(DataPipeConsumerHandleImpl handle, int numBytes, DataPipe.ReadFlags flags) { in discardData() argument 276 ResultAnd<Integer> result = nativeReadData(handle.getMojoHandle(), null, numBytes, in discardData() 307 DataPipeConsumerHandleImpl handle, int numBytes, DataPipe.ReadFlags flags) { in beginReadData() argument 309 nativeBeginReadData(handle.getMojoHandle(), numBytes, flags.getFlags()); in beginReadData() 339 DataPipeProducerHandleImpl handle, int numBytes, DataPipe.WriteFlags flags) { in beginWriteData() argument 341 nativeBeginWriteData(handle.getMojoHandle(), numBytes, flags.getFlags()); in beginWriteData() 378 ByteBuffer map(SharedBufferHandleImpl handle, long offset, long numBytes, MapFlags flags) { in map() argument 380 nativeMap(handle.getMojoHandle(), offset, numBytes, flags.getFlags()); in map() [all …]
|
D | DataPipeConsumerHandleImpl.java | 43 public int discardData(int numBytes, ReadFlags flags) { in discardData() argument 44 return mCore.discardData(this, numBytes, flags); in discardData() 59 public ByteBuffer beginReadData(int numBytes, ReadFlags flags) { in beginReadData() argument 60 return mCore.beginReadData(this, numBytes, flags); in beginReadData()
|
/external/conscrypt/repackaged/benchmark-base/src/main/java/com/android/org/conscrypt/ |
D | ServerSocketBenchmark.java | 70 public void processMessage(byte[] inMessage, int numBytes, OutputStream os) { in ServerSocketBenchmark() 74 os.write(inMessage, 0, numBytes); in ServerSocketBenchmark() 108 int numBytes = client.readMessage(buffer); in ServerSocketBenchmark() 109 if (numBytes < 0) { in ServerSocketBenchmark() 112 assertEquals(config.messageSize(), numBytes); in ServerSocketBenchmark() 116 bytesCounter.addAndGet(numBytes); in ServerSocketBenchmark()
|
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/ |
D | ServerSocketBenchmark.java | 68 public void processMessage(byte[] inMessage, int numBytes, OutputStream os) { in ServerSocketBenchmark() 72 os.write(inMessage, 0, numBytes); in ServerSocketBenchmark() 106 int numBytes = client.readMessage(buffer); in ServerSocketBenchmark() 107 if (numBytes < 0) { in ServerSocketBenchmark() 110 assertEquals(config.messageSize(), numBytes); in ServerSocketBenchmark() 114 bytesCounter.addAndGet(numBytes); in ServerSocketBenchmark()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | PoolAlloc.cpp | 240 void* TPoolAllocator::allocate(size_t numBytes) in allocate() argument 247 totalBytes += numBytes; in allocate() 254 size_t allocationSize = TAllocation::allocationSize(numBytes); in allocate() 256 if (allocationSize < numBytes) in allocate() 271 return initializeAllocation(inUseList, memory, numBytes); in allocate() 318 return initializeAllocation(inUseList, ret, numBytes); in allocate() 320 void *alloc = malloc(numBytes + alignmentMask); in allocate()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | AbstractStream.java | 94 protected final void onSendingBytes(int numBytes) { in onSendingBytes() argument 95 transportState().onSendingBytes(numBytes); in onSendingBytes() 259 private void onSendingBytes(int numBytes) { in onSendingBytes() argument 261 numSentBytesQueued += numBytes; in onSendingBytes() 273 public final void onSentBytes(int numBytes) { in onSentBytes() argument 279 numSentBytesQueued -= numBytes; in onSentBytes()
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | Utf8Test.java | 281 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()
|