/busybox-1.35.0/examples/shutdown-1.0/script/ |
D | stop_storage | 59 while read dev mntpoint fstype opt n1 n2; do 62 say "$dev $mntpoint $fstype $opt $n1 $n2" 67 say "$dev $mntpoint $fstype $opt $n1 $n2 - RW!" 70 say "$dev $mntpoint $fstype $opt $n1 $n2"
|
/busybox-1.35.0/archival/ |
D | bzip2.c | 128 int n, n2, ret; in IF_DESKTOP() local 146 n2 = full_write(STDOUT_FILENO, wbuf, n); in IF_DESKTOP() 147 if (n2 != n) { in IF_DESKTOP() 148 if (n2 >= 0) in IF_DESKTOP() 150 bb_simple_perror_msg(n2 >= 0 ? "short write" : bb_msg_write_error); in IF_DESKTOP()
|
/busybox-1.35.0/archival/libarchive/bz/ |
D | huffman.c | 111 int32_t nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local 145 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap); in BZ2_hbMakeCodeLengths() 147 parent[n1] = parent[n2] = nNodes; in BZ2_hbMakeCodeLengths() 148 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]); in BZ2_hbMakeCodeLengths()
|
/busybox-1.35.0/miscutils/ |
D | crond.c | 227 int n2 = -1; in ParseField() local 239 n2 = modvalue - 1; in ParseField() 247 n2 = strtol(ptr, &endp, 10) + off; in ParseField() 261 n2 = i / 3; in ParseField() 273 if (*ptr == '-' && n2 < 0) { in ParseField() 282 if (n2 < 0) { in ParseField() 283 n2 = n1; in ParseField() 310 } while (n1 != n2); in ParseField() 317 n2 = -1; in ParseField()
|
D | bc.c | 5450 BcNum *n1, *n2; in zxc_program_op() local 5452 s = zxc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false); in zxc_program_op() 5457 …IF_ERROR_RETURN_POSSIBLE(s =) zxc_program_ops[inst - XC_INST_POWER](n1, n2, &res.d.n, G.prog.scale… in zxc_program_op() 5817 BcNum *n1, *n2; in zxc_program_logical() local 5820 s = zxc_program_binOpPrep(&opd1, &n1, &opd2, &n2, false); in zxc_program_logical() 5826 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero); in zxc_program_logical() 5828 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero); in zxc_program_logical() 5830 cond = bc_num_cmp(n1, n2); in zxc_program_logical() 5865 BcNum n2; in zdc_program_assignStr() local 5868 memset(&n2, 0, sizeof(BcNum)); in zdc_program_assignStr() [all …]
|
/busybox-1.35.0/scripts/ |
D | generate_BUFSIZ.sh | 122 oldcfg=`tail -n2 -- "$common_bufsiz_h.1k.OK"`
|
/busybox-1.35.0/editors/ |
D | awk.c | 1544 node *n, *n2, *save_brk, *save_cont; in chain_loop() local 1553 n2 = chain_node(OC_EXEC | Vx); in chain_loop() 1554 n2->l.n = nn; in chain_loop() 1555 n2->a.n = n; in chain_loop() 1556 continue_ptr->a.n = n2; in chain_loop() 1582 node *n, *n2, *n3; in chain_group() local 1608 n2 = chain_node(OC_EXEC); in chain_group() 1612 n2->a.n = seq->last; in chain_group() 1620 n2 = parse_lrparen_list(); in chain_group() 1622 n->l.n = n2; in chain_group() [all …]
|
/busybox-1.35.0/coreutils/ |
D | dd.c | 584 ssize_t n2; in dd_main() local 597 n2 = (n >> 1); in dd_main() 598 while (--n2 >= 0) { in dd_main()
|
/busybox-1.35.0/shell/ |
D | ash.c | 11752 union node *n1, *n2, *n3; in list() local 11779 n2 = andor(); in list() 11782 if (n2->type == NPIPE) { in list() 11783 n2->npipe.pipe_backgnd = 1; in list() 11785 if (n2->type != NREDIR) { in list() 11787 n3->nredir.n = n2; in list() 11789 n2 = n3; in list() 11791 n2->type = NBACKGND; in list() 11795 n1 = n2; in list() 11800 n3->nbinary.ch2 = n2; in list() [all …]
|