Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Dturbojpeg.h662 typedef void *tjhandle; typedef
691 DLLEXPORT tjhandle tjInitCompress(void);
754 DLLEXPORT int tjCompress2(tjhandle handle, const unsigned char *srcBuf,
820 DLLEXPORT int tjCompressFromYUV(tjhandle handle, const unsigned char *srcBuf,
893 DLLEXPORT int tjCompressFromYUVPlanes(tjhandle handle,
1056 DLLEXPORT int tjEncodeYUV3(tjhandle handle, const unsigned char *srcBuf,
1116 DLLEXPORT int tjEncodeYUVPlanes(tjhandle handle, const unsigned char *srcBuf,
1128 DLLEXPORT tjhandle tjInitDecompress(void);
1157 DLLEXPORT int tjDecompressHeader3(tjhandle handle,
1227 DLLEXPORT int tjDecompress2(tjhandle handle, const unsigned char *jpegBuf,
[all …]
Dturbojpeg.c419 DLLEXPORT char *tjGetErrorStr2(tjhandle handle) in tjGetErrorStr2()
437 DLLEXPORT int tjGetErrorCode(tjhandle handle) in tjGetErrorCode()
446 DLLEXPORT int tjDestroy(tjhandle handle) in tjDestroy()
477 static tjhandle _tjInitCompress(tjinstance *this) in _tjInitCompress()
504 return (tjhandle)this; in _tjInitCompress()
507 DLLEXPORT tjhandle tjInitCompress(void) in tjInitCompress()
666 DLLEXPORT int tjCompress2(tjhandle handle, const unsigned char *srcBuf, in tjCompress2()
733 DLLEXPORT int tjCompress(tjhandle handle, unsigned char *srcBuf, int width, in tjCompress()
756 DLLEXPORT int tjEncodeYUVPlanes(tjhandle handle, const unsigned char *srcBuf, in tjEncodeYUVPlanes()
914 DLLEXPORT int tjEncodeYUV3(tjhandle handle, const unsigned char *srcBuf, in tjEncodeYUV3()
[all …]
Dturbojpeg-jni.c83 handle = (tjhandle)(size_t)(*env)->GetLongField(env, obj, _fid);
204 tjhandle handle; in Java_org_libjpegturbo_turbojpeg_TJCompressor_init()
222 tjhandle handle = 0; in TJCompressor_compress()
326 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJCompressor_compressFromYUV___3_3B_3II_3III_3BII()
407 tjhandle handle = 0; in TJCompressor_encodeYUV()
517 tjhandle handle = 0; in TJCompressor_encodeYUV_12()
582 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJCompressor_destroy()
599 tjhandle handle; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_init()
647 tjhandle handle = 0; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_decompressHeader()
686 tjhandle handle = 0; in TJDecompressor_decompress()
[all …]
Dtjunittest.c373 static void compTest(tjhandle handle, unsigned char **dstBuf, in compTest()
394 tjhandle handle2 = tjInitCompress(); in compTest()
432 static void _decompTest(tjhandle handle, unsigned char *jpegBuf, in _decompTest()
456 tjhandle handle2 = tjInitDecompress(); in _decompTest()
501 static void decompTest(tjhandle handle, unsigned char *jpegBuf, in decompTest()
528 tjhandle chandle = NULL, dhandle = NULL; in doTest()
614 tjhandle handle = NULL; in bufSizeTest()
Dtjbench.c149 tjhandle handle = NULL; in decomp()
323 tjhandle handle = NULL; in fullTest()
533 tjhandle handle = NULL; in decompTest()
/external/oss-fuzz/projects/libjpeg-turbo/
Dlibjpeg_turbo_fuzzer.cc28 tjhandle jpegDecompressor = tjInitDecompress(); in LLVMFuzzerTestOneInput()