Searched refs:place (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-9.3-release/lib/libstand/
H A Dgetopt.c57 static char *place = EMSG; /* option letter processing */ local
60 if (optreset || !*place) { /* update scanning pointer */
62 if (optind >= nargc || *(place = nargv[optind]) != '-') {
63 place = EMSG;
66 if (place[1] && *++place == '-') { /* found "--" */
68 place = EMSG;
72 if ((optopt = (int)*place++) == (int)':' ||
80 if (!*place)
88 if (!*place)
[all...]
/freebsd-9.3-release/usr.bin/pr/
H A Degetopt.c77 static char *place = emsg; /* option letter processing */ local
84 *place = savec;
88 if (!*place) {
93 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) {
94 place = emsg;
98 delim = (int)*place;
99 if (place[1] && *++place == '-' && !place[
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dargs.d30 probe place(int i, int j);
H A Dargmap.d30 probe place(int i, int j) : (int j, int i, int i, int j);
H A Dtst.argmap.c35 DTRACE_PROBE2(test_prov, place, 10, 4);
H A Dtst.args.c35 DTRACE_PROBE2(test_prov, place, 10, 4);
H A Dtst.args.d43 test_prov$1:::place
49 test_prov$1:::place
H A Dtst.argmap.d39 test_prov$1:::place
47 test_prov$1:::place
55 test_prov$1:::place
/freebsd-9.3-release/lib/libc/stdlib/
H A Dgetopt.c67 static char *place = EMSG; /* option letter processing */ local
70 if (optreset || *place == 0) { /* update scanning pointer */
72 place = nargv[optind];
73 if (optind >= nargc || *place++ != '-') {
75 place = EMSG;
78 optopt = *place++;
79 if (optopt == '-' && *place == 0) {
82 place = EMSG;
88 place = EMSG;
94 optopt = *place
[all...]
H A Dgetopt_long.c114 static char *place = EMSG; /* option letter processing */ variable
209 current_argv = place;
404 if (optreset || !*place) { /* update scanning pointer */
407 place = EMSG;
424 if (*(place = nargv[optind]) != '-' ||
426 place[1] == '\0') {
428 (place[1] == '\0' && strchr(options, '-') == NULL)) {
430 place = EMSG; /* found non-option */
466 if (place[1] != '\0' && *++place
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dcommandline.c96 static char *place = ENDOPT; local
105 if (isc_commandline_reset || *place == '\0') {
115 *(place = argv[isc_commandline_index]) != '-') {
119 place = ENDOPT;
123 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
129 place = ENDOPT;
134 isc_commandline_option = *place++;
143 if (*place
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dcommandline.c100 static char *place = ENDOPT; local
109 if (isc_commandline_reset || *place == '\0') {
119 *(place = argv[isc_commandline_index]) != '-') {
123 place = ENDOPT;
127 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
133 place = ENDOPT;
138 isc_commandline_option = *place++;
147 if (*place
[all...]
/freebsd-9.3-release/contrib/nvi/clib/
H A Dgetopt.c69 static char *place = EMSG; /* option letter processing */ local
79 if (optreset || !*place) { /* update scanning pointer */
81 if (optind >= nargc || *(place = nargv[optind]) != '-') {
82 place = EMSG;
85 if (place[1] && *++place == '-') { /* found "--" */
87 place = EMSG;
91 if ((optopt = (int)*place++) == (int)':' ||
99 if (!*place)
108 if (!*place)
[all...]
/freebsd-9.3-release/contrib/smbfs/lib/smb/
H A Dcfopt.c59 static const char *place = EMSG; /* option letter processing */ local
63 if (cf_optreset || !*place) { /* update scanning pointer */
68 place = EMSG;
71 if (*(place = nargv[tmpind]) != '-') {
75 if (place[1] && *++place == '-') { /* found "--" */
77 place = EMSG;
84 if ((cf_optopt = (int)*place++) == (int)':' ||
92 if (!*place)
101 if (!*place)
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dgetopt.c60 static char *place = EMSG; /* option letter processing */ local
64 if (optreset || !*place) { /* update scanning pointer */
66 if (optind >= nargc || *(place = nargv[optind]) != '-') {
67 place = EMSG;
70 if (place[1] && *++place == '-') { /* found "--" */
72 place = EMSG;
76 if ((optopt = (int)*place++) == (int)':' ||
84 if (!*place)
98 if (!*place)
[all...]
/freebsd-9.3-release/contrib/bmake/
H A Dgetopt.c70 static char *place = EMSG; /* option letter processing */ local
82 if (optreset || !*place) { /* update scanning pointer */
84 if (optind >= nargc || *(place = nargv[optind]) != '-') {
85 place = EMSG;
88 if (place[1] && *++place == '-' /* found "--" */
89 && !place[1]) { /* and not "--foo" */
91 place = EMSG;
95 if ((optopt = (int)*place++) == (int)':' ||
103 if (!*place)
[all...]
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dgetopt.c60 register const char *place; local
87 for (place = optstring; place != NULL && *place != '\0'; ++place)
88 if (*place == c)
91 if (place == NULL || *place == '\0' || c == ':' || c == '?') {
95 place++;
96 if (*place
[all...]
/freebsd-9.3-release/bin/pax/
H A Dgetoldopt.c31 char *place; local
53 place = strchr(optstring, c);
55 if (place == NULL || c == ':') {
60 place++;
61 if (*place == ':') {
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dgetopt_long.c101 static char *place = EMSG; /* option letter processing */ variable
183 current_argv = place;
328 if (optreset || !*place) { /* update scanning pointer */
331 place = EMSG;
348 if (*(place = nargv[optind]) != '-' ||
349 (place[1] == '\0' && strchr(options, '-') == NULL)) {
350 place = EMSG; /* found non-option */
386 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dia64-opc.c312 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
314 if (main_table[place].opcode_type != type)
318 if (main_table[place].flags
324 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
339 o2 = elf64_ia64_operands + main_table[place].operands[2];
482 int place = ia64_dis_names[disent].insn_index;
486 if (opcode_verify (opcode, place, type)
537 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind)
542 res->type = main_table[place].opcode_type;
543 res->num_outputs = main_table[place]
305 opcode_verify(ia64_insn opcode, int place, enum ia64_insn_type type) argument
474 int place = ia64_dis_names[disent].insn_index; local
528 make_ia64_opcode(ia64_insn opcode, const char *name, int place, int depind) argument
563 int place = ia64_dis_names[disent].insn_index; local
610 ia64_find_matching_opcode(const char *name, short place) argument
688 short place; local
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Dposition.h21 struct place;
27 position(const place &);
H A Dobject.h22 struct place;
61 virtual place *find_label(const char *);
72 struct place { struct
93 int follow(const place &, place *) const;
104 declare_ptable(place)
121 PTABLE(place) *tbl;
175 PTABLE(place) *tbl;
/freebsd-9.3-release/contrib/file/src/
H A Dgetopt_long.c96 static const char *place = EMSG; /* option letter processing */ variable
201 if (optreset || !*place) { /* update scanning pointer */
204 place = EMSG;
221 if ((*(place = nargv[optind]) != '-')
222 || (place[1] == '\0')) { /* found non-option */
223 place = EMSG;
255 if (place[1] && *++place == '-') { /* found "--" */
256 place++;
260 if ((optchar = (int)*place
[all...]
/freebsd-9.3-release/contrib/ee/
H A Dnew_curse.c99 #define String_Out(table, stack, place) Info_Out(table, stack, place)
101 #define String_Out(table, stack, place) Cap_Out(table, stack, place)
1527 Cap_Out(string, p_list, place) /* interpret the output string if necessary */
1530 int place; /* place keeper of top of stack */
1542 p1 = p_list[--place];
1543 p2 = p_list[--place];
1643 Operation(Temp_Stack, place) /* handl
3673 int place; local
[all...]
/freebsd-9.3-release/contrib/texinfo/info/
H A Dinfo.h85 register unsigned char *place; \
87 place = (unsigned char *)mem; \
89 place[zi] = 0; \

Completed in 205 milliseconds

123