HomeSort by: relevance | last modified time | path
    Searched defs:place (Results 1 - 25 of 78) sorted by relevancy

1 2 3 4

  /src/bin/pax/
getoldopt.c 42 const char *place; local
72 place = strchr(optstring, c);
74 if (place == NULL || c == ':') {
79 place++;
80 if (*place == ':') {
  /src/common/lib/libc/stdlib/
getopt.c 79 static const char *place = EMSG; /* option letter processing */ local
85 if (optreset || *place == 0) { /* update scanning pointer */
87 place = nargv[optind];
88 if (optind >= nargc || *place++ != '-') {
90 place = EMSG;
93 optopt = *place++;
94 if (optopt == '-' && *place == 0) {
97 place = EMSG;
103 place = EMSG;
109 optopt = *place++
    [all...]
  /src/games/backgammon/common_source/
odds.c 85 int a, diff, place, addon, menstuck; local
96 place = abs(25 - b - i);
101 addon = place + ((board[j] * a > 2 || j == b) ? 5 : 0);
  /src/games/tetris/
shapes.c 97 place(const struct shape *shape, int pos, int onoff) function
  /src/usr.bin/pr/
egetopt.c 75 static char *place = EMSG; /* option letter processing */ local
82 *place = savec;
86 if (!*place) {
91 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) {
92 place = EMSG;
96 delim = (int)*place;
97 if (place[1] && *++place == '-' && !place[1])
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getopt.c 62 static char *place = EMSG; /* option letter processing */ local
66 if (optreset || !*place) { /* update scanning pointer */
68 if (optind >= nargc || *(place = nargv[optind]) != '-') {
69 place = EMSG;
72 if (place[1] && *++place == '-') { /* found "--" */
74 place = EMSG;
78 if ((optopt = (int)*place++) == (int)':' ||
86 if (!*place)
100 if (!*place)
    [all...]
  /src/external/bsd/libevent/dist/WIN32-Code/
getopt.c 90 static char *place = EMSG; /* option letter processing */ local
97 if (optreset || !*place) { /* update scanning pointer */
99 if (optind >= nargc || *(place = nargv[optind]) != '-') {
100 place = EMSG;
103 if (place[1] && *++place == '-' /* found "--" */
104 && place[1] == '\0') {
106 place = EMSG;
110 if ((optopt = (int)*place++) == (int)':' ||
118 if (!*place)
    [all...]
getopt_long.c 80 static char *place = EMSG; /* option letter processing */ local
86 if (optreset || !*place) { /* update scanning pointer */
88 if (optind >= nargc || *(place = nargv[optind]) != '-') {
89 place = EMSG;
92 if (place[1] && *++place == '-') { /* found "--" */
94 place = EMSG;
98 if ((optopt = (int)*place++) == (int)':' ||
106 if (!*place)
115 if (!*place)
    [all...]
  /src/external/bsd/libpcap/dist/missing/
getopt.c 63 static char *place = EMSG; /* option letter processing */ local
72 if (optreset || !*place) { /* update scanning pointer */
74 if (optind >= nargc || *(place = nargv[optind]) != '-') {
75 place = EMSG;
78 if (place[1] && *++place == '-') { /* found "--" */
80 place = EMSG;
84 optopt = (int)*place++;
86 if (!*place)
101 if (!*place)
    [all...]
  /src/external/bsd/ntp/dist/libntp/
getopt.c 62 register const char *place; local
89 for (place = optstring; place != NULL && *place != '\0'; ++place)
90 if (*place == c)
93 if (place == NULL || *place == '\0' || c == ':' || c == '?') {
97 place++;
98 if (*place == ':')
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/WIN32-Code/
getopt.c 91 static char *place = EMSG; /* option letter processing */ local
98 if (optreset || !*place) { /* update scanning pointer */
100 if (optind >= nargc || *(place = nargv[optind]) != '-') {
101 place = EMSG;
104 if (place[1] && *++place == '-' /* found "--" */
105 && place[1] == '\0') {
107 place = EMSG;
111 if ((optopt = (int)*place++) == (int)':' ||
119 if (!*place)
    [all...]
getopt_long.c 81 static char *place = EMSG; /* option letter processing */ local
87 if (optreset || !*place) { /* update scanning pointer */
89 if (optind >= nargc || *(place = nargv[optind]) != '-') {
90 place = EMSG;
93 if (place[1] && *++place == '-') { /* found "--" */
95 place = EMSG;
99 if ((optopt = (int)*place++) == (int)':' ||
107 if (!*place)
116 if (!*place)
    [all...]
  /src/external/bsd/tradcpp/dist/
place.h 41 struct place { struct
51 void place_setnowhere(struct place *p);
52 void place_setbuiltin(struct place *p, unsigned num);
53 void place_setcommandline(struct place *p, unsigned word, unsigned column);
54 void place_setfilestart(struct place *p, const struct placefile *pf);
56 void place_addcolumns(struct place *, unsigned cols);
57 void place_addlines(struct place *, unsigned lines);
59 const char *place_getname(const struct place *);
60 const char *place_getparsedir(const struct place *incplace);
61 bool place_eq(const struct place *, const struct place *)
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
commandline.c 85 static char *place = ENDOPT; local
94 if (isc_commandline_reset || *place == '\0') {
105 *(place = argv[isc_commandline_index]) != '-')
110 place = ENDOPT;
114 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
120 place = ENDOPT;
125 isc_commandline_option = *place++;
134 if (*place == '\0')
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
commandline.c 86 static char *place = ENDOPT; local
95 if (isc_commandline_reset || *place == '\0') {
106 *(place = argv[isc_commandline_index]) != '-')
111 place = ENDOPT;
115 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
121 place = ENDOPT;
126 isc_commandline_option = *place++;
135 if (*place == '\0')
    [all...]
  /src/external/gpl2/dtc/dist/tests/
sw_tree1.c 103 void *place; local
190 CHECK(fdt_property_placeholder(fdt, "placeholder", place_len, &place));
191 memcpy(place, place_str, place_len);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
gen-win32.h 95 static char *place = ENDOPT; local
102 if (isc_commandline_reset || *place == '\0') {
110 *(place = argv[isc_commandline_index]) != '-')
115 place = ENDOPT;
119 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
125 place = ENDOPT;
130 isc_commandline_option = *place++;
139 if (*place == '\0')
    [all...]
  /src/external/gpl2/groff/dist/src/preproc/pic/
pic.y 44 place *lookup_label(const char *);
45 void define_label(const char *label, const place *pl);
50 implement_ptable(place)
52 PTABLE(place) top_table;
54 PTABLE(place) *current_table = &top_table;
76 place pl;
266 %type <pl> place label element element_list middle_element_list
325 place *p = lookup_label($1);
603 | LABEL ':' optional_separator place
708 current_table = new PTABLE(place);
1213 place: label
    [all...]
  /src/lib/libc/stdlib/
getopt_long.c 93 static const char *place = EMSG; /* option letter processing */ variable
189 if (optreset || !*place) { /* update scanning pointer */
192 place = EMSG;
209 if ((*(place = nargv[optind]) != '-')
210 || (place[1] == '\0')) { /* found non-option */
211 place = EMSG;
243 if (place[1] && *++place == '-') { /* found "--" */
244 place++;
248 if ((optchar = (int)*place++) == (int)':' |
    [all...]
  /src/external/bsd/file/dist/src/
getopt_long.c 102 static const char *place = EMSG; /* option letter processing */ variable
207 if (optreset || !*place) { /* update scanning pointer */
210 place = EMSG;
227 if ((*(place = nargv[optind]) != '-')
228 || (place[1] == '\0')) { /* found non-option */
229 place = EMSG;
261 if (place[1] && *++place == '-') { /* found "--" */
262 place++;
266 if ((optchar = (int)*place++) == (int)':' |
    [all...]
  /src/external/bsd/libfido2/dist/openbsd-compat/
getopt_long.c 92 static char *place = EMSG; /* option letter processing */ variable
174 current_argv = place;
319 if (optreset || !*place) { /* update scanning pointer */
322 place = EMSG;
339 if (*(place = nargv[optind]) != '-' ||
340 (place[1] == '\0' && strchr(options, '-') == NULL)) {
341 place = EMSG; /* found non-option */
377 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /src/external/bsd/tcpdump/dist/missing/
getopt_long.c 94 static const char *place = EMSG; /* option letter processing */ variable
219 current_argv = place;
414 if (!*place) { /* update scanning pointer */
416 place = EMSG;
432 if (*(place = nargv[optind]) != '-' ||
434 place[1] == '\0') {
436 (place[1] == '\0' && strchr(options, '-') == NULL)) {
438 place = EMSG; /* found non-option */
474 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
ia64-opc.c 308 PLACE matches OPCODE and is of type TYPE. */
311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
313 if (main_table[place].opcode_type != type)
317 if (main_table[place].flags
323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
338 o2 = elf64_ia64_operands + main_table[place].operands[2];
484 int place = ia64_dis_names[disent].insn_index;
488 if (opcode_verify (opcode, place, type)
536 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */
539 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind
476 int place = ia64_dis_names[disent].insn_index; local
565 int place = ia64_dis_names[disent].insn_index; local
693 short place; local
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
ia64-opc.c 308 PLACE matches OPCODE and is of type TYPE. */
311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
313 if (main_table[place].opcode_type != type)
317 if (main_table[place].flags
323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
338 o2 = elf64_ia64_operands + main_table[place].operands[2];
484 int place = ia64_dis_names[disent].insn_index;
488 if (opcode_verify (opcode, place, type)
536 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */
539 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind
476 int place = ia64_dis_names[disent].insn_index; local
565 int place = ia64_dis_names[disent].insn_index; local
693 short place; local
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
ia64-opc.c 308 PLACE matches OPCODE and is of type TYPE. */
311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
313 if (main_table[place].opcode_type != type)
317 if (main_table[place].flags
323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
338 o2 = elf64_ia64_operands + main_table[place].operands[2];
484 int place = ia64_dis_names[disent].insn_index;
488 if (opcode_verify (opcode, place, type)
536 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */
539 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind
476 int place = ia64_dis_names[disent].insn_index; local
565 int place = ia64_dis_names[disent].insn_index; local
693 short place; local
    [all...]

Completed in 50 milliseconds

1 2 3 4