/external/replicaisland/src/com/replica/replicaisland/ |
D | MotionBlurComponent.java | 35 public int[] crop = new int[4]; field in MotionBlurComponent.BlurRecord 77 mHistory[mCurrentStep].crop[0] = drawableCrop[0]; in update() 78 mHistory[mCurrentStep].crop[1] = drawableCrop[1]; in update() 79 mHistory[mCurrentStep].crop[2] = drawableCrop[2]; in update() 80 mHistory[mCurrentStep].crop[3] = drawableCrop[3]; in update() 100 stepImage.setCrop(record.crop[0], record.crop[1], record.crop[2], -record.crop[3]); in update()
|
D | OpenGLSystem.java | 61 public static final void setTextureCrop(int[] crop) { in setTextureCrop() argument 63 cropSignature = (crop[0] + crop[1]) << 16; in setTextureCrop() 64 cropSignature |= crop[2] + crop[3]; in setTextureCrop() 68 crop, 0); in setTextureCrop()
|
/external/autotest/client/site_tests/camera_V4L2/src/ |
D | media_v4l2_unittest.cc | 112 v4l2_crop crop; in TestSetCrop() local 113 memset(&crop, 0, sizeof(crop)); in TestSetCrop() 114 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; in TestSetCrop() 115 crop.c = cropcap.defrect; in TestSetCrop() 116 v4l2_dev.SetCrop(&crop); in TestSetCrop() 127 v4l2_crop crop; in TestGetCrop() local 128 memset(&crop, 0, sizeof(crop)); in TestGetCrop() 129 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; in TestGetCrop() 130 v4l2_dev.GetCrop(&crop); in TestGetCrop()
|
D | media_v4l2_device.cc | 101 v4l2_crop crop; in InitDevice() local 102 memset(&crop, 0, sizeof(crop)); in InitDevice() 104 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; in InitDevice() 105 crop.c = cropcap.defrect; in InitDevice() 106 SetCrop(&crop); in InitDevice() 734 bool V4L2Device::GetCrop(v4l2_crop* crop) { in GetCrop() argument 735 if (-1 == DoIoctl(VIDIOC_G_CROP, crop)) { in GetCrop() 740 crop->c.left, crop->c.top, in GetCrop() 741 crop->c.width, crop->c.height); in GetCrop() 745 bool V4L2Device::SetCrop(v4l2_crop* crop) { in SetCrop() argument [all …]
|
D | media_v4l2_device.h | 61 bool GetCrop(v4l2_crop* crop); 62 bool SetCrop(v4l2_crop* crop);
|
/external/libjpeg-turbo/ |
D | tjexampletest.in | 99 …$EXEDIR/jpegtran -crop 70x60+16+16 -flip horizontal -trim $OUTDIR/${basename}_${samp}_fast.jpg >$O… 100 …$EXEDIR/jpegtran -crop 70x60+16+16 -flip vertical -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUT… 101 …$EXEDIR/jpegtran -crop 70x60+16+16 -transpose -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUTDIR/… 102 …$EXEDIR/jpegtran -crop 70x60+16+16 -transverse -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUTDIR… 103 …$EXEDIR/jpegtran -crop 70x60+16+16 -rotate 90 -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUTDIR/… 104 …$EXEDIR/jpegtran -crop 70x60+16+16 -rotate 180 -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUTDIR… 105 …$EXEDIR/jpegtran -crop 70x60+16+16 -rotate 270 -trim $OUTDIR/${basename}_${samp}_fast.jpg >$OUTDIR… 109 …DIR/${basename}_${samp}_fast.jpg $OUTDIR/${basename}_${samp}_${xform}.jpg -$xform -crop 16,16,70x60 112 …DIR/${basename}_${samp}_fast.jpg $OUTDIR/${basename}_${samp}_${xform}.bmp -$xform -crop 16,16,70x60 118 …ename}_${samp}_fast.jpg $OUTDIR/${basename}_${samp}_${xform}.bmp -$xform -crop 16,16,70x60 -fastup… [all …]
|
D | djpeg.c | 93 boolean skip, crop; variable 200 crop = FALSE; in parse_switches() 397 crop = TRUE; in parse_switches() 700 } else if (crop) { in main()
|
D | transupp.h | 122 boolean crop; /* if TRUE, crop source image */ member
|
D | Makefile.am | 603 …./djpeg -dct int -crop 62x62+71+71 -ppm -outfile testout_420_islow_prog_crop62x62,71,71.ppm testou… 608 …./djpeg -dct int -crop 53x53+4+4 -ppm -outfile testout_420_islow_ari_crop53x53,4,4.ppm $(srcdir)/t… 619 …./djpeg -dct int -crop 98x98+13+13 -ppm -outfile testout_444_islow_prog_crop98x98,13,13.ppm testou… 626 …./djpeg -dct int -crop 37x37+0+0 -ppm -outfile testout_444_islow_ari_crop37x37,0,0.ppm testout_444… 633 …./jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testout_crop.jpg $(srcdir)/testimages/$…
|
D | CMakeLists.txt | 800 ${dir}djpeg${suffix} -dct int -crop 62x62+71+71 -ppm 810 ${dir}djpeg${suffix} -dct int -crop 53x53+4+4 -ppm 833 ${dir}djpeg${suffix} -dct int -crop 98x98+13+13 -ppm 848 ${dir}djpeg${suffix} -dct int -crop 37x37+0+0 -ppm 857 add_test(jpegtran${suffix}-crop 858 ${dir}jpegtran${suffix} -crop 120x90+20+50 -transpose -perfect 860 add_test(jpegtran${suffix}-crop-cmp
|
D | jpegtran.c | 146 transformoption.crop = FALSE; in parse_switches()
|
D | transupp.c | 798 info->crop = FALSE; in jtransform_parse_crop_spec() 842 info->crop = TRUE; in jtransform_parse_crop_spec() 979 if (info->crop) { in jtransform_request_workspace()
|
/external/webrtc/talk/media/base/ |
D | videoframe.h | 179 bool crop) const; 186 bool crop) const; 193 bool crop) const;
|
/external/autotest/client/cros/image_comparison/ |
D | rgb_image_comparer.py | 61 golden_image = golden_image.crop(box) 62 test_image = test_image.crop(box)
|
D | pdiff_image_comparer.py | 46 Image.open(golden_img_path).crop(box).save(tmp_golden_img_path) 47 Image.open(test_img_path).crop(box).save(tmp_test_img_path)
|
/external/skia/bench/ |
D | BlurImageFilterBench.cpp | 81 const SkImageFilter::CropRect* crop = in onDraw() local 83 SkAutoTUnref<SkImageFilter> blur(SkBlurImageFilter::Create(fSigmaX, fSigmaY, input, crop)); in onDraw()
|
/external/opencv3/modules/videoio/src/ |
D | cap_libv4l.cpp | 332 struct v4l2_crop crop; member 1522 CLEAR (capture->crop); in icvSetVideoSize() 1523 capture->crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; in icvSetVideoSize() 1524 capture->crop.c.left = 0; in icvSetVideoSize() 1525 capture->crop.c.top = 0; in icvSetVideoSize() 1526 capture->crop.c.height = cropHeight; in icvSetVideoSize() 1527 capture->crop.c.width = cropWidth; in icvSetVideoSize() 1530 xioctl (capture->deviceHandle, VIDIOC_S_CROP, &capture->crop); in icvSetVideoSize()
|
D | cap_v4l.cpp | 323 struct v4l2_crop crop; member 2499 CLEAR (capture->crop); in icvSetVideoSize() 2500 capture->crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; in icvSetVideoSize() 2501 capture->crop.c= capture->cropcap.defrect; in icvSetVideoSize() 2504 if (ioctl (capture->deviceHandle, VIDIOC_S_CROP, &capture->crop) < 0) { in icvSetVideoSize()
|
/external/autotest/client/cros/chameleon/ |
D | screen_capture.py | 84 image = image.crop(boundary)
|
/external/autotest/client/cros/video/ |
D | chameleon_screenshot_capturer.py | 103 img.crop(box).save(fullpath)
|
/external/piex/src/ |
D | tiff_parser.cc | 560 std::vector<std::uint32_t> crop(2); in GetFullDimension32() local 562 if (tiff_directory.Get(kExifTagDefaultCropSize, &crop)) { in GetFullDimension32() 563 *width = crop[0]; in GetFullDimension32() 564 *height = crop[1]; in GetFullDimension32()
|
/external/autotest/client/cros/graphics/ |
D | graphics_utils.py | 355 image.crop() 361 cropped = image.crop(box) 404 image = image.crop(box)
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_calibration/ |
D | py_calibration.markdown | 162 can be used to crop the result. 172 This is the shortest path. Just call the function and use ROI obtained above to crop the result. 177 # crop the image 191 # crop the image
|
/external/kernel-headers/original/uapi/drm/ |
D | exynos_drm.h | 187 __u32 crop; member
|
/external/webp/ |
D | README | 179 -crop <x> <y> <w> <h> .. crop picture with the given rectangle 284 -crop <x> <y> <w> <h> ... crop output with the given rectangle
|