Searched refs:cheight (Results 1 – 7 of 7) sorted by relevance
/third_party/gstreamer/gstplugins_good/ext/jpeg/ |
D | gstjpegenc.h | 67 gint cheight[GST_VIDEO_MAX_COMPONENTS]; member
|
D | gstjpegenc.c | 359 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/ |
D | gstinterlace.c | 1105 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/python/Lib/turtledemo/ |
D | __main__.py | 207 cheight = self._canvas.winfo_height() 209 self._canvas.yview_moveto(0.5*(self.canvheight-cheight)/self.canvheight)
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_state.c | 2869 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; in r600_dma_copy_tile() local 2927 cheight = ((R600_DMA_COPY_MAX_SIZE_DW * 4) / pitch) & 0xfffffff8; in r600_dma_copy_tile() 2928 ncopy = (copy_height / cheight) + !!(copy_height % cheight); in r600_dma_copy_tile() 2932 cheight = cheight > copy_height ? copy_height : cheight; in r600_dma_copy_tile() 2933 size = (cheight * pitch) / 4; in r600_dma_copy_tile() 2946 copy_height -= cheight; in r600_dma_copy_tile() 2947 addr += cheight * pitch; in r600_dma_copy_tile() 2948 y += cheight; in r600_dma_copy_tile()
|
D | evergreen_state.c | 3783 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; in evergreen_dma_copy_tile() local 3858 cheight = copy_height; in evergreen_dma_copy_tile() 3859 if (((cheight * pitch) / 4) > EG_DMA_COPY_MAX_SIZE) { in evergreen_dma_copy_tile() 3860 cheight = (EG_DMA_COPY_MAX_SIZE * 4) / pitch; in evergreen_dma_copy_tile() 3862 size = (cheight * pitch) / 4; in evergreen_dma_copy_tile() 3879 copy_height -= cheight; in evergreen_dma_copy_tile() 3880 addr += cheight * pitch; in evergreen_dma_copy_tile() 3881 y += cheight; in evergreen_dma_copy_tile()
|
/third_party/python/Lib/ |
D | turtle.py | 383 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)
|