Home
last modified time | relevance | path

Searched refs:cwidth (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/tools/
Dyuvcmp.c43 int cwidth = width / 2; in main() local
125 x = c % cwidth; in main()
126 y = c / cwidth; in main()
143 x / 8 + y / 8 * cwidth / 8); in main()
/third_party/gstreamer/gstplugins_good/ext/jpeg/
Dgstjpegenc.h66 gint cwidth[GST_VIDEO_MAX_COMPONENTS]; member
Dgstjpegenc.c358 enc->cwidth[i] = GST_VIDEO_INFO_COMP_WIDTH (info, i); in gst_jpegenc_set_format()
362 GST_ROUND_UP_4 (GST_VIDEO_INFO_WIDTH (info)) / enc->cwidth[i]; in gst_jpegenc_set_format()
529 for (l = jpegenc->cwidth[k]; l > 0; l--) { in gst_jpegenc_handle_frame()
/third_party/pixman/pixman/
Dpixman-bits-image.c269 int32_t cwidth = pixman_fixed_to_int (params[0]); in bits_image_fetch_pixel_convolution() local
281 x2 = x1 + cwidth; in bits_image_fetch_pixel_convolution()
335 int cwidth = pixman_fixed_to_int (params[0]); in bits_image_fetch_pixel_separable_convolution() local
341 int x_off = ((cwidth << 16) - pixman_fixed_1) >> 1; in bits_image_fetch_pixel_separable_convolution()
360 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight; in bits_image_fetch_pixel_separable_convolution()
364 x2 = x1 + cwidth; in bits_image_fetch_pixel_separable_convolution()
372 pixman_fixed_t *x_params = params + 4 + px * cwidth; in bits_image_fetch_pixel_separable_convolution()
Dpixman-fast-path.c2717 int cwidth = pixman_fixed_to_int (params[0]); in bits_image_fetch_separable_convolution_affine() local
2719 int x_off = ((cwidth << 16) - pixman_fixed_1) >> 1; in bits_image_fetch_separable_convolution_affine()
2769 x2 = x1 + cwidth; in bits_image_fetch_separable_convolution_affine()
2774 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight; in bits_image_fetch_separable_convolution_affine()
2782 pixman_fixed_t *x_params = params + 4 + px * cwidth; in bits_image_fetch_separable_convolution_affine()
/third_party/gstreamer/gstplugins_bad/gst/interlace/
Dgstinterlace.c1105 gint cheight, cwidth; in copy_fields() local
1122 cwidth = MIN (ABS (ss), ABS (ds)); in copy_fields()
1125 memcpy (d, s, cwidth); in copy_fields()
1169 gint cheight, cwidth; in copy_field() local
1179 cwidth = MIN (ABS (ss), ABS (ds)); in copy_field()
1182 memcpy (d, s, cwidth); in copy_field()
/third_party/python/Lib/turtledemo/
D__main__.py206 cwidth = self._canvas.winfo_width()
208 self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
/third_party/python/Lib/
Dturtle.py382 cwidth = self._canvas.winfo_width()
384 self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
386 if cwidth < self.canvwidth or cheight < self.canvheight:
437 def setupcanvas(self, width, height, cwidth, cheight): argument
438 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)