Home
last modified time | relevance | path

Searched refs:tmpBuf (Results 1 – 8 of 8) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLCipherRSA.java249 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/framework/delibs/decpp/
DdeBlockBuffer.cpp72 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/deqp/execserver/
DxsPosixFileReader.cpp68 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()
DxsPosixTestProcess.cpp123 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()
DxsWin32TestProcess.cpp229 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/aac/libMpegTPEnc/src/
Dtpenc_latm.cpp789 FDK_BITSTREAM tmpBuf; in transportEnc_LatmGetFrame() local
791 FDKinitBitStream( &tmpBuf, hBs->hBitBuf.Buffer, hBs->hBitBuf.bufSize, 0, BS_WRITER ) ; in transportEnc_LatmGetFrame()
792 FDKpushFor( &tmpBuf, hAss->audioMuxLengthBytesPos ); in transportEnc_LatmGetFrame()
793 FDKwriteBits( &tmpBuf, hAss->audioMuxLengthBytes, 13 ); in transportEnc_LatmGetFrame()
794 FDKsyncCache( &tmpBuf ); in transportEnc_LatmGetFrame()
/external/deqp/execserver/tools/
DxsTest.cpp697 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/deqp/modules/glshared/
DglsShaderExecUtil.cpp796 tcu::TextureLevel tmpBuf; in execute() local
811 tmpBuf.setStorage(readFormat, framebufferW, framebufferH); in execute()
816 glu::readPixels(m_renderCtx, 0, 0, tmpBuf.getAccess()); in execute()
820 deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues*outVecSize*sizeof(deUint32)); in execute()
825 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx*4; in execute()