Home
last modified time | relevance | path

Searched refs:tjhandle (Results 1 – 6 of 6) sorted by relevance

/external/libjpeg-turbo/
Dturbojpeg.h651 typedef void *tjhandle; typedef
680 DLLEXPORT tjhandle tjInitCompress(void);
743 DLLEXPORT int tjCompress2(tjhandle handle, const unsigned char *srcBuf,
809 DLLEXPORT int tjCompressFromYUV(tjhandle handle, const unsigned char *srcBuf,
882 DLLEXPORT int tjCompressFromYUVPlanes(tjhandle handle,
1045 DLLEXPORT int tjEncodeYUV3(tjhandle handle, const unsigned char *srcBuf,
1105 DLLEXPORT int tjEncodeYUVPlanes(tjhandle handle, const unsigned char *srcBuf,
1117 DLLEXPORT tjhandle tjInitDecompress(void);
1146 DLLEXPORT int tjDecompressHeader3(tjhandle handle,
1216 DLLEXPORT int tjDecompress2(tjhandle handle, const unsigned char *jpegBuf,
[all …]
Dturbojpeg.c387 DLLEXPORT char *tjGetErrorStr2(tjhandle handle) in tjGetErrorStr2()
405 DLLEXPORT int tjGetErrorCode(tjhandle handle) in tjGetErrorCode()
414 DLLEXPORT int tjDestroy(tjhandle handle) in tjDestroy()
445 static tjhandle _tjInitCompress(tjinstance *this) in _tjInitCompress()
472 return (tjhandle)this; in _tjInitCompress()
475 DLLEXPORT tjhandle tjInitCompress(void) in tjInitCompress()
625 DLLEXPORT int tjCompress2(tjhandle handle, const unsigned char *srcBuf, in tjCompress2()
690 DLLEXPORT int tjCompress(tjhandle handle, unsigned char *srcBuf, int width, in tjCompress()
713 DLLEXPORT int tjEncodeYUVPlanes(tjhandle handle, const unsigned char *srcBuf, in tjEncodeYUVPlanes()
871 DLLEXPORT int tjEncodeYUV3(tjhandle handle, const unsigned char *srcBuf, in tjEncodeYUV3()
[all …]
Dturbojpeg-jni.c84 handle = (tjhandle)(size_t)(*env)->GetLongField(env, obj, _fid);
199 tjhandle handle; in Java_org_libjpegturbo_turbojpeg_TJCompressor_init()
217 tjhandle handle = 0; in TJCompressor_compress()
318 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
394 tjhandle handle = 0; in TJCompressor_encodeYUV()
498 tjhandle handle = 0; in TJCompressor_encodeYUV_12()
560 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJCompressor_destroy()
577 tjhandle handle; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_init()
625 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressHeader()
663 tjhandle handle = 0; in TJDecompressor_decompress()
[all …]
Dtjunittest.c359 void compTest(tjhandle handle, unsigned char **dstBuf, unsigned long *dstSize, in compTest()
380 tjhandle handle2 = tjInitCompress(); in compTest()
417 void _decompTest(tjhandle handle, unsigned char *jpegBuf, in _decompTest()
440 tjhandle handle2 = tjInitDecompress(); in _decompTest()
484 void decompTest(tjhandle handle, unsigned char *jpegBuf, in decompTest()
511 tjhandle chandle = NULL, dhandle = NULL; in doTest()
559 tjhandle handle = NULL; in bufSizeTest()
Dtjbench.c144 tjhandle handle = NULL; in decomp()
311 tjhandle handle = NULL; in fullTest()
510 tjhandle handle = NULL; in decompTest()
Dtjexample.c172 tjhandle tjInstance = NULL; in main()