HomeSort by relevance Sort by last modified time
    Searched defs:dstBuf (Results 1 - 12 of 12) sorted by null

  /external/deqp/modules/gles3/functional/
es3fBufferCopyTests.cpp 85 deUint32 dstBuf = 0;
103 dstBuf = genBuffer();
104 glBindBuffer(m_dstTarget, dstBuf);
110 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
116 glBindBuffer(m_dstTarget, dstBuf);
122 isOk = verifier.verify(dstBuf, dstRef.getPtr(), 0, m_dstSize, m_dstTarget) && isOk;
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java 311 * @param dstBuf buffer that will receive the decompressed/decoded image.
370 public void decompress(byte[] dstBuf, int x, int y, int desiredWidth,
375 if (dstBuf == null || x < 0 || y < 0 || pitch < 0 ||
381 yuvImage.getStrides(), yuvImage.getSubsamp(), dstBuf, x, y,
386 decompress(jpegBuf, jpegBufSize, dstBuf, x, y, desiredWidth, pitch,
389 decompress(jpegBuf, jpegBufSize, dstBuf, desiredWidth, pitch,
399 public void decompress(byte[] dstBuf, int desiredWidth, int pitch,
402 decompress(dstBuf, 0, 0, desiredWidth, pitch, desiredHeight, pixelFormat,
488 public void decompressToYUV(byte[] dstBuf, int flags) throws Exception {
489 YUVImage dstImage = new YUVImage(dstBuf, jpegWidth, 4, jpegHeight
    [all...]
  /external/libvncserver/test/
tjunittest.c 238 void compTest(tjhandle handle, unsigned char **dstBuf,
252 if(*dstBuf && *dstSize>0) memset(*dstBuf, 0, *dstSize);
256 _tj(tjCompress2(handle, srcBuf, w, 0, h, pf, dstBuf, dstSize, subsamp,
263 writeJPEG(*dstBuf, *dstSize, tempStr);
276 unsigned char *dstBuf=NULL;
294 if((dstBuf=(unsigned char *)malloc(dstSize))==NULL)
296 memset(dstBuf, 0, dstSize);
299 _tj(tjDecompress2(handle, jpegBuf, jpegSize, dstBuf, scaledWidth, 0,
303 if(checkBuf(dstBuf, scaledWidth, scaledHeight, pf, subsamp, sf, flags)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 193 ByteBuffer dstBuf = ByteBuffer.allocate(bufferSize);
199 bufferInfo.size = extractor.readSampleData(dstBuf, offset);
213 muxer.writeSampleData(indexMap.get(trackIndex), dstBuf,
  /cts/tests/tests/media/src/android/media/cts/
MediaMuxerTest.java 207 ByteBuffer dstBuf = ByteBuffer.allocate(bufferSize);
235 bufferInfo.size = extractor.readSampleData(dstBuf, offset);
248 muxer.writeSampleData(indexMap.get(trackIndex), dstBuf,
ImageReaderDecoderTest.java 497 ByteBuffer dstBuf = decoderInputBuffers[inputBufIndex];
499 extractor.readSampleData(dstBuf, 0 /* offset */);
    [all...]
VideoDecoderPerfTest.java 176 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
181 dstBuf.put(sample);
  /external/libjpeg-turbo/
tjunittest.c 395 void compTest(tjhandle handle, unsigned char **dstBuf,
408 if(*dstBuf && *dstSize>0) memset(*dstBuf, 0, *dstSize);
432 _tj(tjCompressFromYUV(handle, yuvBuf, w, pad, h, subsamp, dstBuf,
439 _tj(tjCompress2(handle, srcBuf, w, 0, h, pf, dstBuf, dstSize, subsamp,
445 writeJPEG(*dstBuf, *dstSize, tempStr);
458 unsigned char *dstBuf=NULL, *yuvBuf=NULL;
470 if((dstBuf=(unsigned char *)malloc(dstSize))==NULL)
472 memset(dstBuf, 0, dstSize);
497 _tj(tjDecodeYUV(handle2, yuvBuf, pad, subsamp, dstBuf, scaledWidth, 0
    [all...]
turbojpeg-jni.c 470 unsigned char *srcBuf=NULL, *dstBuf=NULL;
488 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
490 if(tjEncodeYUV2(handle, srcBuf, width, pitch, height, pf, dstBuf, subsamp,
495 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0);
632 unsigned char *jpegBuf=NULL, *dstBuf=NULL;
649 bailif0(dstBuf=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
652 &dstBuf[y*actualPitch + x*tjPixelSize[pf]], width, pitch, height, pf,
657 if(dstBuf) (*env)->ReleasePrimitiveArrayCritical(env, dst, dstBuf, 0)
    [all...]
  /cts/tests/video/src/android/video/cts/
VideoEncoderDecoderTest.java     [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp     [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 

Completed in 581 milliseconds