/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLCipherRSA.java | 249 final byte[] tmpBuf; in engineDoFinal() 252 tmpBuf = new byte[buffer.length]; in engineDoFinal() 253 System.arraycopy(buffer, 0, tmpBuf, buffer.length - bufferOffset, bufferOffset); in engineDoFinal() 255 tmpBuf = Arrays.copyOf(buffer, bufferOffset); in engineDoFinal() 258 tmpBuf = buffer; in engineDoFinal() 265 resultSize = NativeCrypto.RSA_private_encrypt(tmpBuf.length, tmpBuf, output, in engineDoFinal() 268 resultSize = NativeCrypto.RSA_public_encrypt(tmpBuf.length, tmpBuf, output, in engineDoFinal() 274 resultSize = NativeCrypto.RSA_private_decrypt(tmpBuf.length, tmpBuf, output, in engineDoFinal() 277 resultSize = NativeCrypto.RSA_public_decrypt(tmpBuf.length, tmpBuf, output, in engineDoFinal()
|
/external/deqp/execserver/ |
D | xsPosixFileReader.cpp | 68 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE); in run() local 73 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run() 80 m_buf.write((int)numRead, &tmpBuf[0]); in run()
|
D | xsPosixTestProcess.cpp | 123 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE); in run() local 128 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run() 135 m_buf->write((int)numRead, &tmpBuf[0]); in run()
|
D | xsWin32TestProcess.cpp | 229 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE); in run() local 243 if (!ReadFile(m_handle, &tmpBuf[0], (DWORD)tmpBuf.size(), NULL, &overlapped)) in run() 311 m_dstBuf->write((int)numBytesRead, &tmpBuf[0]); in run()
|
/external/deqp/framework/delibs/decpp/ |
D | deBlockBuffer.cpp | 72 Message tmpBuf [64]; in run() local 77 int numToRead = rnd.getInt(1, DE_LENGTH_OF_ARRAY(tmpBuf)); in run() 78 int numRead = m_buffer.tryRead(numToRead, &tmpBuf[0]); in run() 82 const Message& msg = tmpBuf[ndx]; in run() 91 m_buffer.write(numRead-ndx-1, &tmpBuf[ndx+1]); in run() 139 Message tmpBuf[64]; in run() local 143 int writeSize = rnd.getInt(1, de::min(m_numMessages-msgNdx, DE_LENGTH_OF_ARRAY(tmpBuf))); in run() 145 tmpBuf[ndx] = Message(m_threadId, (deUint16)msgNdx++); in run() 147 m_buffer.write(writeSize, &tmpBuf[0]); in run()
|
/external/aac/libMpegTPEnc/src/ |
D | tpenc_latm.cpp | 788 FDK_BITSTREAM tmpBuf; in transportEnc_LatmGetFrame() local 790 FDKinitBitStream( &tmpBuf, hBs->hBitBuf.Buffer, hBs->hBitBuf.bufSize, 0, BS_WRITER ) ; in transportEnc_LatmGetFrame() 791 FDKpushFor( &tmpBuf, hAss->audioMuxLengthBytesPos ); in transportEnc_LatmGetFrame() 792 FDKwriteBits( &tmpBuf, hAss->audioMuxLengthBytes, 13 ); in transportEnc_LatmGetFrame() 793 FDKsyncCache( &tmpBuf ); in transportEnc_LatmGetFrame()
|
/external/deqp/execserver/tools/ |
D | xsTest.cpp | 697 deUint8 tmpBuf[1024*16]; in runProgram() local 700 deMemset(&tmpBuf, 'a', sizeof(tmpBuf)); in runProgram() 705 …XS_CHECK(deFile_write(file, &tmpBuf[0], de::min((int)sizeof(tmpBuf), DATA_SIZE-numWritten), &numWr… in runProgram()
|
/external/libjpeg-turbo/java/ |
D | TJBench.java | 275 byte[] tmpBuf; in fullTest() 285 tmpBuf = new byte[pitch * h]; in fullTest() 312 System.arraycopy(srcBuf, w * ps * i, tmpBuf, pitch * i, w * ps); in fullTest() 409 decomp(srcBuf, jpegBuf, jpegSize, tmpBuf, w, h, subsamp, jpegQual, in fullTest()
|
/external/deqp/modules/glshared/ |
D | glsShaderExecUtil.cpp | 657 tcu::TextureLevel tmpBuf; in execute() local 672 tmpBuf.setStorage(readFormat, framebufferW, framebufferH); in execute() 677 glu::readPixels(m_renderCtx, 0, 0, tmpBuf.getAccess()); in execute() 681 deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues*outVecSize*sizeof(deUint32)); in execute() 686 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx*4; in execute()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 1375 tcu::TextureLevel tmpBuf; in execute() local 1421 tmpBuf.setStorage(readFormat, renderSize.x(), renderSize.y()); in execute() 1426 tcu::copy(tmpBuf.getAccess(), resultAccess); in execute() 1429 … deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues * outVecSize * sizeof(deUint32)); in execute() 1434 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx * 4; in execute()
|