/freebsd/usr.sbin/vidcontrol/ |
H A D | decode.c | 37 int n, pos = 0, tpos; in decode() local 56 tpos = 0; in decode() 58 tbuffer[tpos++] = DEC(p[0])<<2 | DEC(p[1])>>4; in decode() 59 tbuffer[tpos++] = DEC(p[1])<<4 | DEC(p[2])>>2; in decode() 60 tbuffer[tpos++] = DEC(p[2])<<6 | DEC(p[3]); in decode() 64 tbuffer[tpos++] = in decode() 68 tbuffer[tpos++] = in decode() 72 tbuffer[tpos++] = in decode() 76 if (tpos == 0) in decode() 78 if (tpos + pos > len) { in decode() [all …]
|
/freebsd/contrib/less/ |
H A D | lsystem.c | 252 POSITION mpos, tpos, bpos; in pipe_mark() 256 * tpos = top of screen. in pipe_mark() 262 tpos = position(TOP); in pipe_mark() 263 if (tpos == NULL_POSITION) in pipe_mark() 264 tpos = ch_zero(); in pipe_mark() 268 return (pipe_data(cmd, tpos, bpos)); in pipe_mark() 269 else if (mpos <= tpos) in pipe_mark() 272 return (pipe_data(cmd, tpos, bpos)); in pipe_mark() 274 return (pipe_data(cmd, tpos, mpos)); in pipe_mark() 253 POSITION mpos, tpos, bpos; pipe_mark() local
|
H A D | jump.c | 228 POSITION tpos; in jump_loc() 269 tpos = position(TOP); in jump_loc() 271 if (tpos == NULL_POSITION || pos >= tpos) in jump_loc() 334 if (pos >= tpos) 341 back(nline+1, tpos, 1, 0); 196 POSITION tpos; jump_loc() local
|
H A D | screen.c | 2129 struct rccoord tpos = _gettextposition(); 2130 row = tpos.row; 2356 struct rccoord tpos; in clear_eol() 2362 tpos = _gettextposition(); in clear_eol() 2369 _settextwindow(tpos.row, tpos.col, tpos.row, sc_width); in clear_eol() 2375 _settextposition(tpos.row, tpos.col); in clear_eol() 2853 struct rccoord tpos; in win32_kbhit() 2119 struct rccoord tpos = _gettextposition(); line_left() local [all...] |
H A D | search.c | 1228 * puts tpos on screen. in search_range() 1230 static POSITION get_lastlinepos(POSITION pos, POSITION tpos, int sheight) in search_range() 1237 if (npos > tpos) in search_range() 1138 get_lastlinepos(POSITION pos,POSITION tpos,int sheight) get_lastlinepos() argument 1159 get_seg(POSITION pos,POSITION tpos) get_seg() argument
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common.cpp | 249 char *tpos = (char*)internal_strchr(templ, '*'); in TemplateMatch() local 251 if ((!tpos) || (tpos1 && tpos1 < tpos)) in TemplateMatch() 252 tpos = tpos1; in TemplateMatch() 253 if (tpos) in TemplateMatch() 254 tpos[0] = 0; in TemplateMatch() 258 templ = tpos; in TemplateMatch() 259 if (tpos) in TemplateMatch() 260 tpos[0] = tpos == tpos1 ? '$' : '*'; in TemplateMatch()
|
/freebsd/sys/dev/drm2/ |
H A D | drm_linux_list.h | 292 #define hlist_for_each_entry_safe(tpos, pos, n, head, member) \ argument 295 tpos = hlist_entry((pos), typeof(*(tpos)), member); 1;}); \
|
/freebsd/usr.bin/indent/ |
H A D | indent.c | 1292 int tpos; in indent_declaration() local 1295 while ((tpos = opt.tabsize * (1 + pos / opt.tabsize)) <= cur_dec_ind) { in indent_declaration() 1297 pos = tpos; in indent_declaration()
|
/freebsd/sys/dev/irdma/ |
H A D | irdma_cm.c | 1568 struct list_head *pos, *tpos; in irdma_del_multiple_qhash() local 1573 list_for_each_safe(pos, tpos, in irdma_del_multiple_qhash()
|