OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:jpegBuf
(Results
1 - 3
of
3
) sorted by null
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java
101
jpegBuf
= jpegImage;
103
decompressHeader(
jpegBuf
, jpegBufSize);
127
jpegBuf
= null;
204
if (
jpegBuf
== null)
206
return
jpegBuf
;
373
if (
jpegBuf
== null && yuvImage == null)
386
decompress(
jpegBuf
, jpegBufSize, dstBuf, x, y, desiredWidth, pitch,
389
decompress(
jpegBuf
, jpegBufSize, dstBuf, desiredWidth, pitch,
465
if (
jpegBuf
== null)
479
decompressToYUV(
jpegBuf
, jpegBufSize, dstImage.getPlanes()
[
all
...]
/external/libvncserver/test/
tjunittest.c
224
void writeJPEG(unsigned char *
jpegBuf
, unsigned long jpegSize, char *filename)
227
if(!file || fwrite(
jpegBuf
, jpegSize, 1, file)!=1)
272
void _decompTest(tjhandle handle, unsigned char *
jpegBuf
,
288
_tj(tjDecompressHeader2(handle,
jpegBuf
, jpegSize, &_hdrw, &_hdrh,
299
_tj(tjDecompress2(handle,
jpegBuf
, jpegSize, dstBuf, scaledWidth, 0,
313
void decompTest(tjhandle handle, unsigned char *
jpegBuf
,
324
_decompTest(handle,
jpegBuf
, jpegSize, w, h, pf, basename, subsamp,
328
_decompTest(handle,
jpegBuf
, jpegSize, w, h, pf, basename, subsamp, flags,
380
unsigned char *srcBuf=NULL, *
jpegBuf
=NULL;
397
if((
jpegBuf
=(unsigned char *)malloc(tjBufSize(w, h, subsamp))
[
all
...]
/external/libjpeg-turbo/
turbojpeg-jni.c
191
unsigned char *srcBuf=NULL, *
jpegBuf
=NULL;
210
bailif0(
jpegBuf
=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
215
pitch, height, pf, &
jpegBuf
, &jpegSize, jpegSubsamp, jpegQual,
220
if(
jpegBuf
) (*env)->ReleasePrimitiveArrayCritical(env, dst,
jpegBuf
, 0);
290
unsigned char *srcPlanes[3], *
jpegBuf
=NULL;
335
bailif0(
jpegBuf
=(*env)->GetPrimitiveArrayCritical(env, dst, 0));
340
subsamp, &
jpegBuf
, &jpegSize, jpegQual, flags|TJFLAG_NOREALLOC)==-1)
344
if(
jpegBuf
) (*env)->ReleasePrimitiveArrayCritical(env, dst,
jpegBuf
, 0)
[
all
...]
Completed in 210 milliseconds