Home
last modified time | relevance | path

Searched defs:srcBuf (Results 1 – 12 of 12) sorted by relevance

/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DTJCompressor.java589 private native int compress(byte[] srcBuf, int width, int pitch, in compress()
593 private native int compress(byte[] srcBuf, int x, int y, int width, in compress()
597 private native int compress(int[] srcBuf, int width, int stride, in compress()
601 private native int compress(int[] srcBuf, int x, int y, int width, in compress()
610 private native void encodeYUV(byte[] srcBuf, int width, int pitch, in encodeYUV()
614 private native void encodeYUV(byte[] srcBuf, int x, int y, int width, in encodeYUV()
619 private native void encodeYUV(int[] srcBuf, int width, int stride, in encodeYUV()
623 private native void encodeYUV(int[] srcBuf, int x, int y, int width, in encodeYUV()
633 private byte[] srcBuf = null; field in TJCompressor
DTJDecompressor.java854 private native void decompressHeader(byte[] srcBuf, int size) in decompressHeader()
857 private native void decompress(byte[] srcBuf, int size, byte[] dstBuf, in decompress()
861 private native void decompress(byte[] srcBuf, int size, byte[] dstBuf, int x, in decompress()
865 private native void decompress(byte[] srcBuf, int size, int[] dstBuf, in decompress()
869 private native void decompress(byte[] srcBuf, int size, int[] dstBuf, int x, in decompress()
873 private native void decompressToYUV(byte[] srcBuf, int size, byte[] dstBuf, in decompressToYUV()
876 private native void decompressToYUV(byte[] srcBuf, int size, in decompressToYUV()
DTJTransformer.java154 private native int[] transform(byte[] srcBuf, int srcSize, byte[][] dstBufs, in transform()
/external/libjpeg-turbo/
Dturbojpeg.c731 DLLEXPORT int DLLCALL tjCompress2(tjhandle handle, unsigned char *srcBuf, in tjCompress2()
808 DLLEXPORT int DLLCALL tjCompress(tjhandle handle, unsigned char *srcBuf, in tjCompress()
830 DLLEXPORT int DLLCALL tjEncodeYUVPlanes(tjhandle handle, unsigned char *srcBuf, in tjEncodeYUVPlanes()
991 DLLEXPORT int DLLCALL tjEncodeYUV3(tjhandle handle, unsigned char *srcBuf, in tjEncodeYUV3()
1027 DLLEXPORT int DLLCALL tjEncodeYUV2(tjhandle handle, unsigned char *srcBuf, in tjEncodeYUV2()
1035 DLLEXPORT int DLLCALL tjEncodeYUV(tjhandle handle, unsigned char *srcBuf, in tjEncodeYUV()
1175 DLLEXPORT int DLLCALL tjCompressFromYUV(tjhandle handle, unsigned char *srcBuf, in tjCompressFromYUV()
1664 DLLEXPORT int DLLCALL tjDecodeYUV(tjhandle handle, unsigned char *srcBuf, in tjDecodeYUV()
Dtjunittest.c399 char tempStr[1024]; unsigned char *srcBuf=NULL, *yuvBuf=NULL; in compTest() local
599 unsigned char *srcBuf=NULL, *dstBuf=NULL; in bufSizeTest() local
Dturbojpeg-jni.c191 unsigned char *srcBuf=NULL, *jpegBuf=NULL; in TJCompressor_compress() local
366 unsigned char *srcBuf=NULL, *dstPlanes[3]; in TJCompressor_encodeYUV() local
470 unsigned char *srcBuf=NULL, *dstBuf=NULL; in TJCompressor_encodeYUV_12() local
/external/libjpeg-turbo/java/
DTJBench.java112 static void saveImage(String fileName, byte[] srcBuf, int w, int h, in saveImage()
133 static void decomp(byte[] srcBuf, byte[][] jpegBuf, int[] jpegSize, in decomp()
272 static void fullTest(byte[] srcBuf, int w, int h, int subsamp, int jpegQual, in fullTest()
/external/libvncserver/test/
Dtjunittest.c242 char tempStr[1024]; unsigned char *srcBuf=NULL; in compTest() local
380 unsigned char *srcBuf=NULL, *jpegBuf=NULL; in bufSizeTest() local
/external/libvncserver/common/
Dturbojpeg.c538 DLLEXPORT int DLLCALL tjCompress2(tjhandle handle, unsigned char *srcBuf, in tjCompress2()
614 DLLEXPORT int DLLCALL tjCompress(tjhandle handle, unsigned char *srcBuf, in tjCompress()
/external/deqp/modules/gles3/functional/
Des3fBufferCopyTests.cpp84 deUint32 srcBuf = 0; in iterate() local
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_objects.cpp915 uint8_t srcBuf[kBlockSize]; in Identical() local
948 uint8_t srcBuf[kBlockSize]; in Identical() local
/external/opencv3/modules/core/src/
Dopengl.cpp382 void cv::ogl::Buffer::Impl::copyFrom(GLuint srcBuf, GLsizeiptr size) in copyFrom()