Home | History | Annotate | Download | only in posix

Lines Matching refs:TT

73         if (TT.tabcount < 2) {
74 width = TT.tabcount ? *TT.tab : 8;
76 } else while (stop < TT.tabcount) {
77 if (TT.tab[stop] > x) {
78 width = TT.tab[stop] - x;
96 for (tabs = TT.tabs; tabs; tabs = tabs->next) {
118 TT.tabcount = parse_tablist(NULL);
121 if (TT.tabcount) {
122 TT.tab = xmalloc(sizeof(unsigned)*TT.tabcount);
123 parse_tablist(TT.tab);
127 if (CFG_TOYBOX_FREE) free(TT.tab);