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

123

/freebsd-10.0-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-10.0-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-10.0-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-10.0-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.c107 static char *place = EMSG; /* option letter processing */ variable
202 current_argv = place;
397 if (optreset || !*place) { /* update scanning pointer */
400 place = EMSG;
417 if (*(place = nargv[optind]) != '-' ||
419 place[1] == '\0') {
421 (place[1] == '\0' && strchr(options, '-') == NULL)) {
423 place = EMSG; /* found non-option */
459 if (place[1] != '\0' && *++place
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/ntp/libntp/
H A Dgetopt.c59 register const char *place; local
86 for (place = optstring; place != NULL && *place != '\0'; ++place)
87 if (*place == c)
90 if (place == NULL || *place == '\0' || c == ':' || c == '?') {
94 place++;
95 if (*place
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/apr/misc/unix/
H A Dgetopt.c51 (*os)->place = EMSG;
76 if (os->reset || !*os->place) { /* update scanning pointer */
78 if (os->ind >= os->argc || *(os->place = os->argv[os->ind]) != '-') {
79 os->place = EMSG;
83 if (os->place[1] && *++os->place == '-') { /* found "--" */
85 os->place = EMSG;
90 if ((os->opt = (int) *os->place++) == (int) ':' ||
100 if (!*os->place)
111 if (!*os->place)
[all...]
/freebsd-10.0-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;
H A Dpic.y42 place *lookup_label(const char *);
43 void define_label(const char *label, const place *pl);
48 implement_ptable(place)
50 PTABLE(place) top_table;
52 PTABLE(place) *current_table = &top_table;
74 place pl;
264 %type <pl> place label element element_list middle_element_list
323 place *p = lookup_label($1);
601 | LABEL ':' optional_separator place
706 current_table = new PTABLE(place);
1211 place: label
[all...]
/freebsd-10.0-release/contrib/file/
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-10.0-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-10.0-release/contrib/texinfo/info/
H A Dinfo.h85 register unsigned char *place; \
87 place = (unsigned char *)mem; \
89 place[zi] = 0; \
/freebsd-10.0-release/contrib/apr/include/
H A Dapr_getopt.h68 char const* place; member in struct:apr_getopt_t

Completed in 529 milliseconds

123