Home
last modified time | relevance | path

Searched refs:hshift (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/less/
H A Dinput.c24 extern int hshift;
163 if (backchars > 0 && !chopline && hshift == 0)
185 if ((chopline || hshift > 0) && !get_segpos)
400 if (backchars > 0 && !chopline && hshift == 0)
416 if (chopline || hshift > 0)
H A Dcommand.c38 extern int hshift;
1587 hshift = save_hshift; in commands()
1694 save_hshift = hshift; in commands()
1695 hshift = 0; in commands()
2002 if (number > hshift) in commands()
2003 number = hshift; in commands()
2004 hshift -= number; in commands()
2017 hshift += number; in commands()
2025 hshift = 0; in commands()
2033 hshift = rrshift(); in commands()
H A Dprompt.c28 extern int hshift;
195 return (hshift != 0);
275 ap_int(hshift);
H A Dline.c42 public int hshift; /* Desired left-shift of output line buffer */ variable
728 if (cshift == hshift && shifted_ansi.end > 0)
740 if (cshift < hshift)
761 while (cshift > hshift)
970 char *start = (cshift < hshift) ? shifted_ansi.data : linebuf.buf;
971 int *end = (cshift < hshift) ? &shifted_ansi.end : &linebuf.end;
H A Dsearch.c39 extern int hshift;
1459 int save_hshift = hshift;
1462 hshift = 0; /* make get_seg count screen lines */
1469 hshift = save_hshift;
1472 hshift = sshift;
H A Dedit.c28 extern int hshift;
484 hshift = 0;
/freebsd-13.1/usr.bin/compress/
H A Dzopen.c167 #define hshift zs->u.w.zs_hshift macro
277 hshift = 0; in zwrite()
279 hshift++; in zwrite()
280 hshift = 8 - hshift; /* Set hash code range bound. */ in zwrite()
289 i = ((c << hshift) ^ ent); /* Xor hashing. */ in zwrite()