Home
last modified time | relevance | path

Searched refs:cheight (Results 1 – 9 of 9) sorted by relevance

/third_party/gstreamer/gstplugins_good/ext/jpeg/
Dgstjpegenc.h67 gint cheight[GST_VIDEO_MAX_COMPONENTS]; member
Dgstjpegenc.c359 enc->cheight[i] = GST_VIDEO_INFO_COMP_HEIGHT (info, i); in gst_jpegenc_set_format()
365 GST_ROUND_UP_4 (GST_VIDEO_INFO_HEIGHT (info)) / enc->cheight[i]; in gst_jpegenc_set_format()
/third_party/gstreamer/gstplugins_bad/gst/interlace/
Dgstinterlace.c1105 gint cheight, cwidth; in copy_fields() local
1121 cheight = GST_VIDEO_FRAME_COMP_HEIGHT (&dframe, i); in copy_fields()
1124 for (j = field_index; j < cheight; j += 2) { in copy_fields()
1169 gint cheight, cwidth; in copy_field() local
1178 cheight = GST_VIDEO_FRAME_COMP_HEIGHT (&sframe, i); in copy_field()
1181 for (j = field_index; j < cheight; j += 2) { in copy_field()
/third_party/pixman/pixman/
Dpixman-bits-image.c270 int32_t cheight = pixman_fixed_to_int (params[1]); in bits_image_fetch_pixel_convolution() local
282 y2 = y1 + cheight; in bits_image_fetch_pixel_convolution()
336 int cheight = pixman_fixed_to_int (params[1]); in bits_image_fetch_pixel_separable_convolution() local
342 int y_off = ((cheight << 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()
365 y2 = y1 + cheight; in bits_image_fetch_pixel_separable_convolution()
Dpixman-fast-path.c2718 int cheight = pixman_fixed_to_int (params[1]); in bits_image_fetch_separable_convolution_affine() local
2720 int y_off = ((cheight << 16) - pixman_fixed_1) >> 1; in bits_image_fetch_separable_convolution_affine()
2770 y2 = y1 + cheight; 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()
/third_party/python/Lib/turtledemo/
D__main__.py207 cheight = self._canvas.winfo_height()
209 self._canvas.yview_moveto(0.5*(self.canvheight-cheight)/self.canvheight)
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_state.c2866 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; in r600_dma_copy_tile() local
2924 cheight = ((R600_DMA_COPY_MAX_SIZE_DW * 4) / pitch) & 0xfffffff8; in r600_dma_copy_tile()
2925 ncopy = (copy_height / cheight) + !!(copy_height % cheight); in r600_dma_copy_tile()
2929 cheight = cheight > copy_height ? copy_height : cheight; in r600_dma_copy_tile()
2930 size = (cheight * pitch) / 4; in r600_dma_copy_tile()
2943 copy_height -= cheight; in r600_dma_copy_tile()
2944 addr += cheight * pitch; in r600_dma_copy_tile()
2945 y += cheight; in r600_dma_copy_tile()
Devergreen_state.c3788 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; in evergreen_dma_copy_tile() local
3863 cheight = copy_height; in evergreen_dma_copy_tile()
3864 if (((cheight * pitch) / 4) > EG_DMA_COPY_MAX_SIZE) { in evergreen_dma_copy_tile()
3865 cheight = (EG_DMA_COPY_MAX_SIZE * 4) / pitch; in evergreen_dma_copy_tile()
3867 size = (cheight * pitch) / 4; in evergreen_dma_copy_tile()
3884 copy_height -= cheight; in evergreen_dma_copy_tile()
3885 addr += cheight * pitch; in evergreen_dma_copy_tile()
3886 y += cheight; in evergreen_dma_copy_tile()
/third_party/python/Lib/
Dturtle.py383 cheight = self._canvas.winfo_height()
385 self._canvas.yview_moveto(0.5*(self.canvheight-cheight)/self.canvheight)
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)