Home
last modified time | relevance | path

Searched refs:space (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/dragonfly/contrib/file/magic/Magdir/
H A Dc-lang17 >>0 regex \^class[[:space:]]+
26 >0 regex \^#[[:space:]]*(if\|ifn)def
34 >0 regex \^[[:space:]]*char(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text
37 >0 regex \^[[:space:]]*double(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text
40 >0 regex \^[[:space:]]*extern[[:space:]]+ C source text
43 >0 regex \^[[:space:]]*float(\ \\*|\\*)(.+)(=.*)?;[[:space:]]*$ C source text
61 >0 regex \^namespace[[:space:]]+[_[:alpha:]]{1,30}[[:space:]]*\\{ C++ source text
66 >0 regex \^using[[:space:]]+(namespace\ )?std(::)?[[:alpha:]]*[[:space:]]*; C++ source text
70 >0 regex \^[[:space:]]*template[[:space:]]*<.*>[[:space:]]*$ C++ source text
74 >0 regex \^[[:space:]]*virtual[[:space:]]+.*[};][[:space:]]*$ C++ source text
[all …]
H A Druby26 >0 regex \^[[:space:]]*require[[:space:]]'[A-Za-z_/.]+'
28 >>>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text
31 0 regex \^[[:space:]]*(class|module)[[:space:]][A-Z]
33 >>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text
37 0 regex \^[[:space:]]*(class|module)[[:space:]][A-Z]
38 >&0 regex \^[[:space:]]*end([[:space:]]+[;#if].*)?$ Ruby script text
45 >0 regex \^[[:space:]]*def\ [a-z]|def\ [[:alpha:]]+::[a-z]
46 >>&0 regex \^[[:space:]]*end([[:space:]]+[;#].*)?$ Ruby script text
51 >0 regex \^[[:space:]]*require[[:space:]]'[A-Za-z_/.]+' Ruby script text
54 >0 regex \^[[:space:]]*include\ ([A-Z]+[a-z]*(::))+ Ruby script text
H A Dforth10 0 regex \[[:space:]]\\(([[:space:]].*)?\ --\ (.*[[:space:]])?\\)
11 >0 regex \^:\[[:space:]]
16 0 regex \^:[[:space:]].*[[:space:]]\\(([[:space:]].*)?\ --\ (.*[[:space:]])?\\)[[:space:]].…
/dragonfly/contrib/gmp/printf/
H A Dvasprintf.c72 size_t space = 256; in gmp_asprintf_format() local
76 GMP_ASPRINTF_T_NEED (d, space); in gmp_asprintf_format()
77 space = d->alloc - d->size; in gmp_asprintf_format()
79 ret = vsnprintf (d->buf + d->size, space, fmt, ap); in gmp_asprintf_format()
82 ASSERT (strlen (d->buf + d->size) == space-1); in gmp_asprintf_format()
83 ret = space-1; in gmp_asprintf_format()
87 if (ret < space-1) in gmp_asprintf_format()
90 if (ret == space-1) in gmp_asprintf_format()
91 space *= 2; /* possible glibc 2.0.x, so double */ in gmp_asprintf_format()
93 space = ret+2; /* C99, so now know space required */ in gmp_asprintf_format()
/dragonfly/sys/netproto/802_11/wlan_ccmp/
H A Dieee80211_crypto_ccmp.c445 space = data_len; in ccmp_encrypt()
459 if (space != 0) { in ccmp_encrypt()
467 if (space != 0) { in ccmp_encrypt()
484 sp = space; in ccmp_encrypt()
513 sp = space; in ccmp_encrypt()
545 space = m->m_len; in ccmp_encrypt()
578 u_int space; in ccmp_decrypt() local
593 space = data_len; in ccmp_decrypt()
608 if (space != 0) { in ccmp_decrypt()
621 space_next = len > space ? len - space : 0; in ccmp_decrypt()
[all …]
/dragonfly/sys/kern/
H A Dvfs_quota.c194 unp->uid_chunk[i].space); in cmd_get_usage_all()
209 gnp->gid_chunk[i].space); in cmd_get_usage_all()
226 uint64_t space; in cmd_set_usage_all() local
255 unp->uid_chunk[(id & ACCT_CHUNK_MASK)].space = space; in cmd_set_usage_all()
261 gnp->gid_chunk[(id & ACCT_CHUNK_MASK)].space = space; in cmd_set_usage_all()
441 uint64_t space, limit; in vq_write_ok() local
455 space = 0; in vq_write_ok()
458 space = unp->uid_chunk[(uid & ACCT_CHUNK_MASK)].space; in vq_write_ok()
471 space = 0; in vq_write_ok()
474 space = gnp->gid_chunk[(gid & ACCT_CHUNK_MASK)].space; in vq_write_ok()
[all …]
H A Dsubr_sglist.c479 size_t space; in sglist_length() local
482 space = 0; in sglist_length()
485 return (space); in sglist_length()
510 size_t space, split; in sglist_split() local
518 space = 0; in sglist_split()
523 if (space >= length) { in sglist_split()
650 space = 0; in sglist_slice()
656 if (space > offset) { in sglist_slice()
674 if (space >= end) { in sglist_slice()
675 loffs = space - end; in sglist_slice()
[all …]
/dragonfly/contrib/binutils-2.27/libiberty/
H A Ddyn-string.c62 if (space == 0) in dyn_string_init()
63 space = 1; in dyn_string_init()
66 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init()
70 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init()
72 ds_struct_ptr->allocated = space; in dyn_string_init()
86 dyn_string_new (int space) in dyn_string_new() argument
93 if (!dyn_string_init (result, space)) in dyn_string_new()
100 dyn_string_init (result, space); in dyn_string_new()
139 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument
144 ++space; in dyn_string_resize()
[all …]
/dragonfly/contrib/gdb-7/libiberty/
H A Ddyn-string.c62 if (space == 0) in dyn_string_init()
63 space = 1; in dyn_string_init()
66 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init()
70 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init()
72 ds_struct_ptr->allocated = space; in dyn_string_init()
86 dyn_string_new (int space) in dyn_string_new() argument
93 if (!dyn_string_init (result, space)) in dyn_string_new()
100 dyn_string_init (result, space); in dyn_string_new()
139 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument
144 ++space; in dyn_string_resize()
[all …]
/dragonfly/contrib/binutils-2.34/libiberty/
H A Ddyn-string.c62 if (space == 0) in dyn_string_init()
63 space = 1; in dyn_string_init()
66 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init()
70 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init()
72 ds_struct_ptr->allocated = space; in dyn_string_init()
86 dyn_string_new (int space) in dyn_string_new() argument
93 if (!dyn_string_init (result, space)) in dyn_string_new()
100 dyn_string_init (result, space); in dyn_string_new()
139 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument
144 ++space; in dyn_string_resize()
[all …]
/dragonfly/contrib/gcc-4.7/libiberty/
H A Ddyn-string.c62 if (space == 0) in dyn_string_init()
63 space = 1; in dyn_string_init()
66 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init()
70 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init()
72 ds_struct_ptr->allocated = space; in dyn_string_init()
86 dyn_string_new (int space) in dyn_string_new() argument
93 if (!dyn_string_init (result, space)) in dyn_string_new()
100 dyn_string_init (result, space); in dyn_string_new()
139 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument
144 ++space; in dyn_string_resize()
[all …]
/dragonfly/contrib/gcc-8.0/libiberty/
H A Ddyn-string.c62 if (space == 0) in dyn_string_init()
63 space = 1; in dyn_string_init()
66 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init()
70 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init()
72 ds_struct_ptr->allocated = space; in dyn_string_init()
86 dyn_string_new (int space) in dyn_string_new() argument
93 if (!dyn_string_init (result, space)) in dyn_string_new()
100 dyn_string_init (result, space); in dyn_string_new()
139 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument
144 ++space; in dyn_string_resize()
[all …]
/dragonfly/sys/dev/drm/amd/include/
H A Dcgs_common.h109 typedef uint32_t (*cgs_read_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space,
118 typedef void (*cgs_write_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space,
134 #define CGS_WREG32_FIELD_IND(device, space, reg, field, val) \ argument
135 …cgs_write_ind_register(device, space, ix##reg, (cgs_read_ind_register(device, space, ix##reg) & ~C…
170 #define cgs_read_ind_register(dev,space,index) \ argument
171 CGS_CALL(read_ind_register,dev,space,index)
172 #define cgs_write_ind_register(dev,space,index,value) \ argument
173 CGS_CALL(write_ind_register,dev,space,index,value)
/dragonfly/usr.bin/fold/
H A Dfold.c148 int col, i, indx, space; in fold() local
163 space = i; in fold()
165 if (sflag && space != -1) { in fold()
166 space++; in fold()
167 wprintf(L"%.*ls\n", space, buf); in fold()
168 wmemmove(buf, buf + space, indx - space); in fold()
169 indx -= space; in fold()
/dragonfly/sys/dev/drm/i915/
H A Di915_vgpu.c95 struct drm_mm_node space[4]; member
129 vgt_deballoon_space(&dev_priv->ggtt, &bl_info.space[i]); in intel_vgt_deballoon()
232 ret = vgt_balloon_space(ggtt, &bl_info.space[2], in intel_vgt_balloon()
240 ret = vgt_balloon_space(ggtt, &bl_info.space[3], in intel_vgt_balloon()
248 ret = vgt_balloon_space(ggtt, &bl_info.space[0], in intel_vgt_balloon()
256 ret = vgt_balloon_space(ggtt, &bl_info.space[1], in intel_vgt_balloon()
267 vgt_deballoon_space(ggtt, &bl_info.space[0]); in intel_vgt_balloon()
269 vgt_deballoon_space(ggtt, &bl_info.space[3]); in intel_vgt_balloon()
271 vgt_deballoon_space(ggtt, &bl_info.space[2]); in intel_vgt_balloon()
/dragonfly/sys/bus/isa/
H A Dpnp.c498 int space = *spacep; in pnp_read_bytes() local
501 if (space == 0) { in pnp_read_bytes()
502 space = 1024; in pnp_read_bytes()
506 if (len + amount > space) { in pnp_read_bytes()
508 while (len + amount > space + extra) in pnp_read_bytes()
514 space += extra; in pnp_read_bytes()
522 *spacep = space; in pnp_read_bytes()
539 int space = *spacep; in pnp_read_resources() local
578 *spacep = space; in pnp_read_resources()
600 int space = 0; in pnp_isolation_protocol() local
[all …]
/dragonfly/contrib/tcsh-6/nls/greek/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/sbin/vquota/
H A Dvquota.c371 if (unp->uid_chunk[i].space != 0) { in cmd_check()
376 unp->uid_chunk[i].space, "", HN_AUTOSCALE, HN_NOSPACE); in cmd_check()
379 printf(" %" PRIu64 "\n", unp->uid_chunk[i].space); in cmd_check()
386 if (gnp->gid_chunk[i].space != 0) { in cmd_check()
394 printf(" %" PRIu64 "\n", gnp->gid_chunk[i].space); in cmd_check()
496 uint64_t space, limit=0; in show_mp() local
540 printf(" %"PRIu64, space); in show_mp()
587 if (unp->uid_chunk[i].space != 0) { in cmd_sync()
592 unp->uid_chunk[i].space); in cmd_sync()
599 if (gnp->gid_chunk[i].space != 0) { in cmd_sync()
[all …]
/dragonfly/usr.bin/calendar/calendars/
H A Dcalendar.space4 * $OpenBSD: calendar.space,v 1.3 2006/10/31 18:11:54 jasper Exp $
13 01/31 "Ham" the chimpanzee soars into space aboard Mercury-Redstone 2, 1961
24 04/12 Yuri Gagarin becomes the first man in space, 1961
28 05/05 Alan Shepard becomes the first American in space, 1961
29 05/14 Skylab (first U.S. space station) launched, 1973
40 marking start of practical military reconnaissance from space, 1960
45 10/04 First space vehicle, Sputnik I, launched, 1957
48 11/03 Sputnik II launched, 1957, bearing space dog Laika
/dragonfly/contrib/tcsh-6/nls/ukrainian/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/contrib/tcsh-6/nls/russian/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/contrib/tcsh-6/nls/et/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/contrib/tcsh-6/nls/french/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/contrib/tcsh-6/nls/italian/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n
/dragonfly/contrib/tcsh-6/nls/spanish/
H A Dset1916 14 Total space allocated from system: %zu\n
19 17 Total space in mmapped regions: %zu\n
20 18 Total allocated space: %zu\n
21 19 Total non-inuse space: %zu\n
22 20 Top-most, releasable space: %zu\n

12345678910>>...20