Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLCipherRSA.java279 final byte[] tmpBuf; in engineDoFinal()
282 tmpBuf = new byte[buffer.length]; in engineDoFinal()
283 System.arraycopy(buffer, 0, tmpBuf, buffer.length - bufferOffset, bufferOffset); in engineDoFinal()
285 tmpBuf = Arrays.copyOf(buffer, bufferOffset); in engineDoFinal()
288 tmpBuf = buffer; in engineDoFinal()
292 int resultSize = doCryptoOperation(tmpBuf, output); in engineDoFinal()
301 abstract int doCryptoOperation(final byte[] tmpBuf, byte[] output) in doCryptoOperation() argument
363 int doCryptoOperation(final byte[] tmpBuf, byte[] output) in doCryptoOperation() argument
369 tmpBuf.length, tmpBuf, output, key.getNativeRef(), padding); in doCryptoOperation()
372 tmpBuf.length, tmpBuf, output, key.getNativeRef(), padding); in doCryptoOperation()
[all …]
/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/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/aac/libMpegTPEnc/src/
Dtpenc_latm.cpp788 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/
DxsTest.cpp698 deUint8 tmpBuf[1024*16]; in runProgram() local
701 deMemset(&tmpBuf, 'a', sizeof(tmpBuf)); in runProgram()
706 …XS_CHECK(deFile_write(file, &tmpBuf[0], de::min((int)sizeof(tmpBuf), DATA_SIZE-numWritten), &numWr… in runProgram()
/external/libjpeg-turbo/java/
DTJBench.java282 byte[] tmpBuf; in fullTest()
294 tmpBuf = new byte[pitch * h]; in fullTest()
321 System.arraycopy(srcBuf, w * ps * i, tmpBuf, pitch * i, w * ps); in fullTest()
418 decomp(srcBuf, jpegBuf, jpegSize, tmpBuf, w, h, subsamp, jpegQual, in fullTest()
/external/python/cpython2/PC/
D_winreg.c1198 char *tmpBuf; in PyEnumValue() local
1245 tmpBuf = (char *)PyMem_Realloc(retDataBuf, bufDataSize); in PyEnumValue()
1246 if (tmpBuf == NULL) { in PyEnumValue()
1251 retDataBuf = tmpBuf; in PyEnumValue()
/external/deqp/modules/glshared/
DglsShaderExecUtil.cpp657 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/
DvktShaderExecutor.cpp1335 tcu::TextureLevel tmpBuf; in execute() local
1381 tmpBuf.setStorage(readFormat, renderSize.x(), renderSize.y()); in execute()
1386 tcu::copy(tmpBuf.getAccess(), resultAccess); in execute()
1389 … deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues * outVecSize * sizeof(deUint32)); in execute()
1394 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx * 4; in execute()