| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| i915_params.c | 221 #define PRINT(T, x, ...) _print_param(p, #x, #T, ¶ms->x); 222 I915_PARAMS_FOR_EACH(PRINT); 223 #undef PRINT
|
| /src/sys/arch/luna68k/luna68k/ |
| locore.s | 57 #define PRINT(msg) \ 64 #undef PRINT
|
| /src/external/bsd/nvi/dist/regex/ |
| cclass.h | 48 RCHAR_T PRINT[] = {'p','r','i','n','t',0}; 73 { PRINT, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
|
| /src/sys/dev/mii/ |
| tlphy.c | 167 #define PRINT(str) \ 181 PRINT("10base2"); 185 PRINT("10base5"); 187 PRINT("no media present"); 203 #undef PRINT
|
| mii_physubr.c | 499 * attached. We expect to be set up to print a comma-separated list 500 * of media names. Does not print a newline. 526 #define PRINT(n) aprint_normal("%s%s", sep, (n)); sep = ", " 544 PRINT("HomePNA1"); 552 PRINT("10baseT"); 557 PRINT("10baseT-FDX"); 563 PRINT("100baseTX"); 568 PRINT("100baseTX-FDX"); 574 PRINT("100baseT4"); 593 PRINT("1000baseSX") [all...] |
| /src/tests/include/ |
| t_inttypes.c | 69 #define PRINT(fmt, var) \ 74 PRINT(PRId8, i8); 75 PRINT(PRId16, i16); 76 PRINT(PRId32, i32); 77 PRINT(PRId64, i64); 78 PRINT(PRIdLEAST8, il8); 79 PRINT(PRIdLEAST16, il16); 80 PRINT(PRIdLEAST32, il32); 81 PRINT(PRIdLEAST64, il64); 82 PRINT(PRIdFAST8, if8) [all...] |
| /src/external/bsd/openldap/dist/libraries/liblmdb/ |
| mdb_dump.c | 31 #define PRINT 1 118 printf("format=%s\n", mode & PRINT ? "print" : "bytevalue"); 145 if (mode & PRINT) { 186 * -V: print version and exit 214 mode |= PRINT;
|
| mdb_load.c | 24 #define PRINT 1 87 if (!strncmp((char *)dbuf.mv_data+STRLENOF("FORMAT="), "print", STRLENOF("print"))) 88 mode |= PRINT; 240 if (mode & PRINT) { 317 * -V: print version and exit 345 mode |= NOHDR | PRINT;
|
| /src/external/bsd/tcpdump/dist/ |
| print-krb.c | 26 __RCSID("$NetBSD: print-krb.c,v 1.9 2024/09/02 16:15:31 christos Exp $"); 143 #define PRINT if ((cp = c_print(ndo, cp, ndo->ndo_snapend)) == NULL) goto trunc 145 PRINT; 147 PRINT; 149 PRINT; 156 #undef PRINT 167 #define PRINT if ((cp = c_print(ndo, cp, ndo->ndo_snapend)) == NULL) goto trunc 187 PRINT; 189 PRINT; 196 PRINT; [all...] |
| /src/lib/libc/stdlib/ |
| strfmon.c | 57 #define NEED_GROUPING 0x01 /* print digits grouped (default) */ 67 #define PRINT(CH) do { \ 76 PRINT(*tmps++); \ 156 PRINT(*fmt++); 167 value = 0; /* we have no value to print now */ 325 PRINT(' '); 328 PRINT('('); 334 PRINT(' '); 342 PRINT(space_char); 345 PRINT(' '); [all...] |
| /src/usr.bin/ul/ |
| ul.c | 95 #define PRINT(s) if (s == NULL) /* void */; else tputs(s, 1, outchar) 285 PRINT(cursor_right); 406 PRINT(cursor_up); 407 PRINT(cursor_up); 425 PRINT(cursor_left); 428 PRINT(underline_char); 445 PRINT(exit_underline_mode); 447 PRINT(exit_standout_mode); 452 PRINT(exit_attribute_mode); 454 PRINT(exit_standout_mode) [all...] |
| /src/external/gpl3/gcc/dist/libquadmath/printf/ |
| printf_fphex.c | 0 /* Print floating point number in hexadecimal notation according to ISO C99. 46 #define PRINT(ptr, wptr, len) \ 224 PRINT (special, wspecial, 3); 433 is not given. In this case we must not print the decimal point. */ 461 PRINT (decimal, wtmp, wide ? 1 : strlen (decimal)); 467 PRINT (numstr, wnumstr, MIN (numend - numstr, precision)); 479 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr);
|
| printf_fp.c | 63 #define PRINT(ptr, wptr, len) \ 428 PRINT (special, wspecial, 3); 1042 /* Now we must print the exponent. */ 1222 PRINT (tmpptr, wstartp, wide ? wcp - wstartp : cp - tmpptr);
|
| /src/external/gpl3/gcc.old/dist/libquadmath/printf/ |
| printf_fphex.c | 0 /* Print floating point number in hexadecimal notation according to ISO C99. 46 #define PRINT(ptr, wptr, len) \ 224 PRINT (special, wspecial, 3); 433 is not given. In this case we must not print the decimal point. */ 461 PRINT (decimal, wtmp, wide ? 1 : strlen (decimal)); 467 PRINT (numstr, wnumstr, MIN (numend - numstr, precision)); 479 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr);
|
| printf_fp.c | 63 #define PRINT(ptr, wptr, len) \ 428 PRINT (special, wspecial, 3); 1042 /* Now we must print the exponent. */ 1222 PRINT (tmpptr, wstartp, wide ? wcp - wstartp : cp - tmpptr);
|
| /src/sys/arch/aarch64/aarch64/ |
| locore.S | 50 /*#define DEBUG_LOCORE // debug print */ 66 #define VPRINT(string) PRINT(string) 73 #define DPRINT(string) PRINT(string) 74 #define DPRINTREG(str, reg) mov x19,reg; PRINT(str); mov x0,x19; bl print_x0 75 #define DPRINTSREG(str, reg) mrs x19,reg; PRINT(str); mov x0,x19; bl print_x0 82 #define PRINT(string) bl xprint; .asciz string; .align 2 96 PRINT("boot NetBSD/aarch64\n") 155 PRINT("fatal error occurred while booting\n") 229 PRINT("initarm\n") 232 PRINT("main\n" [all...] |
| /src/sys/dev/ic/ |
| elink3.c | 416 * Print RAM size. We also print the Ethernet address in here. 590 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", " 604 PRINT(epm->epm_name); 608 #undef PRINT 656 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", " 678 PRINT(epm->epm_name); 682 #undef PRINT
|
| elinkxl.c | 549 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", " 571 PRINT(exm->exm_name); 575 #undef PRINT
|
| /src/sys/dev/pci/ |
| if_tlp_pci.c | 1412 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", " 1415 PRINT("10baseT"); 1419 PRINT("10baseT-FDX"); 1423 PRINT("100baseTX"); 1427 PRINT("100baseTX-FDX"); 1430 #undef PRINT 1627 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", " 1632 PRINT("100baseFX"); 1636 PRINT("100baseFX-FDX"); 1643 PRINT("100baseTX") [all...] |
| /src/external/gpl3/binutils/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |
| /src/external/gpl3/gcc/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |
| /src/external/gpl3/gdb/dist/libiberty/ |
| rust-demangle.c | 282 #define PRINT(s) print_str (rdm, s, strlen (s)) 289 PRINT (s); 297 PRINT (s); 413 /* Unexpected escape sequence, print the rest verbatim. */ 423 PRINT ("::"); 428 PRINT ("."); 434 /* Print everything before the next escape sequence, at once. */ 597 /* Print the lifetime according to the previously decoded index. 606 PRINT ("'"); 609 PRINT ("_") [all...] |