Searched refs:MIN (Results 1 – 19 of 19) sorted by relevance
/busybox-1.35.0/miscutils/ |
D | nandwrite.c | 196 int bad_len = MIN(tmp, end_addr) - mtdoffset; in nandwrite_main() 209 limit = MIN(meminfo.size, end_addr); in nandwrite_main() 223 int bad_len = MIN(mtdoffset, limit) - blockstart; in nandwrite_main() 231 limit = MIN(meminfo.size, end_addr); in nandwrite_main()
|
D | less.c | 717 ? MIN(first + max_displayed_line, max_lineno) in m_status_print()
|
/busybox-1.35.0/util-linux/volume_id/ |
D | erofs.c | 62 MIN(sizeof(sb->volume_name), VOLUME_ID_LABEL_SIZE)); in volume_id_probe_erofs()
|
D | f2fs.c | 87 LE, MIN(F2FS_LABEL_BYTES, VOLUME_ID_LABEL_SIZE)); in volume_id_probe_f2fs()
|
/busybox-1.35.0/networking/ |
D | telnetd.c | 187 wr = MIN(BUFSIZE - ts->wridx1, ts->size1); in safe_write_to_pty_decode_iac() 848 count = MIN(BUFSIZE - ts->wridx2, ts->size2); in telnetd_main() 868 count = MIN(BUFSIZE - ts->rdidx1, BUFSIZE - ts->size1); in telnetd_main() 889 count = MIN(BUFSIZE - ts->rdidx2, BUFSIZE - ts->size2); in telnetd_main()
|
D | inetd.c | 538 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK); in bump_nofile() 539 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK); in bump_nofile()
|
/busybox-1.35.0/scripts/kconfig/lxdialog/ |
D | dialog.h | 55 #define MIN(x,y) (x < y ? x : y) macro
|
D | menubox.c | 191 max_choice = MIN(menu_height, item_no); in dialog_menu() 322 choice = MIN(choice + 1, max_choice - 1); in dialog_menu()
|
D | textbox.c | 440 line += MIN(strlen(line), hscroll); /* Scroll horizontally */ in print_line() 443 waddnstr(win, line, MIN(strlen(line), width - 2)); in print_line()
|
D | util.c | 186 int tlen = MIN(width - 2, strlen(title)); in print_title()
|
D | checklist.c | 137 max_choice = MIN(list_height, item_no); in dialog_checklist()
|
/busybox-1.35.0/util-linux/ |
D | swaponoff.c | 224 MIN(prio, SWAP_FLAG_PRIO_MASK); in set_priority_flag()
|
D | mkfs_reiser.c | 199 if (MIN(blocksize * 8, blocks) < i) in mkfs_reiser_main()
|
D | mkfs_ext2.c | 397 lost_and_found_blocks = MIN(EXT2_NDIR_BLOCKS, 16 >> (blocksize_log2 - EXT2_MIN_BLOCK_LOG_SIZE)); in mkfs_ext2_main()
|
/busybox-1.35.0/editors/ |
D | diff.c | 674 int b = span[j].b = MIN(nlen[j], vec[idx][j].b + opt_U_context); in diff() 676 printf(" %c%d", j ? '+' : '-', MIN(a, b)); in diff() 757 i = MIN(i, j); in diffreg()
|
/busybox-1.35.0/archival/libarchive/ |
D | decompress_unlzma.c | 257 buffer_size = MIN(header.dst_size, header.dict_size); in IF_DESKTOP()
|
/busybox-1.35.0/libbb/ |
D | dump.c | 418 dumper->pub.dump_length == -1 ? need : MIN(dumper->pub.dump_length, need), stdin); in get()
|
/busybox-1.35.0/coreutils/ |
D | od_bloaty.c | 1011 n_needed = MIN(end_offset - current_offset, (off_t) G.bytes_per_block); in dump()
|
/busybox-1.35.0/include/ |
D | libbb.h | 347 #ifndef MIN 348 #define MIN(a,b) (((a)<(b))?(a):(b)) macro
|