Lines Matching refs:left
95 if (win->left < 0) { in btcx_screen_clips()
97 clips[n].c.left = 0; in btcx_screen_clips()
99 clips[n].c.width = -win->left; in btcx_screen_clips()
103 if (win->left + win->width > swidth) { in btcx_screen_clips()
105 clips[n].c.left = swidth - win->left; in btcx_screen_clips()
107 clips[n].c.width = win->width - clips[n].c.left; in btcx_screen_clips()
113 clips[n].c.left = 0; in btcx_screen_clips()
121 clips[n].c.left = 0; in btcx_screen_clips()
137 nx = (win->left + mask) & ~mask; in btcx_align()
139 if (nx + nw > win->left + win->width) in btcx_align()
141 dx = nx - win->left; in btcx_align()
142 win->left = nx; in btcx_align()
146 win->width, win->height, win->left, win->top, dx); in btcx_align()
150 nx = (clips[i].c.left-dx) & ~mask; in btcx_align()
152 if (nx + nw < clips[i].c.left-dx + clips[i].c.width) in btcx_align()
154 clips[i].c.left = nx; in btcx_align()
159 clips[i].c.left, clips[i].c.top); in btcx_align()
174 if (clips[j].c.left > clips[j+1].c.left) { in btcx_sort_clips()
199 if (clips[clip].c.left + clips[clip].c.width <= 0) in btcx_calc_skips()
201 if (clips[clip].c.left > (signed)width) in btcx_calc_skips()
216 if (0 == skip || clips[clip].c.left > skips[skip-1].end) { in btcx_calc_skips()
218 skips[skip].start = clips[clip].c.left; in btcx_calc_skips()
221 skips[skip].end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips()
227 end = clips[clip].c.left + clips[clip].c.width; in btcx_calc_skips()