Home
last modified time | relevance | path

Searched refs:half (Results 1 – 6 of 6) sorted by relevance

/busybox-1.35.0/miscutils/
Dhexedit.c29 smallint half; member
163 column = column*3 + G.half; in redraw_cur_line()
324 if (!G.half) { in hexedit_main()
336 if (!G.half) { in hexedit_main()
337 G.half = 1; in hexedit_main()
340 G.half = 0; in hexedit_main()
380 if (G.half) { in hexedit_main()
381 G.half = 0; in hexedit_main()
391 G.half = 1; in hexedit_main()
396 G.half = 1; in hexedit_main()
Dbc.c2267 BcNum num1, num2, half, f, fprime, *x0, *x1, *temp; in zbc_num_sqrt() local
2294 half.cap = ARRAY_SIZE(half_digs); in zbc_num_sqrt()
2295 half.num = half_digs; in zbc_num_sqrt()
2296 bc_num_one(&half); in zbc_num_sqrt()
2298 half.rdx = 1; in zbc_num_sqrt()
2333 s = zbc_num_mul(&fprime, &half, x1, resrdx); in zbc_num_sqrt()
/busybox-1.35.0/coreutils/
Dfactor.c43 #error Cant find an integer type which is half as wide as ullong
/busybox-1.35.0/docs/
Dtcp.txt14 "A host MAY implement a 'half-duplex' TCP close sequence, so that
Dnofork_noexec.txt61 NOEXEC applets save only one half of fork+exec overhead.
/busybox-1.35.0/shell/
Dash.c7966 int half; in msort() local
7971 half = len >> 1; in msort()
7973 for (n = half; --n >= 0;) { in msort()
7978 q = msort(list, half); /* sort first half of list */ in msort()
7979 p = msort(p, len - half); /* sort second half */ in msort()