Searched refs:tpos (Results 1 – 5 of 5) sorted by relevance
| /freebsd-9-stable/usr.sbin/vidcontrol/ |
| D | decode.c | 40 int n, pos = 0, tpos; in decode() local 59 tpos = 0; in decode() 61 tbuffer[tpos++] = DEC(p[0])<<2 | DEC(p[1])>>4; in decode() 62 tbuffer[tpos++] = DEC(p[1])<<4 | DEC(p[2])>>2; in decode() 63 tbuffer[tpos++] = DEC(p[2])<<6 | DEC(p[3]); in decode() 67 tbuffer[tpos++] = in decode() 71 tbuffer[tpos++] = in decode() 75 tbuffer[tpos++] = in decode() 79 if (tpos == 0) in decode() 81 if (tpos + pos > len) { in decode() [all …]
|
| /freebsd-9-stable/contrib/less/ |
| D | lsystem.c | 257 POSITION mpos, tpos, bpos; local 267 tpos = position(TOP); 268 if (tpos == NULL_POSITION) 269 tpos = ch_zero(); 273 return (pipe_data(cmd, tpos, bpos)); 274 else if (mpos <= tpos) 277 return (pipe_data(cmd, tpos, bpos)); 279 return (pipe_data(cmd, tpos, mpos));
|
| D | jump.c | 200 POSITION tpos; local 240 tpos = position(TOP); 242 if (tpos == NULL_POSITION || pos >= tpos) 305 if (pos >= tpos) 312 back(nline+1, tpos, 1, 0);
|
| D | screen.c | 1853 struct rccoord tpos = _gettextposition(); in line_left() 1854 row = tpos.row; in line_left() 2095 struct rccoord tpos; in clear_eol() 2101 tpos = _gettextposition(); in clear_eol() 2108 _settextwindow(tpos.row, tpos.col, tpos.row, sc_width); in clear_eol() 2114 _settextposition(tpos.row, tpos.col); in clear_eol() 2302 struct rccoord tpos; 2305 tpos = _gettextposition(); 2306 if (tpos.col <= 1) 2308 _settextposition(tpos.row, tpos.col-1); [all …]
|
| /freebsd-9-stable/sys/ofed/include/linux/ |
| D | list.h | 394 #define hlist_for_each_entry_safe(tpos, pos, n, head, member) \ argument 397 tpos = hlist_entry((pos), typeof(*(tpos)), member); 1;}); \
|