| /openbsd/src/sys/dev/wscons/ |
| D | wsemul_vt100_subr.c | 249 rc = wsemul_vt100_ed(edp, ARG(0)); in wsemul_vt100_handle_csi() 253 rc = wsemul_vt100_el(edp, ARG(0)); in wsemul_vt100_handle_csi() 257 vt100_ansimode(edp, ARG(n), VTMODE_SET); in wsemul_vt100_handle_csi() 261 rc = vt100_decmode(edp, ARG(n), VTMODE_SET); in wsemul_vt100_handle_csi() 268 vt100_ansimode(edp, ARG(n), VTMODE_RESET); in wsemul_vt100_handle_csi() 272 rc = vt100_decmode(edp, ARG(n), VTMODE_RESET); in wsemul_vt100_handle_csi() 278 vt100_ansimode(edp, ARG(0), VTMODE_REPORT); in wsemul_vt100_handle_csi() 281 rc = vt100_decmode(edp, ARG(0), VTMODE_REPORT); in wsemul_vt100_handle_csi() 285 switch (ARG(0)) { in wsemul_vt100_handle_csi() 291 printf("CSI%di ignored\n", ARG(0)); in wsemul_vt100_handle_csi() [all …]
|
| D | wsemul_vt100var.h | 105 #define ARG(n) (edp->args[(n)]) macro 106 #define DEF1_ARG(n) (ARG(n) ? ARG(n) : 1) 107 #define DEFx_ARG(n, x) (ARG(n) ? ARG(n) : (x))
|
| D | wsemul_sun.c | 155 #define ARG(n,c) \ macro 412 n = min(NORMALIZE(ARG(0,1)), COLS_LEFT + 1); in wsemul_sun_control() 427 edp->crow -= min(NORMALIZE(ARG(0,1)), edp->crow); in wsemul_sun_control() 434 edp->crow += min(NORMALIZE(ARG(0,1)), ROWS_LEFT); in wsemul_sun_control() 438 edp->ccol += min(NORMALIZE(ARG(0,1)), COLS_LEFT); in wsemul_sun_control() 442 edp->ccol -= min(NORMALIZE(ARG(0,1)), edp->ccol); in wsemul_sun_control() 447 edp->crow = min(NORMALIZE(ARG(0,2)), edp->nrows) - 1; in wsemul_sun_control() 448 edp->ccol = min(NORMALIZE(ARG(1,2)), edp->ncols) - 1; in wsemul_sun_control() 467 n = min(NORMALIZE(ARG(0,1)), ROWS_LEFT + 1); in wsemul_sun_control() 481 n = min(NORMALIZE(ARG(0,1)), ROWS_LEFT + 1); in wsemul_sun_control() [all …]
|
| /openbsd/src/usr.bin/vi/ex/ |
| D | ex_display.c | 41 #undef ARG in ex_display() 42 #define ARG "buffers" in ex_display() macro 43 if (cmdp->argv[0]->len >= sizeof(ARG) || in ex_display() 44 memcmp(cmdp->argv[0]->bp, ARG, cmdp->argv[0]->len)) in ex_display() 48 #undef ARG in ex_display() 49 #define ARG "screens" in ex_display() macro 50 if (cmdp->argv[0]->len >= sizeof(ARG) || in ex_display() 51 memcmp(cmdp->argv[0]->bp, ARG, cmdp->argv[0]->len)) in ex_display() 55 #undef ARG in ex_display() 56 #define ARG "tags" in ex_display() macro [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/config/m68hc11/ |
| D | larith.asm | 52 # define ARG(N) N+1 macro 75 # define ARG(N) N macro 274 ldx ARG(2),sp 275 ldy ARG(4),sp 292 ldd ARG(4),x 293 ldx ARG(2),x ; SRC = X, DST = Y 327 val = ARG(5) 328 size = ARG(6) 333 val = ARG(3) 334 size = ARG(4) [all …]
|
| /openbsd/src/gnu/gcc/gcc/config/m68hc11/ |
| D | larith.asm | 52 # define ARG(N) N+1 macro 75 # define ARG(N) N macro 274 ldx ARG(2),sp 275 ldy ARG(4),sp 292 ldd ARG(4),x 293 ldx ARG(2),x ; SRC = X, DST = Y 327 val = ARG(5) 328 size = ARG(6) 333 val = ARG(3) 334 size = ARG(4) [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| D | template4.C | 4 template <class ARG> struct TMPL { 5 typedef int ARG::*ARG_data_member_ptr; 6 typedef void (ARG::*ARG_func_member_ptr) ();
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/java/ |
| D | lang.c | 419 #define ARG "-foutput-class-dir=" macro 420 if (strncmp (p, ARG, sizeof (ARG) - 1) == 0) 422 jcf_write_base_directory = p + sizeof (ARG) - 1; 425 #undef ARG 426 #define ARG "-fencoding=" macro 427 if (strncmp (p, ARG, sizeof (ARG) - 1) == 0) 429 current_encoding = p + sizeof (ARG) - 1; 432 #undef ARG 433 #define ARG "-finline-functions" macro 434 if (strncmp (p, ARG, sizeof (ARG) - 1) == 0) [all …]
|
| D | parse.h | 661 #define BUILD_APPEND(ARG) \ argument 662 ((JSTRING_TYPE_P (TREE_TYPE (ARG)) || JPRIMITIVE_TYPE_P (TREE_TYPE (ARG))) \ 664 ARG ? build_tree_list (NULL, (ARG)) : NULL_TREE)\ 666 ARG ? build_tree_list (NULL, \ 669 (ARG))) \ 671 #define BUILD_STRING_BUFFER(ARG) \ argument 673 (ARG ? build_tree_list (NULL, (ARG)) : NULL_TREE))
|
| /openbsd/src/regress/usr.bin/mandoc/man/PP/ |
| D | args.out_ascii | 1 PP-ARG(1) General Commands Manual PP-ARG(1) 15 OpenBSD July 4, 2014 PP-ARG(1)
|
| /openbsd/src/usr.bin/tail/ |
| D | tail.c | 77 #define ARG(units, forward, backward) { \ in main() macro 103 ARG(512, FBYTES, RBYTES); in main() 106 ARG(1, FBYTES, RBYTES); in main() 112 ARG(1, FLINES, RLINES); in main()
|
| /openbsd/src/gnu/gcc/config/ |
| D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/config/ |
| D | enable.m4 | 6 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING) 7 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c) 8 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
|
| /openbsd/src/usr.bin/rpcgen/ |
| D | rpc_svcout.c | 45 static char ARG[] = "argument"; variable 403 fprintf(fout, "\t} %s;\n", ARG); 407 fprintf(fout, "\txdrproc_t xdr_%s, xdr_%s;\n", ARG, RESULT); 413 ARG, RESULT); 436 p_xdrfunc(ARG, proc->args.decls->decl.type); 438 p_xdrfunc(ARG, proc->args.argname); 463 fprintf(fout, "\t(void) memset((char *)&%s, 0, sizeof (%s));\n", ARG, ARG); 464 printif ("getargs", TRANSP, "(caddr_t) &", ARG); 471 RESULT, ROUTINE, ARG, RQSTP); 474 RESULT, ROUTINE, ARG, RQSTP); [all …]
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Pp/ |
| D | arg.out_ascii | 1 PP-ARG(1) General Commands Manual PP-ARG(1)
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Eo/ |
| D | arg.out_utf8 | 1 EO-ARG(1) General Commands Manual EO-ARG(1)
|
| D | arg.out_ascii | 1 EO-ARG(1) General Commands Manual EO-ARG(1)
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Li/ |
| D | arg.out_ascii | 1 LI-ARG(1) General Commands Manual LI-ARG(1)
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Op/ |
| D | arg.out_ascii | 1 OP-ARG(1) General Commands Manual OP-ARG(1)
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Ns/ |
| D | arg.out_ascii | 1 NS-ARG(1) General Commands Manual NS-ARG(1)
|
| /openbsd/src/regress/sbin/pfctl/ |
| D | pfr.exec | 26 for ARG in $ARGSX; do 28 ARGS="$ARG" 30 ARGS="$ARGS $ARG"
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Ud/ |
| D | arg.out_ascii | 1 UD-ARG(1) General Commands Manual UD-ARG(1)
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Fd/ |
| D | arg.out_ascii | 1 FD-ARG(2) System Calls Manual FD-ARG(2)
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | English.pm | 84 *ARG 151 *ARG = *_ ;
|
| D | English.t | 18 is( $ARG, $_, '$ARG' ); 21 is($ARG[0], $_[0], '@ARG' );
|