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

1 2

  /hardware/intel/img/hwcomposer/merrifield/ips/penwell/
PnwPrimaryPlane.cpp 45 PnwGrallocBuffer tmpBuf(handle);
50 usage = tmpBuf.getUsage();
52 setFramebufferTarget(tmpBuf);
  /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 249 final byte[] tmpBuf;
252 tmpBuf = new byte[buffer.length];
253 System.arraycopy(buffer, 0, tmpBuf, buffer.length - bufferOffset, bufferOffset);
255 tmpBuf = Arrays.copyOf(buffer, bufferOffset);
258 tmpBuf = buffer;
265 resultSize = NativeCrypto.RSA_private_encrypt(tmpBuf.length, tmpBuf, output,
268 resultSize = NativeCrypto.RSA_public_encrypt(tmpBuf.length, tmpBuf, output,
274 resultSize = NativeCrypto.RSA_private_decrypt(tmpBuf.length, tmpBuf, output
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 37 private byte tmpBuf[] = new byte[4];
448 mDexFile.readFully(tmpBuf, 0, 1);
449 return tmpBuf[0];
456 mDexFile.readFully(tmpBuf, 0, 2);
458 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8));
460 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8));
468 mDexFile.readFully(tmpBuf, 0, 4);
471 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]);
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngPrimaryPlane.cpp 113 TngGrallocBuffer tmpBuf(handle);
119 usage = tmpBuf.getUsage();
  /frameworks/av/cmds/screenrecord/
Overlay.cpp 271 char tmpBuf[5];
272 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
273 strlcat(buf, tmpBuf, bufLen);
  /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;
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 
  /build/tools/zipalign/
ZipFile.cpp 788 uint8_t tmpBuf[32768];
794 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
800 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
802 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
844 uint8_t tmpBuf[32768];
853 readSize = sizeof(tmpBuf);
857 count = fread(tmpBuf, 1, readSize, srcFp);
864 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
866 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 647 unsigned char tmpBuf[32768];
653 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
659 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
661 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
701 unsigned char tmpBuf[32768];
710 readSize = sizeof(tmpBuf);
714 count = fread(tmpBuf, 1, readSize, srcFp);
721 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
723 if (fwrite(tmpBuf, 1, count, dstFp) != count)
    [all...]
  /device/generic/goldfish-opengl/system/gralloc/
gralloc.cpp 884 char* tmpBuf = 0;
888 tmpBuf = new char[cb->width * cb->height * 3];
889 rgb_addr = tmpBuf;
894 if (tmpBuf) {
896 rgb888_to_yv12((char*)cpu_addr, tmpBuf, cb->width, cb->height, l, t, l+w-1, t+h-1);
898 rgb888_to_yuv420p((char*)cpu_addr, tmpBuf, cb->width, cb->height, l, t, l+w-1, t+h-1);
900 delete [] tmpBuf;
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_latm.cpp 788 FDK_BITSTREAM tmpBuf;
790 FDKinitBitStream( &tmpBuf, hBs->hBitBuf.Buffer, hBs->hBitBuf.bufSize, 0, BS_WRITER ) ;
791 FDKpushFor( &tmpBuf, hAss->audioMuxLengthBytesPos );
792 FDKwriteBits( &tmpBuf, hAss->audioMuxLengthBytes, 13 );
793 FDKsyncCache( &tmpBuf );
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnRGBPlane.cpp 66 TngGrallocBuffer tmpBuf(handle);
72 usage = tmpBuf.getUsage();
  /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);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnRGBPlane.cpp 125 TngGrallocBuffer tmpBuf(handle);
131 usage = tmpBuf.getUsage();
  /art/dexdump/
dexdump.cc     [all...]
  /external/libjpeg-turbo/java/
TJBench.java 275 byte[] tmpBuf;
285 tmpBuf = new byte[pitch * h];
312 System.arraycopy(srcBuf, w * ps * i, tmpBuf, pitch * i, w * ps);
409 decomp(srcBuf, jpegBuf, jpegSize, tmpBuf, w, h, subsamp, jpegQual,
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VideoDecoderPerfTest.java 137 ByteBuffer tmpBuf = ByteBuffer.allocate(w * h * 3 / 2);
142 while ((sampleSize = extractor.readSampleData(tmpBuf, 0 /* offset */)) > 0) {
150 copied.put(tmpBuf);
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 657 tcu::TextureLevel tmpBuf;
672 tmpBuf.setStorage(readFormat, framebufferW, framebufferH);
677 glu::readPixels(m_renderCtx, 0, 0, tmpBuf.getAccess());
681 deMemcpy(dstPtrBase, tmpBuf.getAccess().getDataPtr(), numValues*outVecSize*sizeof(deUint32));
686 const deUint32* srcPtr = (const deUint32*)tmpBuf.getAccess().getDataPtr() + valNdx*4;
    [all...]
  /dalvik/dexdump/
DexDump.cpp     [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletFileLoader/
bFile.cpp 1159 char* tmpBuf = buf;
1162 swapStruct(old_nr,tmpBuf,ignoreEndianFlag);
1163 tmpBuf+=size/arrayLen;
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 584 unsigned char *tmpBuf = new unsigned char[offset.frame_len];
585 if (tmpBuf == NULL) {
586 LOGH("tmpBuf == NULL ");
600 outMakeupData.yBuf = tmpBuf; // Y buffer pointer
601 outMakeupData.uvBuf = tmpBuf + offset.mp[0].len; // VU buffer pointer
607 memcpy((unsigned char*)pFrame->buffer, tmpBuf, offset.frame_len);
610 if (tmpBuf != NULL) {
611 delete[] tmpBuf;
612 tmpBuf = NULL;
    [all...]

Completed in 2929 milliseconds

1 2