opt_end
permute_args(int panonopt_start, int panonopt_end, int opt_end,
nopts = opt_end - panonopt_end;
cyclelen = (opt_end - panonopt_start) / ncycle;
permute_args(int panonopt_start, int panonopt_end, int opt_end,
nopts = opt_end - panonopt_end;
cyclelen = (opt_end - panonopt_start) / ncycle;
while ((opt = getopt_long(argc, argv, shortopts, longopts, NULL)) != opt_end)
const char *opt_ptr, *opt_end;
opt_end = strchr(opt_ptr, ',');
if (opt_end == NULL) {
if (opt_end - opt_ptr >= QEMU_FWCFG_MAX_NAME) {
strncpy(fwcfg_file->name, opt_ptr, opt_end - opt_ptr);
fwcfg_file->name[opt_end - opt_ptr] = '\0';
opt_ptr = opt_end + 1;
opt_end = opt_ptr + strlen(opt_ptr);