| /netbsd-src/usr.bin/cal/ |
| H A D | cal.c | 69 #define SPACE -1 /* used in day array */ macro 77 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 78 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 79 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 80 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 81 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 82 SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, SPACE, 520 days[dw++] = SPACE - day++; in day_array() 575 if (day == SPACE) { in ascii_day() 579 if (day < SPACE) { in ascii_day() [all …]
|
| /netbsd-src/games/hunt/huntd/ |
| H A D | makemaze.c | 40 #define ISCLEAR(y,x) (Maze[y][x] == SPACE) 104 Maze[y][x] = SPACE; /* Clear this spot */ 129 Maze[y][x] = SPACE; in dig_maze() 157 if (Maze[ty][tx] == SPACE) in dig_maze() 159 Maze[(y + ty) / 2][(x + tx) / 2] = SPACE; in dig_maze() 174 if (*sp == SPACE) in remap() 177 if (y - 1 >= 0 && Maze[y - 1][x] != SPACE) in remap() 179 if (y + 1 < HEIGHT && Maze[y + 1][x] != SPACE) in remap() 181 if (x + 1 < WIDTH && Maze[y][x + 1] != SPACE) in remap() 183 if (x - 1 >= 0 && Maze[y][x - 1] != SPACE) in remap()
|
| H A D | expl.c | 126 c = SPACE; in rollexpl() 171 case SPACE: in remove_wall() 181 if (Maze[r->r_y][r->r_x] == SPACE) in remove_wall() 192 if (save_char == SPACE) in remove_wall() 232 Maze[y][x] = SPACE; in remove_wall()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/wind/ |
| H A D | rfc4518.txt | 83 view space as referring to only SPACE (U+0020), a second 245 (U+000D), and NEXT LINE (NEL) (U+0085) are mapped to SPACE (U+0020). 253 ZERO WIDTH SPACE (U+200B) is mapped to nothing. All other code 255 Zl, or Zp) are mapped to SPACE (U+0020). The following is a complete 317 For the purposes of this section, a space is defined to be the SPACE 321 any code points in the separator class, other than SPACE 329 character, ends with exactly one SPACE character, and any inner 331 SPACE characters. For instance, the input strings 332 "foo<SPACE>bar<SPACE><SPACE>", result in the output 333 "<SPACE>foo<SPACE><SPACE>bar<SPACE>". [all …]
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc4518.txt | 83 view space as referring to only SPACE (U+0020), a second 245 (U+000D), and NEXT LINE (NEL) (U+0085) are mapped to SPACE (U+0020). 253 ZERO WIDTH SPACE (U+200B) is mapped to nothing. All other code 255 Zl, or Zp) are mapped to SPACE (U+0020). The following is a complete 317 For the purposes of this section, a space is defined to be the SPACE 321 any code points in the separator class, other than SPACE 329 character, ends with exactly one SPACE character, and any inner 331 SPACE characters. For instance, the input strings 332 "foo<SPACE>bar<SPACE><SPACE>", result in the output 333 "<SPACE>foo<SPACE><SPACE>bar<SPACE>". [all …]
|
| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | directive-undef.mk | 58 SPACE= ${:U } 59 ${SPACE}= space 60 .if !defined(${SPACE}) 63 .undef ${SPACE} 64 .if !defined(${SPACE})
|
| /netbsd-src/external/gpl2/rcs/dist/src/ |
| H A D | rcsmap.c | 40 SPACE, SPACE, NEWLN, SPACE, SPACE, SPACE, UNKN, UNKN, enumerator 43 SPACE, IDCHAR, IDCHAR, IDCHAR, DELIM, IDCHAR, IDCHAR, IDCHAR, enumerator
|
| /netbsd-src/external/gpl2/dtc/dist/tests/ |
| H A D | appendprop1.c | 21 #define SPACE 65536 macro 39 fdt = xmalloc(SPACE); in main() 40 CHECK(fdt_create(fdt, SPACE)); in main() 47 CHECK(fdt_open_into(fdt, fdt, SPACE)); in main()
|
| H A D | add_subnode_with_nops.c | 21 #define SPACE 65536 macro 45 fdt = xmalloc(SPACE); in main() 47 CHECK(fdt_create(fdt, SPACE)); in main() 59 CHECK(fdt_open_into(fdt, fdt, SPACE)); in main()
|
| H A D | appendprop2.c | 21 #define SPACE 65536 macro 39 buf = xmalloc(SPACE); in main() 40 CHECK(fdt_open_into(fdt, buf, SPACE)); in main()
|
| H A D | sw_tree1.c | 21 #define SPACE 65536 macro 44 *fdt = xmalloc(SPACE); in realloc_fdt() 45 } else if (*size < SPACE) { in realloc_fdt() 111 size = SPACE; in main() 117 size = SPACE; in main()
|
| H A D | rw_oom.c | 22 #define SPACE 285 macro 53 fdt = xmalloc(SPACE); in main() 56 CHECK(fdt_create_empty_tree(fdt, SPACE)); in main()
|
| H A D | setprop.c | 21 #define SPACE 65536 macro 35 buf = xmalloc(SPACE); in main() 37 err = fdt_open_into(fdt, buf, SPACE); in main()
|
| H A D | rw_tree1.c | 21 #define SPACE 65536 macro 45 fdt = xmalloc(SPACE); in main() 48 CHECK(fdt_create_empty_tree(fdt, SPACE)); in main()
|
| H A D | sw_states.c | 21 #define SPACE 65536 macro 48 fdt = xmalloc(SPACE); in main() 50 err = fdt_create(fdt, SPACE); in main()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/bio/ |
| H A D | bio_dump.c | 20 #define SPACE(buf, pos, n) (sizeof(buf) - (pos) > (n)) macro 51 if (SPACE(buf, n, 3)) { in BIO_dump_indent_cb() 62 if (SPACE(buf, n, 2)) { in BIO_dump_indent_cb() 69 if (SPACE(buf, n, 1)) { in BIO_dump_indent_cb() 81 if (SPACE(buf, n, 1)) { in BIO_dump_indent_cb()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bio/ |
| H A D | b_dump.c | 20 #define SPACE(buf, pos, n) (sizeof(buf) - (pos) > (n)) macro 50 if (SPACE(buf, n, 3)) { in BIO_dump_indent_cb() 61 if (SPACE(buf, n, 2)) { in BIO_dump_indent_cb() 68 if (SPACE(buf, n, 1)) { in BIO_dump_indent_cb() 80 if (SPACE(buf, n, 1)) { in BIO_dump_indent_cb()
|
| /netbsd-src/sys/dev/microcode/aic7xxx/ |
| H A D | aicasm_scan.l | 81 SPACE [ \t]+ 253 #include{SPACE} { 278 #define{SPACE} { 282 <MACRODEF>{WORD}{SPACE} { 312 <MACROARGLIST>{SPACE} ; 327 <MACROCALLARGS>{SPACE} ;
|
| /netbsd-src/external/gpl3/gdb.old/dist/readline/readline/ |
| H A D | chardefs.h | 154 #ifdef SPACE 155 #undef SPACE 157 #define SPACE ' ' /* XXX - was 0x20 */ macro
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
| H A D | chardefs.h | 154 #ifdef SPACE 155 #undef SPACE 157 #define SPACE ' ' /* XXX - was 0x20 */ macro
|
| /netbsd-src/external/bsd/nvi/dist/regex/ |
| H A D | cclass.h | 50 RCHAR_T SPACE[] = {'s','p','a','c','e',0}; variable 78 { SPACE, "\t\n\v\f\r ", "" },
|
| /netbsd-src/usr.bin/sed/ |
| H A D | extern.h | 52 void cspace(SPACE *, const char *, size_t, enum e_spflag); 54 int mf_fgets(SPACE *, enum e_spflag);
|
| /netbsd-src/external/bsd/flex/dist/tests/ |
| H A D | bison_nr_parser.y | 66 %token SPACE " " 75 LINENO COLON SPACE IDENT EQUAL IDENT
|
| H A D | bison_yylloc_parser.y | 67 %token SPACE " " 76 LINENO COLON SPACE IDENT EQUAL IDENT
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/pa/ |
| H A D | lib2funcs.S | 27 .SPACE $PRIVATE$ 30 .SPACE $TEXT$ 37 .SPACE $TEXT$
|