Home
last modified time | relevance | path

Searched refs:SPACE (Results 1 – 25 of 397) sorted by relevance

12345678910>>...16

/netbsd-src/usr.bin/cal/
H A Dcal.c69 #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 Dmakemaze.c40 #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 Dexpl.c126 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 Drfc4518.txt83 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 Drfc4518.txt83 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 Ddirective-undef.mk58 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 Drcsmap.c40 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 Dappendprop1.c21 #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 Dadd_subnode_with_nops.c21 #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 Dappendprop2.c21 #define SPACE 65536 macro
39 buf = xmalloc(SPACE); in main()
40 CHECK(fdt_open_into(fdt, buf, SPACE)); in main()
H A Dsw_tree1.c21 #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 Drw_oom.c22 #define SPACE 285 macro
53 fdt = xmalloc(SPACE); in main()
56 CHECK(fdt_create_empty_tree(fdt, SPACE)); in main()
H A Dsetprop.c21 #define SPACE 65536 macro
35 buf = xmalloc(SPACE); in main()
37 err = fdt_open_into(fdt, buf, SPACE); in main()
H A Drw_tree1.c21 #define SPACE 65536 macro
45 fdt = xmalloc(SPACE); in main()
48 CHECK(fdt_create_empty_tree(fdt, SPACE)); in main()
H A Dsw_states.c21 #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 Dbio_dump.c20 #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 Db_dump.c20 #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 Daicasm_scan.l81 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 Dchardefs.h154 #ifdef SPACE
155 #undef SPACE
157 #define SPACE ' ' /* XXX - was 0x20 */ macro
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dchardefs.h154 #ifdef SPACE
155 #undef SPACE
157 #define SPACE ' ' /* XXX - was 0x20 */ macro
/netbsd-src/external/bsd/nvi/dist/regex/
H A Dcclass.h50 RCHAR_T SPACE[] = {'s','p','a','c','e',0}; variable
78 { SPACE, "\t\n\v\f\r ", "" },
/netbsd-src/usr.bin/sed/
H A Dextern.h52 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 Dbison_nr_parser.y66 %token SPACE " "
75 LINENO COLON SPACE IDENT EQUAL IDENT
H A Dbison_yylloc_parser.y67 %token SPACE " "
76 LINENO COLON SPACE IDENT EQUAL IDENT
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/pa/
H A Dlib2funcs.S27 .SPACE $PRIVATE$
30 .SPACE $TEXT$
37 .SPACE $TEXT$

12345678910>>...16