HomeSort by relevance Sort by last modified time
    Searched refs:tmpBuf (Results 1 - 21 of 21) sorted by null

  /external/deqp/execserver/
xsPosixFileReader.cpp 68 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE);
73 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead);
80 m_buf.write((int)numRead, &tmpBuf[0]);
xsPosixTestProcess.cpp 123 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE);
128 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead);
135 m_buf->write((int)numRead, &tmpBuf[0]);
xsWin32TestProcess.cpp 229 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE);
243 if (!ReadFile(m_handle, &tmpBuf[0], (DWORD)tmpBuf.size(), NULL, &overlapped))
311 m_dstBuf->write((int)numBytesRead, &tmpBuf[0]);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 248 final byte[] tmpBuf;
251 tmpBuf = new byte[buffer.length];
252 System.arraycopy(buffer, 0, tmpBuf, buffer.length - bufferOffset, bufferOffset);
254 tmpBuf = Arrays.copyOf(buffer, bufferOffset);
257 tmpBuf = buffer;
264 resultSize = NativeCrypto.RSA_private_encrypt(tmpBuf.length, tmpBuf, output,
267 resultSize = NativeCrypto.RSA_public_encrypt(tmpBuf.length, tmpBuf, output,
273 resultSize = NativeCrypto.RSA_private_decrypt(tmpBuf.length, tmpBuf, output
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 36 private byte tmpBuf[] = new byte[4];
447 mDexFile.readFully(tmpBuf, 0, 1);
448 return tmpBuf[0];
455 mDexFile.readFully(tmpBuf, 0, 2);
457 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8));
459 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8));
467 mDexFile.readFully(tmpBuf, 0, 4);
470 return (tmpBuf[3] & 0xff) | ((tmpBuf[2] & 0xff) << 8)
    [all...]
  /external/deqp/framework/delibs/decpp/
deBlockBuffer.cpp 72 Message tmpBuf [64];
77 int numToRead = rnd.getInt(1, DE_LENGTH_OF_ARRAY(tmpBuf));
78 int numRead = m_buffer.tryRead(numToRead, &tmpBuf[0]);
82 const Message& msg = tmpBuf[ndx];
91 m_buffer.write(numRead-ndx-1, &tmpBuf[ndx+1]);
139 Message tmpBuf[64];
143 int writeSize = rnd.getInt(1, de::min(m_numMessages-msgNdx, DE_LENGTH_OF_ARRAY(tmpBuf)));
145 tmpBuf[ndx] = Message(m_threadId, (deUint16)msgNdx++);
147 m_buffer.write(writeSize, &tmpBuf[0]);
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
ChunkedWritableByteChannel.java 63 ByteBuffer tmpBuf = ByteBuffer.allocateDirect(size);
64 tmpBuf.put(buffer).rewind();
65 mBuffers.add(tmpBuf);
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/conui/src/
dmSocketConnector.cc 229 char tmpBuf[50000];
232 memcpy(tmpBuf, responseData, responseLength);
233 tmpBuf[responseLength]=0;
234 if ( g_nPrintfEnabled ) printf("\nResponse Body: %s\n", tmpBuf);
353 char tmpBuf[10];
354 strncpy(tmpBuf, pFirstSpace, 3);
355 tmpBuf[3]=0;
356 responseCode = tmpBuf;
  /packages/apps/OMA-DM/engine/xpl/src/
dmSocketConnector.cc 229 char tmpBuf[50000];
232 memcpy(tmpBuf, responseData, responseLength);
233 tmpBuf[responseLength]=0;
234 if ( g_nPrintfEnabled ) printf("\nResponse Body: %s\n", tmpBuf);
353 char tmpBuf[10];
354 strncpy(tmpBuf, pFirstSpace, 3);
355 tmpBuf[3]=0;
356 responseCode = tmpBuf;
  /frameworks/av/cmds/screenrecord/
Overlay.cpp 271 char tmpBuf[5];
272 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
273 strlcat(buf, tmpBuf, bufLen);
  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_gen_tool/com/mot/dm/core/
Gen.java 708 StringBuffer tmpBuf = new StringBuffer();
710 tmpBuf.append("Node Name: " + nodeName);
711 tmpBuf.append("\nNode Name offset: " + nodeNameOffset);
712 tmpBuf.append("\nNode Offset: " + nodeOffset);
713 tmpBuf.append("\nNode Type: " + nodeType);
716 tmpBuf.append("\nMeta Node ID:" + metaNodeID);
717 tmpBuf.append("\nMeta Node ID offset:" + metaNodeIDOffset);
720 tmpBuf.append("\nNode Access Type: " + accessType);
721 tmpBuf.append("\nNode Mime Type: " + mimeType);
722 tmpBuf.append("\nNumber of Constraints: " + numConstraints)
    [all...]
  /dalvik/libdex/
DexFile.cpp 115 * Format an SHA-1 digest for printing. tmpBuf must be able to hold at
118 const char* dvmSHA1DigestToStr(const unsigned char digest[], char* tmpBuf);
136 static const char* dexSHA1DigestToStr(const unsigned char digest[],char* tmpBuf)
142 cp = tmpBuf;
149 assert(cp == tmpBuf + kSHA1DigestOutputLen);
151 return tmpBuf;
  /build/tools/zipalign/
ZipFile.cpp 785 unsigned char tmpBuf[32768];
791 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
797 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
799 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
841 unsigned char tmpBuf[32768];
850 readSize = sizeof(tmpBuf);
854 count = fread(tmpBuf, 1, readSize, srcFp);
861 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
863 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 648 unsigned char tmpBuf[32768];
654 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
660 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
662 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
704 unsigned char tmpBuf[32768];
713 readSize = sizeof(tmpBuf);
717 count = fread(tmpBuf, 1, readSize, srcFp);
724 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
726 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_latm.cpp 789 FDK_BITSTREAM tmpBuf;
791 FDKinitBitStream( &tmpBuf, hBs->hBitBuf.Buffer, hBs->hBitBuf.bufSize, 0, BS_WRITER ) ;
792 FDKpushFor( &tmpBuf, hAss->audioMuxLengthBytesPos );
793 FDKwriteBits( &tmpBuf, hAss->audioMuxLengthBytes, 13 );
794 FDKsyncCache( &tmpBuf );
  /hardware/intel/img/hwcomposer/ips/anniedale/
AnnRGBPlane.cpp 116 TngGrallocBuffer tmpBuf(handle);
122 usage = tmpBuf.getUsage();
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
unit_test.cc 515 unsigned char* tmpBuf = new unsigned char[_lengthSourceFrame];
525 ASSERT_TRUE(fread(tmpBuf, 1, _refEncFrameLength, _sourceFile)
527 _encodedVideoBuffer.CopyFrame(_refEncFrameLength, tmpBuf);
536 memset(tmpBuf, 0, _refEncFrameLength);
537 _encodedVideoBuffer.CopyFrame(_refEncFrameLength, tmpBuf);
670 delete [] tmpBuf;
  /external/deqp/execserver/tools/
xsTest.cpp 697 deUint8 tmpBuf[1024*16];
700 deMemset(&tmpBuf, 'a', sizeof(tmpBuf));
705 XS_CHECK(deFile_write(file, &tmpBuf[0], de::min((int)sizeof(tmpBuf), DATA_SIZE-numWritten), &numWrittenInBatch) == DE_FILERESULT_SUCCESS);
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 738 char *tmpBuf = new char[cb->lockedWidth * cb->lockedHeight * bpp];
743 char *dst = tmpBuf;
754 tmpBuf);
756 delete [] tmpBuf;
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 780 tcu::TextureLevel tmpBuf;
795 tmpBuf.setStorage(readFormat, framebufferW, framebufferH);
800 glu::readPixels(m_renderCtx, 0, 0, tmpBuf.getAccess());
804 deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues*outVecSize*sizeof(deUint32));
809 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx*4;
    [all...]
  /dalvik/dexdump/
DexDump.cpp     [all...]

Completed in 654 milliseconds