/external/tensorflow/tensorflow/core/kernels/ |
D | decode_image_op.cc | 114 flags_.dct_method = JDCT_IFAST; in DecodeImageOp() 132 string dct_method; in DecodeImageOp() local 133 OP_REQUIRES_OK(context, context->GetAttr("dct_method", &dct_method)); in DecodeImageOp() 136 (dct_method.empty() || dct_method == "INTEGER_FAST" || in DecodeImageOp() 137 dct_method == "INTEGER_ACCURATE"), in DecodeImageOp() 140 if (dct_method == "INTEGER_FAST") { in DecodeImageOp() 141 flags_.dct_method = JDCT_IFAST; in DecodeImageOp() 142 } else if (dct_method == "INTEGER_ACCURATE") { in DecodeImageOp() 143 flags_.dct_method = JDCT_ISLOW; in DecodeImageOp()
|
/external/libjpeg-turbo/ |
D | jcdctmgr.c | 254 switch (cinfo->dct_method) { in start_pass_fdctmgr() 633 switch (cinfo->dct_method) { in jinit_forward_dct() 667 switch (cinfo->dct_method) { in jinit_forward_dct() 704 if (cinfo->dct_method == JDCT_FLOAT) in jinit_forward_dct()
|
D | djpeg.c | 240 cinfo->dct_method = JDCT_ISLOW; in parse_switches() 242 cinfo->dct_method = JDCT_IFAST; in parse_switches() 244 cinfo->dct_method = JDCT_FLOAT; in parse_switches() 287 cinfo->dct_method = JDCT_FASTEST; in parse_switches()
|
D | cjpeg.c | 274 cinfo->dct_method = JDCT_ISLOW; in parse_switches() 276 cinfo->dct_method = JDCT_IFAST; in parse_switches() 278 cinfo->dct_method = JDCT_FLOAT; in parse_switches()
|
D | jddctmgr.c | 152 switch (cinfo->dct_method) { in start_pass()
|
D | jpeglib.h | 375 J_DCT_METHOD dct_method; /* DCT algorithm selector */ member 500 J_DCT_METHOD dct_method; /* IDCT algorithm selector */ member
|
D | jdapimin.c | 205 cinfo->dct_method = JDCT_DEFAULT; in default_decompress_parms()
|
D | jcparam.c | 249 cinfo->dct_method = JDCT_DEFAULT; in jpeg_set_defaults()
|
D | turbojpeg.c | 246 if(jpegQual>=96 || flags&TJFLAG_ACCURATEDCT) cinfo->dct_method=JDCT_ISLOW; in setCompDefaults() 247 else cinfo->dct_method=JDCT_FASTEST; in setCompDefaults() 326 if(flags&TJFLAG_FASTDCT) dinfo->dct_method=JDCT_FASTEST; in setDecompDefaults() 1877 if(flags&TJFLAG_FASTDCT) dinfo->dct_method=JDCT_FASTEST; in tjDecompressToYUVPlanes()
|
D | libjpeg.txt | 966 J_DCT_METHOD dct_method 1267 J_DCT_METHOD dct_method 2175 * dct_method can be changed before each call to jpeg_start_output().
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
D | tfexample_decoder.py | 353 dct_method=''): argument 390 self._dct_method = dct_method 424 image_buffer, channels=self._channels, dct_method=self._dct_method)
|
/external/tensorflow/tensorflow/core/lib/jpeg/ |
D | jpeg_mem.h | 63 J_DCT_METHOD dct_method = JDCT_DEFAULT; member
|
D | jpeg_mem.cc | 153 cinfo.dct_method = flags.dct_method; in UncompressLow()
|
D | jpeg_mem_unittest.cc | 382 flags.dct_method = JDCT_IFAST; in TEST()
|
/external/ImageMagick/coders/ |
D | jpeg.c | 1191 jpeg_info.dct_method=JDCT_FLOAT; in ReadJPEGImage() 1200 jpeg_info.dct_method=JDCT_DEFAULT; in ReadJPEGImage() 1207 jpeg_info.dct_method=JDCT_FASTEST; in ReadJPEGImage() 1209 jpeg_info.dct_method=JDCT_FLOAT; in ReadJPEGImage() 1216 jpeg_info.dct_method=JDCT_IFAST; in ReadJPEGImage() 1218 jpeg_info.dct_method=JDCT_ISLOW; in ReadJPEGImage() 2250 jpeg_info.dct_method=JDCT_FLOAT; in WriteJPEGImage() 2259 jpeg_info.dct_method=JDCT_DEFAULT; in WriteJPEGImage() 2266 jpeg_info.dct_method=JDCT_FASTEST; in WriteJPEGImage() 2268 jpeg_info.dct_method=JDCT_FLOAT; in WriteJPEGImage() [all …]
|
/external/tensorflow/tensorflow/tools/api/golden/ |
D | tensorflow.image.pbtxt | 45 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va… 61 …ncy_upscaling\', \'try_recover_truncated\', \'acceptable_fraction\', \'dct_method\', \'name\'], va…
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_DecodeJpeg.pbtxt | 48 name: "dct_method"
|
D | api_def_DecodeAndCropJpeg.pbtxt | 54 name: "dct_method"
|
/external/libvncserver/common/ |
D | turbojpeg.c | 187 if(jpegQual>=96) cinfo->dct_method=JDCT_ISLOW; in setCompDefaults() 188 else cinfo->dct_method=JDCT_FASTEST; in setCompDefaults()
|
/external/libyuv/files/source/ |
D | mjpeg_decoder.cc | 507 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | mjpeg_decoder.cc | 510 decompress_struct_->dct_method = JDCT_IFAST; // JDCT_ISLOW is default in StartDecode()
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_test.py | 2789 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_ACCURATE") 2791 image_ops.encode_jpeg(image1), dct_method="INTEGER_ACCURATE") 2809 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_FAST") 2811 image_ops.encode_jpeg(image1), dct_method="INTEGER_FAST") 2833 image1 = image_ops.decode_jpeg(jpeg0, dct_method="INTEGER_FAST")
|
/external/tensorflow/ |
D | RELEASE.md | 885 behavior by specifying the attribute `dct_method='INTEGER_ACCURATE'`.
|
/external/tensorflow/tensorflow/core/ops/ |
D | ops.pbtxt | 6179 name: "dct_method" 6352 name: "dct_method"
|
/external/tensorflow/tensorflow/core/ops/compat/ |
D | ops_history.v1.pbtxt | 14388 name: "dct_method" 14690 name: "dct_method"
|