Searched refs:space (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/boot/ficl/softwords/
H A Dsoftcore.awk11 # POSIX [[:space:]] character class.
78 gsub(/\\[[:space:]]+$/, ""); # toss empty comments
88 /^\\[[:space:]]\*\*/ \
90 sub(/^\\[[:space:]]/, "");
98 /^[[:space:]]*$/ \
111 /^\\[[:space:]]#/ \
114 sub(/^\\[[:space:]]/, "");
127 /\\[[:space:]]+/ \
129 sub(/\\[[:space:]]+.*$/, "");
133 /[[:space
[all...]
/freebsd-10.0-release/sys/conf/
H A DmakeLINT.sed4 /^(machine|files|ident|(no)?device|(no)?makeoption(s)?|(no)?option(s)?|profile|cpu|maxusers)[[:space:]]/ {
5 s/[[:space:]]*#.*$//
H A Dkmod_syms.awk6 if (match($0, /^[^[:space:]]+ [^AU] (.*)$/)) {
/freebsd-10.0-release/usr.bin/fold/
H A Dfold.c147 * If sflag is set, split the line at the last space character on the line.
159 int col, i, indx, space; local
174 space = i;
176 if (sflag && space != -1) {
177 space++;
178 wprintf(L"%.*ls\n", space, buf);
179 wmemmove(buf, buf + space, indx - space);
180 indx -= space;
/freebsd-10.0-release/lib/libufs/
H A Dsblock.c57 uint8_t *space; local
99 space = malloc(size);
100 if (space == NULL) {
101 ERROR(disk, "failed to allocate space for summary information");
104 fs->fs_csp = (struct csum *)space;
115 bcopy(block, space, size);
116 space += size;
118 fs->fs_maxcluster = (uint32_t *)space;
129 uint8_t *space; local
148 space
[all...]
/freebsd-10.0-release/contrib/libstdc++/config/os/generic/
H A Dctype_base.h52 static const mask space = 1 << 5; member in struct:ctype_base
/freebsd-10.0-release/contrib/libstdc++/config/os/solaris/solaris2.5/
H A Dctype_base.h52 static const mask space = 010; member in struct:ctype_base
/freebsd-10.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXutil.cpp36 static int encode_leb128(uint64_t val, int *nbytes, char *space, int splen) { argument
38 char *end = space + splen;
40 a = space;
53 *nbytes = a - space;
/freebsd-10.0-release/crypto/heimdal/lib/asn1/
H A Dgen.c504 space(int level) function
549 space (level + 1);
553 space(level);
567 space(level);
573 space(level + 1);
577 space(level);
601 space(level + 1);
615 space(level);
652 space(level);
656 space(leve
[all...]
/freebsd-10.0-release/contrib/libstdc++/config/os/bsd/darwin/
H A Dctype_base.h54 static const mask space = _CTYPE_S; member in struct:ctype_base
67 static const mask space = _S; member in struct:ctype_base
/freebsd-10.0-release/contrib/libstdc++/config/os/bsd/freebsd/
H A Dctype_base.h57 static const mask space = _CTYPE_S; member in class:ctype_base
70 static const mask space = _S; member in class:ctype_base
/freebsd-10.0-release/sys/arm/arm/
H A Dirq_dispatch.S109 .space NIRQ * (MAXCOMLEN + 1)
111 .space NIRQ * 4
/freebsd-10.0-release/contrib/groff/src/devices/grohtml/
H A Dhtml-text.h70 void do_para (const char *arg, int space); // used for no indentation
73 int space);
108 int space_emitted; /* just emitted a space? */
119 void do_para (const char *arg, html_indent *in, int space);
127 void issue_tag (const char *tagname, const char *arg, int space=2);
H A Dhtml-table.h87 void emit_table_header (int space);
95 void set_space (int space);
118 void begin (int space); // called if we need to use the indent
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Ddyn-string.c59 dyn_string_init (struct dyn_string *ds_struct_ptr, int space) argument
62 if (space == 0)
63 space = 1;
66 ds_struct_ptr->s = (char *) malloc (space);
70 ds_struct_ptr->s = XNEWVEC (char, space);
72 ds_struct_ptr->allocated = space;
86 dyn_string_new (int space) argument
93 if (!dyn_string_init (result, space))
100 dyn_string_init (result, space);
139 dyn_string_resize (dyn_string_t ds, int space) argument
[all...]
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Ddyn-string.c59 dyn_string_init (struct dyn_string *ds_struct_ptr, int space) argument
62 if (space == 0)
63 space = 1;
66 ds_struct_ptr->s = (char *) malloc (space);
70 ds_struct_ptr->s = XNEWVEC (char, space);
72 ds_struct_ptr->allocated = space;
86 dyn_string_new (int space) argument
93 if (!dyn_string_init (result, space))
100 dyn_string_init (result, space);
139 dyn_string_resize (dyn_string_t ds, int space) argument
[all...]
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Damd64_tramp.S49 .space 0x1000
52 .space 0x1000
55 .space 0x1000
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_crypto_ccmp.c407 int data_len, i, space; local
422 space = m->m_len - (hdrlen + ccmp.ic_header);
424 if (space > data_len)
425 space = data_len;
429 while (space >= AES_BLOCK_LEN) {
431 pos += AES_BLOCK_LEN, space -= AES_BLOCK_LEN;
439 if (space != 0) {
443 CCMP_ENCRYPT(i, b, b0, pos, e, space);
447 if (space != 0) {
457 * The buffer will automatically get space byte
558 u_int space; local
[all...]
/freebsd-10.0-release/lib/libc/sparc64/fpu/
H A Dfpu_implode.c505 * Implode an fpn, writing the result into the given space.
508 __fpu_implode(fe, fp, type, space)
512 u_int *space;
517 space[0] = __fpu_ftox(fe, fp, space);
521 space[0] = __fpu_ftoi(fe, fp);
525 space[0] = __fpu_ftos(fe, fp);
529 space[0] = __fpu_ftod(fe, fp, space);
534 space[
[all...]
/freebsd-10.0-release/sys/powerpc/fpu/
H A Dfpu_implode.c426 * Implode an fpn, writing the result into the given space.
429 fpu_implode(struct fpemu *fe, struct fpn *fp, int type, u_int *space) argument
435 space[0] = fpu_ftox(fe, fp, space);
437 space[0], space[1]));
441 space[0] = 0;
442 space[1] = fpu_ftoi(fe, fp);
444 space[1]));
448 space[
[all...]
/freebsd-10.0-release/usr.sbin/bsdconfig/startup/
H A Drcvar93 rword = "^[[:space:]]*[^[:space:]]*[[:space:]]*"
/freebsd-10.0-release/contrib/libc++/src/
H A Dmemory.cpp205 align(size_t alignment, size_t size, void*& ptr, size_t& space) argument
208 if (size <= space)
213 if (d <= space - size)
217 space -= d;
/freebsd-10.0-release/contrib/libstdc++/config/os/aix/
H A Dctype_base.h52 static const mask space = _ISSPACE; member in struct:ctype_base
/freebsd-10.0-release/contrib/libstdc++/config/os/bsd/netbsd/
H A Dctype_base.h55 static const mask space = _S; member in struct:ctype_base
/freebsd-10.0-release/contrib/libstdc++/config/os/djgpp/
H A Dctype_base.h46 static const mask space = __dj_ISSPACE; // Whitespace member in struct:ctype_base

Completed in 322 milliseconds

1234567891011>>