Home
last modified time | relevance | path

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

/freebsd-head/crypto/libecc/src/nn/
HDnn_logical.c42 bitcnt_t lshift, hshift; in nn_lshift_fixedlen() local
51 hshift = cnt % WORD_BITS; in nn_lshift_fixedlen()
52 lshift = (bitcnt_t)(WORD_BITS - hshift); in nn_lshift_fixedlen()
64 hipart = WLSHIFT(in->val[ipos], hshift); in nn_lshift_fixedlen()
96 bitcnt_t lshift, hshift, blen; in nn_lshift() local
115 hshift = cnt % WORD_BITS; in nn_lshift()
116 lshift = (bitcnt_t)(WORD_BITS - hshift); in nn_lshift()
128 hipart = WLSHIFT(in->val[ipos], hshift); in nn_lshift()
160 bitcnt_t lshift, hshift; in nn_rshift_fixedlen() local
170 hshift = (bitcnt_t)(WORD_BITS - lshift); in nn_rshift_fixedlen()
[all …]
/freebsd-head/contrib/less/
HDinput.c23 extern int hshift;
204 if (backchars > 0 && (nochop || !chop_line()) && hshift == 0) in forw_line_seg()
334 return forw_line_seg(curr_pos, (chop_line() || hshift > 0), TRUE, FALSE); in forw_line()
467 if (backchars > 0 && !chop_line() && hshift == 0) in back_line()
484 if (chop_line() || hshift > 0) in back_line()
HDforwback.c31 extern int hshift;
134 int save_hshift = hshift; in forw_line_pfx()
138 hshift = 0; in forw_line_pfx()
142 hshift = save_hshift; in forw_line_pfx()
HDcommand.c37 extern int hshift;
1702 hshift = save_hshift; in commands()
1855 save_hshift = hshift; in commands()
1856 hshift = 0; in commands()
2165 if (number > hshift) in commands()
2166 number = hshift; in commands()
2168 hshift -= (int) number; in commands()
2181 hshift += (int) number; in commands()
2190 hshift = 0; in commands()
2199 hshift = rrshift(); in commands()
HDline.c59 public int hshift; /* Desired left-shift of output line buffer */ variable
790 if (cshift == hshift) in store_char()
808 if (cshift < hshift) in store_char()
829 while (cshift > hshift) in store_char()
1047 constant char *start = (cshift < hshift) ? xbuf_char_data(&shifted_ansi): linebuf.buf; in store_ansi()
1048 size_t *end = (cshift < hshift) ? &shifted_ansi.end : &linebuf.end; in store_ansi()
1411 cp.col = col + hshift - line_pfx_width(); in pos_from_col()
1663 int save_hshift = hshift; in load_line()
1665 hshift = 0; in load_line()
1676 hshift += 1; in load_line()
[all …]
HDposition.c28 extern int hshift;
300 hshift = pos_shift(linepos, (size_t) (tpos - linepos)); in pos_rehead()
HDprompt.c26 extern int hshift;
204 return (hshift != 0); in cond()
279 ap_int(hshift); in protochar()
HDsearch.c38 extern int hshift;
625 else if (start_col > hshift && end_col < hshift + swidth) in shift_visible()
626 new_hshift = hshift; /* already visible; leave hshift unchanged */ in shift_visible()
635 if (new_hshift != hshift) in shift_visible()
637 hshift = new_hshift; in shift_visible()
HDedit.c30 extern int hshift;
659 hshift = 0; in edit_ifile()
/freebsd-head/usr.bin/compress/
HDzopen.c162 #define hshift zs->u.w.zs_hshift macro
272 hshift = 0; in zwrite()
274 hshift++; in zwrite()
275 hshift = 8 - hshift; /* Set hash code range bound. */ in zwrite()
284 i = ((c << hshift) ^ ent); /* Xor hashing. */ in zwrite()