Home
last modified time | relevance | path

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

12345678910>>...20

/titanic_41/usr/src/lib/efcode/fcode_test/
H A Diftest.fth27 1 if .passed then space
28 0 if .failed then space
32 0 if .failed else .passed then space
33 1 if .passed else .failed then space
38 if if .failed else .failed then space
39 else if .failed else .passed then space
41 if if .failed else .passed then space
42 else if .failed else .failed then space
44 if if .failed else .failed then space
45 else if .passed else .failed then space
[all …]
/titanic_41/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_alloc.c72 static void _dwarf_free_special_error(Dwarf_Ptr space);
80 Dwarf_Ptr space,
627 Dwarf_Ptr space, Dwarf_Unsigned alloc_type) in dwarf_dealloc() argument
634 if (space == NULL) { in dwarf_dealloc()
641 *(Dwarf_Alloc_Area *) ((char *) space - DW_RESERVE); in dwarf_dealloc()
648 _dwarf_free_special_error(space); in dwarf_dealloc()
649 dwarf_malloc_check_dealloc_data(space, type); in dwarf_dealloc()
668 dwarf_malloc_check_dealloc_data(space, type); in dwarf_dealloc()
671 if ((Dwarf_Small *) space >= dbg->de_debug_info.dss_data && in dwarf_dealloc()
672 (Dwarf_Small *) space < in dwarf_dealloc()
[all …]
H A Dpro_encode_nm.c60 char *space, int splen) in _dwarf_pro_encode_leb128_nm() argument
63 char *end = space + splen; in _dwarf_pro_encode_leb128_nm()
65 a = space; in _dwarf_pro_encode_leb128_nm()
80 *nbytes = a - space; in _dwarf_pro_encode_leb128_nm()
92 char *space, int splen) in _dwarf_pro_encode_signed_leb128_nm() argument
97 char *end = space + splen; in _dwarf_pro_encode_signed_leb128_nm()
99 str = space; in _dwarf_pro_encode_signed_leb128_nm()
121 *nbytes = str - space; in _dwarf_pro_encode_signed_leb128_nm()
H A Dpro_encode_nm.h45 char *space, int splen);
48 char *space, int splen);
/titanic_41/usr/src/lib/libbc/libc/stdio/common/
H A Dtempnam.c89 pcopy(space, arg) in pcopy() argument
90 char *space, *arg; in pcopy()
95 (void)strcpy(space, arg);
96 p = space-1+strlen(space);
100 return(space);
/titanic_41/usr/src/lib/libc/port/stdio/
H A Dtempnam.c104 pcopy(char *space, const char *arg) in pcopy() argument
109 (void) strcpy(space, arg); in pcopy()
110 p = space-1+strlen(space); in pcopy()
111 while ((p >= space) && (*p == '/')) in pcopy()
114 return (space); in pcopy()
/titanic_41/usr/src/cmd/svr4pkg/libinst/
H A Dprocmap.c58 static int space = -1; variable
74 if (space != -1) { in procinit()
75 ar_free(space); in procinit()
76 space = -1; in procinit()
209 space = ar_create(EPTMALLOC, (unsigned)sizeof (struct cfent), in procmap()
211 if (space == -1) { in procmap()
240 ept_ptr = (struct cfent **)ar_next_avail(space); in procmap()
255 (void) ar_delete(space, eptnum); in procmap()
263 eptlist = (struct cfent **)ar_get_head(space); in procmap()
335 (void) ar_delete(space, index); in sortentry()
/titanic_41/usr/src/cmd/sgs/libldmake/common/
H A Dld_file.c108 char lockfile[MAXPATHLEN], *err, *space, *target; in ld_atexit() local
115 if ((space = strchr(depend_file, ' ')) == NULL) in ld_atexit()
117 *space = '\0'; in ld_atexit()
118 target = &space[1]; in ld_atexit()
139 *space = ' '; in ld_atexit()
/titanic_41/usr/src/cmd/make/lib/makestate/
H A Dld_file.c103 char lockfile[MAXPATHLEN], * err, * space, * target; in mk_state_update_exit() local
110 if ((space = strchr(depend_file, ' ')) == NULL) in mk_state_update_exit()
112 *space = '\0'; in mk_state_update_exit()
113 target = &space[1]; in mk_state_update_exit()
134 *space = ' '; in mk_state_update_exit()
/titanic_41/usr/src/cmd/troff/nroff.d/terms.d/
H A DREADME13 (In the following description, "white space" means any combination
17 but with no embedded white space.
43 up [string] /*sequence to move up 1 space in plot mode*/
44 down [string] /*sequence to move down 1 space in plot mode*/
45 right [string] /*sequence to move right 1 space in plot mode*/
46 left [string] /*sequence to move left 1 space in plot mode*/
50 two fields (N.B. the comment should be omitted) separated by white space.
52 then white space, and then the value. The value is either an integer,
74 special character, followed by white space, followed by the width of
75 the character (in ems), followed by white space, followed by the
/titanic_41/usr/src/test/zfs-tests/tests/functional/no_space/
H A Denospc_002_pos.ksh44 log_mustnot_expect space $ZFS create $TESTPOOL/$TESTFS/subfs
45 log_mustnot_expect space $ZFS clone $TESTPOOL/$TESTFS@snap $TESTPOOL/clone
46 log_mustnot_expect space $ZFS snapshot $TESTPOOL/$TESTFS@snap2
47 log_mustnot_expect space $ZFS bookmark \
51 log_mustnot_expect space $ZFS receive $TESTPOOL/$TESTFS/recvd </tmp/stream.$$
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dcopy_auth.c193 size_t space; member
202 if (fctx->length == fctx->space) { in grow_find_authdata()
204 if (fctx->space >= 256) { in grow_find_authdata()
209 sizeof (krb5_authdata *)*(2*fctx->space+1)); in grow_find_authdata()
213 fctx->space *=2; in grow_find_authdata()
265 fctx.space = 2; in krb5int_find_authdata()
266 fctx.out = calloc(fctx.space+1, sizeof (krb5_authdata *)); in krb5int_find_authdata()
/titanic_41/usr/src/cmd/nscd/
H A Dnscd_frontend.h45 #define NSCD_ALLOC_LOOKUP_BUFFER(bufp, bufsiz, hdrp, space, spsiz) \ argument
47 (void) memcpy(space, (hdrp), NSCD_PHDR_LEN((hdrp))); \
48 bufp = space; \
50 hdrp = (nss_pheader_t *)(void *)space; \
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dgetttyent.c140 #define space(x) ((c = p[x]) == ' ' || c == '\t' || c == '\n') in getttyent() macro
141 if (strncmp(p, "on", 2) == 0 && space(2)) in getttyent()
143 else if (strncmp(p, "off", 3) == 0 && space(3)) in getttyent()
145 else if (strncmp(p, "secure", 6) == 0 && space(6)) in getttyent()
147 else if (strncmp(p, "local", 5) == 0 && space(5)) in getttyent()
H A D_nlist.c41 struct nlist space[BSIZ/sizeof (struct nlist)]; in _nlist() local
62 m = MIN(n, sizeof (space)); in _nlist()
64 if (read(fd, (char *)space, m) != m) in _nlist()
68 for (q = space; (m -= sizeof (struct nlist)) >= 0; q++) { in _nlist()
/titanic_41/usr/src/lib/libcmd/common/
H A Dcut.c99 unsigned char space[UCHAR_MAX+1]; member
146 memset(cut->space, 0, sizeof(cut->space) / 2); in cutinit()
147 memset(cut->space + sizeof(cut->space) / 2, SP_WIDE, sizeof(cut->space) / 2); in cutinit()
150 memset(cut->space, 0, sizeof(cut->space)); in cutinit()
153 cut->space[wdelim->chr] = SP_WORD; in cutinit()
156 cut->space[cut->eob] = SP_LINE; in cutinit()
370 register unsigned char *sp = cut->space; in cutfields()
/titanic_41/usr/src/cmd/mailx/
H A Dfio.c71 if (!space) { in setptr()
74 space = 32; in setptr()
77 (struct message *)calloc(space, sizeof (struct message)); in setptr()
81 space); in setptr()
185 if (msgCount >= space) { in setptr()
190 if (space < 512) in setptr()
191 space = space*2; in setptr()
193 space += 512; in setptr()
198 space*(sizeof (struct message))); in setptr()
203 space); in setptr()
/titanic_41/usr/src/uts/common/fs/zfs/
H A Ddsl_pool.c616 uint64_t space, resv; in dsl_pool_adjustedsize() local
623 space = spa_get_dspace(dp->dp_spa); in dsl_pool_adjustedsize()
628 return (space - resv); in dsl_pool_adjustedsize()
647 dsl_pool_dirty_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx) in dsl_pool_dirty_space() argument
649 if (space > 0) { in dsl_pool_dirty_space()
651 dp->dp_dirty_pertxg[tx->tx_txg & TXG_MASK] += space; in dsl_pool_dirty_space()
652 dsl_pool_dirty_delta(dp, space); in dsl_pool_dirty_space()
658 dsl_pool_undirty_space(dsl_pool_t *dp, int64_t space, uint64_t txg) in dsl_pool_undirty_space() argument
660 ASSERT3S(space, >=, 0); in dsl_pool_undirty_space()
661 if (space == 0) in dsl_pool_undirty_space()
[all …]
/titanic_41/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dcprboot.h135 #define SF_DCOPY(space) \ argument
136 bcopy(SF_DATA(), &space, sizeof (space)); \
137 SF_ADV(sizeof (space))
/titanic_41/usr/src/cmd/calendar/
H A Dcalprog.c224 int space = 0; in generate() local
232 space++; in generate()
236 if (space) { in generate()
242 space = 0; in generate()
/titanic_41/usr/src/lib/libc/port/locale/
H A Dregexec.c156 #define STATEVARS long vn; char *space
157 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
158 if ((m)->space == NULL) \
161 #define STATETEARDOWN(m) { free((m)->space); }
162 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
/titanic_41/usr/src/lib/libnisdb/
H A Dldap_scheme.c76 schemeQuery2nisAttr(db_query *q, nis_attr *space, db_scheme *s, in schemeQuery2nisAttr() argument
83 if (q == 0 || space == 0 || s == 0 || t == 0 || numAttr == 0) in schemeQuery2nisAttr()
104 a = space; in schemeQuery2nisAttr()
/titanic_41/usr/src/cmd/eqn/
H A Dmatrix.c38 char *space; in matrix() local
40 space = "\\ \\ "; in matrix()
78 printf("\\*(%d%s", val[i], i == ncol-1 ? "" : space); in matrix()
/titanic_41/usr/src/uts/common/io/audio/impl/
H A Daudio_input.c201 int space; in auimpl_input_callback() local
226 space = sp->s_nframes - (sp->s_head - sp->s_tail); in auimpl_input_callback()
227 if (count > space) { in auimpl_input_callback()
230 sp->s_errors += count - space; in auimpl_input_callback()
231 count = space; in auimpl_input_callback()
/titanic_41/usr/src/cmd/mdb/common/mdb/
H A Dmdb_tab.c97 uint_t space = 0; in tab_get_dcmd() local
106 space = 1; in tab_get_dcmd()
112 if (space) in tab_get_dcmd()
132 uint_t space = *flags & DCMD_TAB_SPACE; in tab_count_args() local
138 space = 1; in tab_count_args()
143 space = 0; in tab_count_args()
150 if (space) in tab_count_args()

12345678910>>...20