Lines Matching refs:bswidth
187 * {{ Returning pwidth and bswidth separately is a historical artifact
190 static constant char * cmd_step_common(char *p, LWCHAR ch, size_t len, int *pwidth, int *bswidth)
217 if (bswidth != NULL)
218 *bswidth = width;
225 static constant char * cmd_step_right(char **pp, int *pwidth, int *bswidth)
230 return cmd_step_common(p, ch, ptr_diff(*pp, p), pwidth, bswidth);
236 static constant char * cmd_step_left(char **pp, int *pwidth, int *bswidth)
241 return cmd_step_common(*pp, ch, ptr_diff(p, *pp), pwidth, bswidth);
252 int width, bswidth;
254 cmd_step_left(&cp, &width, &bswidth);
255 while (bswidth-- > 0)
414 int bswidth = 0;
424 cmd_step_left(&ncp, &width, &bswidth);
432 while (bswidth-- > 0)