Home
last modified time | relevance | path

Searched refs:opt_end (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/cddl/dtracetoolkit/dist/
H A Diosnoop106 opt_mount=0; opt_start=0 opt_end=0; opt_endstr=0; opt_ins=0; opt_nums=0
128 t) opt_end=1 ;;
162 opt_end=0; opt_endstr=0; opt_nums=0; opt_ins=0; opt_dtime=0
190 inline int OPT_end = '$opt_end';
/netbsd-src/external/cddl/dtracetoolkit/dist/Bin/
H A Diosnoop106 opt_mount=0; opt_start=0 opt_end=0; opt_endstr=0; opt_ins=0; opt_nums=0
128 t) opt_end=1 ;;
162 opt_end=0; opt_endstr=0; opt_nums=0; opt_ins=0; opt_dtime=0
190 inline int OPT_end = '$opt_end';
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A Dloongarch-dis.c106 char *opts, *opt, *opt_end; in parse_loongarch_dis_options() local
110 for (opt = opt_end = opts; opt_end != NULL; opt = opt_end + 1) in parse_loongarch_dis_options()
112 if ((opt_end = strchr (opt, ',')) != NULL) in parse_loongarch_dis_options()
113 *opt_end = 0; in parse_loongarch_dis_options()
H A Driscv-dis.c147 char *opts = xstrdup (opts_in), *opt = opts, *opt_end = opts; in parse_riscv_dis_options() local
151 for ( ; opt_end != NULL; opt = opt_end + 1) in parse_riscv_dis_options()
153 if ((opt_end = strchr (opt, ',')) != NULL) in parse_riscv_dis_options()
154 *opt_end = 0; in parse_riscv_dis_options()
H A Dcsky-dis.c272 char *opt_end = opts; in parse_csky_dis_options() local
274 for (; opt_end != NULL; opt = opt_end + 1) in parse_csky_dis_options()
276 if ((opt_end = strchr (opt, ',')) != NULL) in parse_csky_dis_options()
277 *opt_end = 0; in parse_csky_dis_options()
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dbpf-dis.c96 char *opts = xstrdup (opts_in), *opt = opts, *opt_end = opts; in parse_bpf_dis_options() local
98 for ( ; opt_end != NULL; opt = opt_end + 1) in parse_bpf_dis_options()
100 if ((opt_end = strchr (opt, ',')) != NULL) in parse_bpf_dis_options()
101 *opt_end = 0; in parse_bpf_dis_options()
H A Dloongarch-dis.c116 char *opts, *opt, *opt_end; in parse_loongarch_dis_options() local
120 for (opt = opt_end = opts; opt_end != NULL; opt = opt_end + 1) in parse_loongarch_dis_options()
122 if ((opt_end = strchr (opt, ',')) != NULL) in parse_loongarch_dis_options()
123 *opt_end = 0; in parse_loongarch_dis_options()
H A Dcsky-dis.c272 char *opt_end = opts; in parse_csky_dis_options() local
274 for (; opt_end != NULL; opt = opt_end + 1) in parse_csky_dis_options()
276 if ((opt_end = strchr (opt, ',')) != NULL) in parse_csky_dis_options()
277 *opt_end = 0; in parse_csky_dis_options()
H A Driscv-dis.c166 char *opts = xstrdup (opts_in), *opt = opts, *opt_end = opts; in parse_riscv_dis_options() local
170 for ( ; opt_end != NULL; opt = opt_end + 1) in parse_riscv_dis_options()
172 if ((opt_end = strchr (opt, ',')) != NULL) in parse_riscv_dis_options()
173 *opt_end = 0; in parse_riscv_dis_options()
/netbsd-src/external/bsd/file/dist/src/
H A Dgetopt_long.c143 permute_args(panonopt_start, panonopt_end, opt_end, nargv) in permute_args() argument
146 int opt_end;
158 nopts = opt_end - panonopt_end;
160 cyclelen = (opt_end - panonopt_start) / ncycle;
/netbsd-src/external/bsd/libfido2/dist/openbsd-compat/
H A Dgetopt_long.c130 permute_args(int panonopt_start, int panonopt_end, int opt_end, in permute_args() argument
140 nopts = opt_end - panonopt_end; in permute_args()
142 cyclelen = (opt_end - panonopt_start) / ncycle; in permute_args()
/netbsd-src/lib/libc/stdlib/
H A Dgetopt_long.c132 permute_args(int panonopt_start, int panonopt_end, int opt_end, char **nargv) in permute_args() argument
143 nopts = opt_end - panonopt_end; in permute_args()
145 cyclelen = (opt_end - panonopt_start) / ncycle; in permute_args()
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Decofflink.c367 struct shuffle *opt_end; member
486 ainfo->opt_end = NULL; in bfd_ecoff_debug_init()
941 if (!add_file_shuffle (ainfo, &ainfo->opt, &ainfo->opt_end, in bfd_ecoff_debug_accumulate()
992 if (!add_memory_shuffle (ainfo, &ainfo->opt, &ainfo->opt_end, out, in bfd_ecoff_debug_accumulate()
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Decofflink.c367 struct shuffle *opt_end; member
486 ainfo->opt_end = NULL; in bfd_ecoff_debug_init()
941 if (!add_file_shuffle (ainfo, &ainfo->opt, &ainfo->opt_end, in bfd_ecoff_debug_accumulate()
992 if (!add_memory_shuffle (ainfo, &ainfo->opt, &ainfo->opt_end, out, in bfd_ecoff_debug_accumulate()
/netbsd-src/lib/libc/time/
H A Dzic.c950 char *opt_end;
951 redundant = strtoimax(opt + 1, &opt_end, 10);
952 if (opt_end != opt + 1 && !*opt_end) {
957 char *opt_end; redundant_time_option() local