| /xsrc/external/mit/MesaLib/dist/src/getopt/ |
| getopt.h | 47 struct option { struct 48 /* name of long option */ 52 * whether option takes an argument 55 /* if not NULL, set *flag to val when option found */ 62 const struct option *, int *); 64 const struct option *, int *);
|
| /xsrc/external/mit/MesaLib.old/dist/src/getopt/ |
| getopt.h | 47 struct option { struct 48 /* name of long option */ 52 * whether option takes an argument 55 /* if not NULL, set *flag to val when option found */ 62 const struct option *, int *); 64 const struct option *, int *);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/kdrive/src/ |
| kinfo.c | 137 InputOption *option, *prev = NULL; local 142 for (option = pi->options; option; option = option->next) { 144 free(option->key); 145 free(option->value); 146 prev = option;
|
| /xsrc/external/mit/pixman/dist/test/ |
| check-formats.c | 110 enum { OPTION_OP, OPTION_SRC, OPTION_DEST, LAST_OPTION } option; local 121 for (option = OPTION_OP; option < LAST_OPTION; ++option) 131 switch (option)
|
| /xsrc/external/mit/xf86-input-keyboard/dist/src/ |
| bsd_kbd.c | 165 int option; local 209 option = WSKBD_RAW; 210 if (ioctl(pInfo->fd, WSKBDIO_SETMODE, &option) == -1) { 214 "Option \"Protocol\" \"wskbd\"\n" 215 "Option \"Device\" \"/dev/wskbd0\"\n" 249 int option; local 267 option = WSKBD_TRANSLATED; 268 ioctl(xf86Info.consoleFd, WSKBDIO_SETMODE, &option);
|
| /xsrc/external/mit/xorg-server/dist/hw/xwin/ |
| winprocarg.c | 89 /* Set a default DPI, if no '-dpi' option was used */ 210 /* Check if enough arguments are given for the option */ 213 /* Compare the current option with the string. */ 234 /* Initialize only if option is not -help */ 311 Note that default values can't change after a -screen option is 462 * any -screen option), store it in the default screen 466 * after a -screen option), store it in the screen info 651 char *option = argv[i] + strlen("-resize="); local 653 if (strcmp(option, "randr") == 0) 655 else if (strcmp(option, "scrollbars") == 0 [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/config/ |
| parser.h | 11 (at your option) any later version. 26 the parser skeleton itself, you may (at your option) remove this 85 DMXConfigOptionPtr option; member in union:YYSTYPE
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/ |
| winprocarg.c | 193 /* Check if enough arguments are given for the option */ 196 /* Compare the current option with the string. */ 218 /* Initialize only if option is not -help */ 302 Note that default values can't change after a -screen option is 475 * any -screen option), store it in the default screen 479 * after a -screen option), store it in the screen info 684 char *option = argv[i] + strlen("-resize="); local 685 if (strcmp(option, "randr") == 0) 687 else if (strcmp(option, "scrollbars") == 0) 689 else if (strcmp(option, "none") == 0 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_ddebug/ |
| dd_screen.c | 478 const char *option; local 486 option = debug_get_option("GALLIUM_DDEBUG", NULL); 487 if (!option) 490 if (!strcmp(option, "help")) { 529 skip_space(&option); 530 if (!*option) 533 if (match_word(&option, "always")) { 540 } else if (match_word(&option, "flush")) { 542 } else if (match_word(&option, "transfers")) { 544 } else if (match_word(&option, "verbose")) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| debug.c | 144 struct option { struct 148 static const struct option opts[] = { 184 struct option { struct 188 static const struct option opts[] = {
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_ddebug/ |
| dd_screen.c | 450 const char *option; local 458 option = debug_get_option("GALLIUM_DDEBUG", NULL); 459 if (!option) 462 if (!strcmp(option, "help")) { 501 skip_space(&option); 502 if (!*option) 505 if (match_word(&option, "always")) { 512 } else if (match_word(&option, "flush")) { 514 } else if (match_word(&option, "transfers")) { 516 } else if (match_word(&option, "verbose")) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| debug.c | 144 struct option { struct 148 static const struct option opts[] = { 185 struct option { struct 189 static const struct option opts[] = {
|
| /xsrc/external/mit/libX11/dist/include/X11/ |
| Xresource.h | 322 * Command line option mapping to resource entries 328 XrmoptionIsArg, /* Value is the option string itself */ 329 XrmoptionStickyArg, /* Value is characters immediately following option */ 332 XrmoptionSkipArg, /* Ignore this option and the next argument in argv */ 333 XrmoptionSkipLine, /* Ignore this option and the rest of argv */ 334 XrmoptionSkipNArgs /* Ignore this option and the next 339 char *option; /* Option abbreviation in argv */ member in struct:__anon5642 341 XrmOptionKind argKind; /* Which style of option it is */
|
| /xsrc/external/mit/libxkbfile/dist/include/X11/extensions/ |
| XKBrules.h | 61 char * option; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/xinput/dist/src/ |
| property.c | 814 char *option = strchr(argv[i], '='); local 815 /* skip non-option arguments */ 816 if (strncmp(argv[i], "--", 2) || !option) { 822 if (!strcmp(option + 1, "int")) { 824 } else if (!strcmp(option + 1, "float")) { 827 } else if (!strcmp(option + 1, "atom")) { 831 fprintf(stderr, "unknown property type %s\n", option + 1); 835 format = atoi(option + 1); 837 fprintf(stderr, "invalid property format '%s'\n", option + 1); 841 fprintf(stderr, "invalid option '%s'\n", argv[i]) [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/parser/ |
| Flags.c | 75 {OPTION, "option"}, 153 case OPTION: 302 * this function searches the given option list for the named option and 303 * returns a pointer to the option rec if found. If not found, it returns 319 * this function searches the given option list for the named option. If 320 * found and the option has a parameter, a pointer to the parameter is 321 * returned. If the option does not have a parameter an empty string i 427 XF86OptionPtr option, cnew, old; local [all...] |
| /xsrc/external/mit/xorg-server/dist/include/ |
| xkbrules.h | 54 const char *option; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/parser/ |
| Flags.c | 80 {OPTION, "option"}, 157 case OPTION: 308 * this function searches the given option list for the named option and 309 * returns a pointer to the option rec if found. If not found, it returns 326 * this function searches the given option list for the named option. If 327 * found and the option has a parameter, a pointer to the parameter is 328 * returned. If the option does not have a parameter an empty string i 437 XF86OptionPtr option, cnew, old; local [all...] |
| /xsrc/external/mit/xorg-server.old/dist/include/ |
| xkbrules.h | 54 char * option; member in struct:_XkbRF_Rule
|
| /xsrc/external/mit/xstdcmap/dist/ |
| xstdcmap.c | 122 char option[512]; local 133 snprintf(option, sizeof(option), "%s%s", program_name, ".all"); 134 if (XrmGetResource(database, option, (char *) NULL, &type, &value)) 137 snprintf(option, sizeof(option), "%s%s", program_name, ".best"); 138 if (XrmGetResource(database, option, (char *) NULL, &type, &value)) 141 snprintf(option, sizeof(option), "%s%s", program_name, ".blue"); 142 if (XrmGetResource(database, option, (char *) NULL, &type, &value) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_misc.cpp | 125 char *option; local 128 for (n = 0, option = strtok(env_llc_options, " "); option; n++, option = strtok(NULL, " ")) { 129 options[n + 1] = option; 478 debug_printf("llc -mattr option(s): "); 540 debug_printf("llc -mcpu option: %s\n", MCPU.str().c_str());
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/program/ |
| program_parser.h | 218 } option; member in struct:asm_parser_state 262 * Parses and processes an option string to an ARB vertex program 268 const char *option); 271 * Parses and processes an option string to an ARB fragment program 277 const char *option);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_misc.cpp | 132 char *option; local 135 for (n = 0, option = strtok(env_llc_options, " "); option; n++, option = strtok(NULL, " ")) { 136 options[n + 1] = option; 674 debug_printf("llc -mattr option(s): "); 710 debug_printf("llc -mcpu option: %s\n", MCPU.str().c_str());
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| program_parser.h | 217 } option; member in struct:asm_parser_state 261 * Parses and processes an option string to an ARB vertex program 267 const char *option); 270 * Parses and processes an option string to an ARB fragment program 276 const char *option);
|
| /xsrc/external/mit/x11perf/dist/ |
| x11perf.h | 123 const char *option; /* Name to use in prompt line */ member in struct:_Test 146 #define ForEachTest(x) for (x = 0; test[x].option != NULL; x++)
|