Home
last modified time | relevance | path

Searched refs:TJ (Results 1 – 25 of 657) sorted by relevance

12345678910>>...27

/third_party/libjpeg-turbo/java/
DTJUnitTest.java71 TJ.PF_RGB, TJ.PF_BGR
77 TJ.PF_RGBX, TJ.PF_BGRX, TJ.PF_XBGR, TJ.PF_XRGB, TJ.PF_CMYK
85 TJ.PF_GRAY
91 TJ.PF_RGB
104 return TJ.PF_BGR; in biTypePF()
107 return TJ.PF_ABGR; in biTypePF()
109 return TJ.PF_GRAY; in biTypePF()
111 return TJ.PF_RGBX; in biTypePF()
113 return TJ.PF_BGRX; in biTypePF()
116 return TJ.PF_BGRA; in biTypePF()
[all …]
DTJBench.java39 private static int flags = 0, quiet = 0, pf = TJ.PF_BGR, yuvPad = 1;
75 if ((flags & TJ.FLAG_STOPONWARNING) == 0 && in handleTJException()
76 errorCode == TJ.ERR_WARNING) { in handleTJException()
89 if (cs == TJ.CS_YCbCr) in formatName()
91 else if (cs == TJ.CS_YCCK) in formatName()
120 int ps = TJ.getPixelSize(pixelFormat); in loadImage()
121 int rindex = TJ.getRedOffset(pixelFormat); in loadImage()
122 int gindex = TJ.getGreenOffset(pixelFormat); in loadImage()
123 int bindex = TJ.getBlueOffset(pixelFormat); in loadImage()
144 int ps = TJ.getPixelSize(pixelFormat); in saveImage()
[all …]
DTJExample.java50 static final int DEFAULT_SUBSAMP = TJ.SAMP_444;
200 outSubsamp = TJ.SAMP_GRAY; in main()
202 outSubsamp = TJ.SAMP_444; in main()
204 outSubsamp = TJ.SAMP_422; in main()
206 outSubsamp = TJ.SAMP_420; in main()
250 flags |= TJ.FLAG_FASTUPSAMPLE; in main()
253 flags |= TJ.FLAG_FASTDCT; in main()
256 flags |= TJ.FLAG_ACCURATEDCT; in main()
337 imgBuf = tjd.decompress(width, 0, height, TJ.PF_BGRX, flags); in main()
348 outSubsamp = TJ.SAMP_GRAY; in main()
[all …]
DCMakeLists.txt18 set(JAVA_SOURCES org/libjpegturbo/turbojpeg/TJ.java
65 ${CMAKE_CURRENT_SOURCE_DIR}/org/libjpegturbo/turbojpeg/TJ.java
71 …MAND javah -d ${CMAKE_CURRENT_SOURCE_DIR} -classpath ${JAVACLASSPATH} org.libjpegturbo.turbojpeg.TJ
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/
DTJUnitTest.java71 TJ.PF_RGB, TJ.PF_BGR
77 TJ.PF_RGBX, TJ.PF_BGRX, TJ.PF_XBGR, TJ.PF_XRGB, TJ.PF_CMYK
85 TJ.PF_GRAY
91 TJ.PF_RGB
104 return TJ.PF_BGR; in biTypePF()
107 return TJ.PF_ABGR; in biTypePF()
109 return TJ.PF_GRAY; in biTypePF()
111 return TJ.PF_RGBX; in biTypePF()
113 return TJ.PF_BGRX; in biTypePF()
116 return TJ.PF_BGRA; in biTypePF()
[all …]
DTJBench.java39 private static int flags = 0, quiet = 0, pf = TJ.PF_BGR, yuvPad = 1;
75 if ((flags & TJ.FLAG_STOPONWARNING) == 0 && in handleTJException()
76 errorCode == TJ.ERR_WARNING) { in handleTJException()
89 if (cs == TJ.CS_YCbCr) in formatName()
91 else if (cs == TJ.CS_YCCK) in formatName()
120 int ps = TJ.getPixelSize(pixelFormat); in loadImage()
121 int rindex = TJ.getRedOffset(pixelFormat); in loadImage()
122 int gindex = TJ.getGreenOffset(pixelFormat); in loadImage()
123 int bindex = TJ.getBlueOffset(pixelFormat); in loadImage()
142 int ps = TJ.getPixelSize(pixelFormat); in saveImage()
[all …]
DTJExample.java50 static final int DEFAULT_SUBSAMP = TJ.SAMP_444;
200 outSubsamp = TJ.SAMP_GRAY; in main()
202 outSubsamp = TJ.SAMP_444; in main()
204 outSubsamp = TJ.SAMP_422; in main()
206 outSubsamp = TJ.SAMP_420; in main()
250 flags |= TJ.FLAG_FASTUPSAMPLE; in main()
253 flags |= TJ.FLAG_FASTDCT; in main()
256 flags |= TJ.FLAG_ACCURATEDCT; in main()
337 imgBuf = tjd.decompress(width, 0, height, TJ.PF_BGRX, flags); in main()
348 outSubsamp = TJ.SAMP_GRAY; in main()
[all …]
DCMakeLists.txt18 set(JAVA_SOURCES org/libjpegturbo/turbojpeg/TJ.java
62 …MAND javah -d ${CMAKE_CURRENT_SOURCE_DIR} -classpath ${JAVACLASSPATH} org.libjpegturbo.turbojpeg.TJ
/third_party/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DYUVImage.java109 setBuf(new byte[TJ.bufSizeYUV(width, pad, height, subsamp)], width, pad, in YUVImage()
219 subsamp >= TJ.NUMSAMP) in setBuf()
222 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); in setBuf()
236 int pw = TJ.planeWidth(i, width, subsamp); in setBuf()
237 int ph = TJ.planeHeight(i, height, subsamp); in setBuf()
238 int planeSize = TJ.planeSizeYUV(i, width, strides[i], height, subsamp); in setBuf()
288 height < 1 || subsamp < 0 || subsamp >= TJ.NUMSAMP) in setBuf()
290 if (yuvImage.length < TJ.bufSizeYUV(width, pad, height, subsamp)) in setBuf()
293 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); in setBuf()
299 strides[0] = pad(TJ.planeWidth(0, width, subsamp), pad); in setBuf()
[all …]
DTJDecompressor.java180 if (jpegSubsamp >= TJ.NUMSAMP) in getSubsamp()
195 return TJ.CS_YCbCr; in getColorspace()
198 if (jpegColorspace >= TJ.NUMCS) in getColorspace()
251 TJScalingFactor[] sf = TJ.getScalingFactors(); in getScaledWidth()
292 TJScalingFactor[] sf = TJ.getScalingFactors(); in getScaledHeight()
384 pixelFormat < 0 || pixelFormat >= TJ.NUMPF || flags < 0) in decompress()
442 pixelFormat < 0 || pixelFormat >= TJ.NUMPF || flags < 0) in decompress()
444 int pixelSize = TJ.getPixelSize(pixelFormat); in decompress()
553 if (jpegSubsamp >= TJ.NUMSAMP) in decompressToYUV()
606 if (jpegSubsamp >= TJ.NUMSAMP) in decompressToYUV()
[all …]
DTJCompressor.java148 pitch < 0 || pixelFormat < 0 || pixelFormat >= TJ.NUMPF) in setSourceImage()
153 srcPitch = width * TJ.getPixelSize(pixelFormat); in setSourceImage()
215 pixelFormat = TJ.PF_BGR; break; in setSourceImage()
218 pixelFormat = TJ.PF_XBGR; break; in setSourceImage()
220 pixelFormat = TJ.PF_GRAY; break; in setSourceImage()
223 pixelFormat = TJ.PF_XBGR; in setSourceImage()
225 pixelFormat = TJ.PF_RGBX; in setSourceImage()
231 pixelFormat = TJ.PF_XRGB; in setSourceImage()
233 pixelFormat = TJ.PF_BGRX; in setSourceImage()
252 if (pixelSize != TJ.getPixelSize(pixelFormat)) in setSourceImage()
[all …]
DTJException.java57 if (errorCode >= 0 && errorCode < TJ.NUMERR) in TJException()
77 private int errorCode = TJ.ERR_FATAL;
DTJ.java35 public final class TJ { class
37 private TJ() {} in TJ() method in TJ
DTJTransformer.java131 dstBufs[i] = new byte[TJ.bufSize(w, h, jpegSubsamp)]; in transform()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
DYUVImage.java109 setBuf(new byte[TJ.bufSizeYUV(width, pad, height, subsamp)], width, pad, in YUVImage()
219 subsamp >= TJ.NUMSAMP) in setBuf()
222 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); in setBuf()
236 int pw = TJ.planeWidth(i, width, subsamp); in setBuf()
237 int ph = TJ.planeHeight(i, height, subsamp); in setBuf()
238 int planeSize = TJ.planeSizeYUV(i, width, strides[i], height, subsamp); in setBuf()
288 height < 1 || subsamp < 0 || subsamp >= TJ.NUMSAMP) in setBuf()
290 if (yuvImage.length < TJ.bufSizeYUV(width, pad, height, subsamp)) in setBuf()
293 int nc = (subsamp == TJ.SAMP_GRAY ? 1 : 3); in setBuf()
299 strides[0] = pad(TJ.planeWidth(0, width, subsamp), pad); in setBuf()
[all …]
DTJDecompressor.java180 if (jpegSubsamp >= TJ.NUMSAMP) in getSubsamp()
195 return TJ.CS_YCbCr; in getColorspace()
198 if (jpegColorspace >= TJ.NUMCS) in getColorspace()
251 TJScalingFactor[] sf = TJ.getScalingFactors(); in getScaledWidth()
292 TJScalingFactor[] sf = TJ.getScalingFactors(); in getScaledHeight()
384 pixelFormat < 0 || pixelFormat >= TJ.NUMPF || flags < 0) in decompress()
442 pixelFormat < 0 || pixelFormat >= TJ.NUMPF || flags < 0) in decompress()
444 int pixelSize = TJ.getPixelSize(pixelFormat); in decompress()
553 if (jpegSubsamp >= TJ.NUMSAMP) in decompressToYUV()
606 if (jpegSubsamp >= TJ.NUMSAMP) in decompressToYUV()
[all …]
DTJCompressor.java148 pitch < 0 || pixelFormat < 0 || pixelFormat >= TJ.NUMPF) in setSourceImage()
153 srcPitch = width * TJ.getPixelSize(pixelFormat); in setSourceImage()
215 pixelFormat = TJ.PF_BGR; break; in setSourceImage()
218 pixelFormat = TJ.PF_XBGR; break; in setSourceImage()
220 pixelFormat = TJ.PF_GRAY; break; in setSourceImage()
223 pixelFormat = TJ.PF_XBGR; in setSourceImage()
225 pixelFormat = TJ.PF_RGBX; in setSourceImage()
231 pixelFormat = TJ.PF_XRGB; in setSourceImage()
233 pixelFormat = TJ.PF_BGRX; in setSourceImage()
252 if (pixelSize != TJ.getPixelSize(pixelFormat)) in setSourceImage()
[all …]
DTJException.java57 if (errorCode >= 0 && errorCode < TJ.NUMERR) in TJException()
77 private int errorCode = TJ.ERR_FATAL;
DTJ.java35 public final class TJ { class
37 private TJ() {} in TJ() method in TJ
DTJTransformer.java131 dstBufs[i] = new byte[TJ.bufSize(w, h, jpegSubsamp)]; in transform()
/third_party/openssl/crypto/sm3/
Dsm3_local.h53 #define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \ argument
56 const SM3_WORD A12_SM = A12 + E + TJ; \
66 #define R1(A,B,C,D,E,F,G,H,TJ,Wi,Wj) \ argument
67 RND(A,B,C,D,E,F,G,H,TJ,Wi,Wj,FF0,GG0)
69 #define R2(A,B,C,D,E,F,G,H,TJ,Wi,Wj) \ argument
70 RND(A,B,C,D,E,F,G,H,TJ,Wi,Wj,FF1,GG1)
/third_party/openssl/test/smime-certs/
Dsmrsa2.pem21 QGO2E2NtolL3umesa+2TJ/8Whw46Iu2llSjtVDm9NGiPk5eA7xPPf1iEi9kCgYAb
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dfa_AF.txt88 TJ{"تاجکستان"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dfa_AF.txt88 TJ{"تاجکستان"}
/third_party/icu/icu4c/source/data/region/
Dfa_AF.txt88 TJ{"تاجکستان"}

12345678910>>...27