Searched refs:ext_idx (Results 1 – 1 of 1) sorted by relevance
/external/toybox/toys/pending/ |
D | fdisk.c | 812 static sector_t ask_start_sector(int idx, sector_t* begin, sector_t* end, int ext_idx) in ask_start_sector() argument 828 if (!begin[ext_idx] && extended_offset) begin[ext_idx] = extended_offset; in ask_start_sector() 829 start = begin[ext_idx] + offset; in ask_start_sector() 830 limit = end[ext_idx]; in ask_start_sector() 867 static sector_t ask_end_sector(int idx, sector_t* begin, sector_t* end, int ext_idx, sector_t start… in ask_end_sector() argument 880 if (idx >= 4) limit = end[ext_idx]; in ask_end_sector() 916 int i, ext_idx = -1; in add_partition() local 935 if (IS_EXTENDED(p->sys_ind)) ext_idx = i; in add_partition() 937 start = ask_start_sector(idx, begin_sec, end_sec, ext_idx); in add_partition() 938 end = ask_end_sector(idx, begin_sec, end_sec, ext_idx, start); in add_partition() [all …]
|