Home | History | Annotate | Download | only in sysinst

Lines Matching defs:ndx

552 	size_t i, ndx, max = menu->numopts;
567 for (ndx = 3, i = 0; i < FSMAXTYPES && ndx < max; i++) {
576 menu->cursel = ndx;
580 ndx++;
582 menu->cursel = ndx;
586 ndx++;
594 size_t i, ndx, max = menu->numopts;
607 for (ndx = 3, i = 0; i < FSMAXTYPES && ndx < max; i++) {
615 if (ndx == (size_t)menu->cursel) {
620 ndx++;
622 if (ndx == (size_t)menu->cursel) {
627 ndx++;
654 size_t i, ndx, cnt;
661 ndx = 0;
662 ndx].opt_name = msg_string(MSG_fs_type_ffsv2ea);
663 opts[ndx].opt_action = set_fstype_ext;
664 ndx++;
665 opts[ndx].opt_name = msg_string(MSG_fs_type_ffsv2);
666 opts[ndx].opt_action = set_fstype_ext;
667 ndx++;
668 opts[ndx].opt_name = msg_string(MSG_fs_type_ffs);
669 opts[ndx].opt_action = set_fstype_ext;
670 ndx++;
671 for (i = 0; i < FSMAXTYPES && ndx < cnt; i++) {
678 opts[ndx].opt_name = fstypenames[i];
679 opts[ndx].opt_action = set_fstype_ext;
680 ndx++;
682 opts[ndx] = opts[ndx-1];
683 opts[ndx].opt_name = getfslabelname(FS_EFI_SP, 0);
684 ndx++;
687 opts[ndx].opt_name = msg_string(MSG_fs_type_ext2old);
688 opts[ndx].opt_action = set_fstype_ext;
689 ndx++;
690 assert(ndx == cnt);
691 m = new_menu(MSG_Select_the_type, opts, ndx,
732 int ndx;
748 ndx = menu->cursel-2;
750 if (ndx < 0 ||
751 (size_t)ndx >= __arraycount(edit_fs_common_types))
754 edit->info.fs_type = edit_fs_common_types[ndx];
1561 size_t ndx;
1640 clones[clone_cnt].ndx = s;
2079 size_t num_freespace, spaces, ndx;
2125 for (ndx = 0; ndx < spaces; ndx++) {
2128 sprintf(str_tag, "%c: ", minspace+(int)ndx);
2129 sprintf(str_start, "%" PRIu64, freespace[ndx].start / sizemult);
2131 (freespace[ndx].start + freespace[ndx].size) / sizemult);
2132 sprintf(str_size, "%" PRIu64, freespace[ndx].size / sizemult);
2202 ndx = isize[0] - minspace;
2203 i = freespace[ndx].start;