Lines Matching refs:c

93 		clips[n].c.left = 0;  in btcx_screen_clips()
94 clips[n].c.top = 0; in btcx_screen_clips()
95 clips[n].c.width = -win->left; in btcx_screen_clips()
96 clips[n].c.height = win->height; in btcx_screen_clips()
101 clips[n].c.left = swidth - win->left; in btcx_screen_clips()
102 clips[n].c.top = 0; in btcx_screen_clips()
103 clips[n].c.width = win->width - clips[n].c.left; in btcx_screen_clips()
104 clips[n].c.height = win->height; in btcx_screen_clips()
109 clips[n].c.left = 0; in btcx_screen_clips()
110 clips[n].c.top = 0; in btcx_screen_clips()
111 clips[n].c.width = win->width; in btcx_screen_clips()
112 clips[n].c.height = -win->top; in btcx_screen_clips()
117 clips[n].c.left = 0; in btcx_screen_clips()
118 clips[n].c.top = sheight - win->top; in btcx_screen_clips()
119 clips[n].c.width = win->width; in btcx_screen_clips()
120 clips[n].c.height = win->height - clips[n].c.top; in btcx_screen_clips()
146 nx = (clips[i].c.left-dx) & ~mask; in btcx_align()
147 nw = (clips[i].c.width) & ~mask; in btcx_align()
148 if (nx + nw < clips[i].c.left-dx + clips[i].c.width) in btcx_align()
150 clips[i].c.left = nx; in btcx_align()
151 clips[i].c.width = nw; in btcx_align()
154 clips[i].c.width, clips[i].c.height, in btcx_align()
155 clips[i].c.left, clips[i].c.top); in btcx_align()
170 if (clips[j].c.left > clips[j+1].c.left) { in btcx_sort_clips()
195 if (clips[clip].c.left + clips[clip].c.width <= 0) in btcx_calc_skips()
197 if (clips[clip].c.left > (signed)width) in btcx_calc_skips()
201 if (line > clips[clip].c.top+clips[clip].c.height-1) in btcx_calc_skips()
203 if (line < clips[clip].c.top) { in btcx_calc_skips()
204 if (maxline > clips[clip].c.top-1) in btcx_calc_skips()
205 maxline = clips[clip].c.top-1; in btcx_calc_skips()
208 if (maxline > clips[clip].c.top+clips[clip].c.height-1) in btcx_calc_skips()
209 maxline = clips[clip].c.top+clips[clip].c.height-1; in btcx_calc_skips()
212 if (0 == skip || clips[clip].c.left > skips[skip-1].end) { in btcx_calc_skips()
214 skips[skip].start = clips[clip].c.left; in btcx_calc_skips()
217 skips[skip].end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips()
223 end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips()