Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/nn/
H A Dnn_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/contrib/less/
H A Dinput.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_seg()
467 if (backchars > 0 && !chop_line() && hshift == 0) in back_line()
484 if (chop_line() || hshift > 0) in back_line()
H A Dforwback.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()
H A Dcommand.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)
2166 number = hshift;
2168 hshift -= (int) number;
2181 hshift += (int) number;
2190 hshift = 0;
2199 hshift
[all...]
H A Dline.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)
1047 constant char *start = (cshift < hshift) ? xbuf_char_data(&shifted_ansi): linebuf.buf; in do_append()
1048 size_t *end = (cshift < hshift) ? &shifted_ansi.end : &linebuf.end; in do_append()
1411 cp.col = col + hshift - line_pfx_width(); in back_raw_line()
1663 int save_hshift = hshift;
1665 hshift = 0;
1676 hshift
[all...]
H A Dprompt.c26 extern int hshift;
204 return (hshift != 0); in cond()
279 ap_int(hshift); in protochar()
H A Dsearch.c38 extern int hshift;
610 * Set the hshift for the line starting at line_pos so that the string
625 else if (start_col > hshift && end_col < hshift + swidth) in hlist_getstorage()
626 new_hshift = hshift; /* already visible; leave hshift unchanged */ in hlist_getstorage()
635 if (new_hshift != hshift) in hlist_getstorage()
637 hshift = new_hshift;
H A Dedit.c30 extern int hshift;
659 hshift = 0; in edit_ifile()
/freebsd/usr.bin/compress/
H A Dzopen.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()