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

1 2

  /frameworks/av/cmds/screenrecord/
Overlay.cpp 274 char tmpBuf[5];
275 snprintf(tmpBuf, sizeof(tmpBuf), ".%03d", msec);
276 strlcat(buf, tmpBuf, bufLen);
  /frameworks/rs/cpp/
RenderScript.cpp 222 void *tmpBuf = realloc(rbuf, rbuf_size);
223 if (tmpBuf) {
224 rbuf = tmpBuf;
  /prebuilts/go/darwin-x86/src/runtime/
string.go 13 type tmpBuf [tmpStringBufSize]byte
20 func concatstrings(buf *tmpBuf, a []string) string {
54 func concatstring2(buf *tmpBuf, a [2]string) string {
58 func concatstring3(buf *tmpBuf, a [3]string) string {
62 func concatstring4(buf *tmpBuf, a [4]string) string {
66 func concatstring5(buf *tmpBuf, a [5]string) string {
72 func slicebytetostring(buf *tmpBuf, b []byte) (str string) {
110 func rawstringtmp(buf *tmpBuf, l int) (s string, b []byte) {
146 func stringtoslicebyte(buf *tmpBuf, s string) []byte {
149 *buf = tmpBuf{}
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
string.go 13 type tmpBuf [tmpStringBufSize]byte
20 func concatstrings(buf *tmpBuf, a []string) string {
54 func concatstring2(buf *tmpBuf, a [2]string) string {
58 func concatstring3(buf *tmpBuf, a [3]string) string {
62 func concatstring4(buf *tmpBuf, a [4]string) string {
66 func concatstring5(buf *tmpBuf, a [5]string) string {
72 func slicebytetostring(buf *tmpBuf, b []byte) (str string) {
110 func rawstringtmp(buf *tmpBuf, l int) (s string, b []byte) {
146 func stringtoslicebyte(buf *tmpBuf, s string) []byte {
149 *buf = tmpBuf{}
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_latm.cpp 732 FDK_BITSTREAM tmpBuf;
746 FDKinitBitStream(&tmpBuf, hBs->hBitBuf.Buffer, hBs->hBitBuf.bufSize, 0,
748 FDKpushFor(&tmpBuf, hAss->audioMuxLengthBytesPos);
749 FDKwriteBits(&tmpBuf, hAss->audioMuxLengthBytes, 13);
750 FDKsyncCache(&tmpBuf);
  /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]);
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramChannelImpl.java 802 ByteBuffer tmpBuf = ByteBuffer.allocate(1);
807 tmpBuf.clear();
808 } while (receive(tmpBuf) != null);
    [all...]
  /build/make/tools/zipalign/
ZipFile.cpp 756 uint8_t tmpBuf[32768];
762 count = fread(tmpBuf, 1, sizeof(tmpBuf), srcFp);
768 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
770 if (fwrite(tmpBuf, 1, count, dstFp) != count) {
810 uint8_t tmpBuf[32768];
819 readSize = sizeof(tmpBuf);
823 count = fread(tmpBuf, 1, readSize, srcFp);
830 *pCRC32 = crc32(*pCRC32, tmpBuf, count);
832 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...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 37 private byte tmpBuf[] = new byte[4];
450 mDexFile.readFully(tmpBuf, 0, 1);
451 return tmpBuf[0];
458 mDexFile.readFully(tmpBuf, 0, 2);
460 return (short) ((tmpBuf[1] & 0xff) | ((tmpBuf[0] & 0xff) << 8));
462 return (short) ((tmpBuf[0] & 0xff) | ((tmpBuf[1] & 0xff) << 8));
470 mDexFile.readFully(tmpBuf, 0, 4);
473 return (tmpBuf[3] & 0xff) | ((tmpBuf[2] & 0xff) << 8)
    [all...]
  /external/deqp/execserver/tools/
xsTest.cpp 698 deUint8 tmpBuf[1024*16];
701 deMemset(&tmpBuf, 'a', sizeof(tmpBuf));
706 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     [all...]
  /external/python/cpython2/PC/
_winreg.c 1171 char tmpbuf[257]; local
    [all...]
  /external/python/cpython3/PC/
winreg.c 1055 wchar_t tmpbuf[257]; local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.3.Final/
netty-buffer-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/
netty-buffer-4.1.6.Final.jar 
  /art/dexdump/
dexdump.cc     [all...]
  /dalvik/dexdump/
DexDump.cpp     [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 585 unsigned char *tmpBuf = new unsigned char[offset.frame_len];
586 if (tmpBuf == NULL) {
587 LOGH("tmpBuf == NULL ");
601 outMakeupData.yBuf = tmpBuf; // Y buffer pointer
602 outMakeupData.uvBuf = tmpBuf + offset.mp[0].len; // VU buffer pointer
608 memcpy((unsigned char*)pFrame->buffer, tmpBuf, offset.frame_len);
611 if (tmpBuf != NULL) {
612 delete[] tmpBuf;
613 tmpBuf = NULL;
    [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...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCamera2HWICallbacks.cpp 590 unsigned char *tmpBuf = new unsigned char[offset.frame_len];
591 if (tmpBuf == NULL) {
592 LOGH("tmpBuf == NULL ");
606 outMakeupData.yBuf = tmpBuf; // Y buffer pointer
607 outMakeupData.uvBuf = tmpBuf + offset.mp[0].len; // VU buffer pointer
613 memcpy((unsigned char*)pFrame->buffer, tmpBuf, offset.frame_len);
616 if (tmpBuf != NULL) {
617 delete[] tmpBuf;
618 tmpBuf = NULL;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VideoDecoderPerfTest.java 139 ByteBuffer tmpBuf = ByteBuffer.allocate(w * h * 3 / 2);
144 while ((sampleSize = extractor.readSampleData(tmpBuf, 0 /* offset */)) > 0) {
152 copied.put(tmpBuf);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp     [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 753 milliseconds

1 2