Home
last modified time | relevance | path

Searched refs:cwidth (Results 1 – 4 of 4) 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/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/ffmpeg/libavfilter/x86/
Dvf_gblur.asm852 steps, x, y, cwidth, step, ptr, stride
855 steps, nu, bscale, x, y, cwidth, step, \
863 steps, x, y, cwidth, step, ptr, stride
/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)