Searched refs:cwidth (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/usr.bin/fmt/
H A Dfmt.c537 int cwidth; local
540 width += (cwidth = wcwidth(*p)) > 0 ? cwidth : 1;
607 int cwidth; local
613 width += (cwidth = wcwidth(*p)) > 0 ? cwidth : 1;
641 int cwidth; local
653 col += (cwidth = wcwidth(ch)) > 0 ? cwidth : 1;
/freebsd-10-stable/contrib/texinfo/info/
H A Dwindow.c813 unsigned int cwidth, c;
839 cwidth = 0;
845 cwidth = 0;
848 cwidth = character_width (c, hpos);
851 cwidth = character_width (c, hpos);
854 if ((hpos + cwidth) < (unsigned int) window->width)
857 hpos += cwidth;
812 unsigned int cwidth, c; local
/freebsd-10-stable/contrib/gcclibs/libcpp/
H A Dcharset.c1081 size_t cwidth = CPP_OPTION (pfile, char_precision);
1082 size_t cmask = width_to_mask (cwidth);
1083 size_t nbwc = width / cwidth;
1097 n >>= cwidth;
1458 size_t cwidth = CPP_OPTION (pfile, char_precision);
1460 size_t cmask = width_to_mask (cwidth);
1461 size_t nbwc = width / cwidth;
1473 result = (result << cwidth) | (c & cmask);
1080 size_t cwidth = CPP_OPTION (pfile, char_precision); local
1096 n >>= cwidth; local
1455 size_t cwidth = CPP_OPTION (pfile, char_precision); local

Completed in 87 milliseconds