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

123456789

/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Dpro_encode_nm.h45 char *space, int splen);
48 char *space, int splen);
H A Dpro_encode_nm.c54 ** space to write leb number is provided by caller, with caller
60 char *space, int splen)
63 char *end = space + splen;
65 a = space;
80 *nbytes = a - space;
85 ** space to write leb number is provided by caller, with caller
92 char *space, int splen)
97 char *end = space + splen;
99 str = space;
121 *nbytes = str - space;
59 _dwarf_pro_encode_leb128_nm(Dwarf_Unsigned val, int *nbytes, char *space, int splen) argument
91 _dwarf_pro_encode_signed_leb128_nm(Dwarf_Signed value, int *nbytes, char *space, int splen) argument
[all...]
H A Ddwarf_alloc.c72 static void _dwarf_free_special_error(Dwarf_Ptr space);
80 Dwarf_Ptr space,
150 space needed per block, but that (DW_RESERVE) will be added in
151 later where it is needed (DW_RESERVE space never added in here).
604 that the space was allocated by a direct call to malloc,
613 obtain the space.
619 If so, the entire chunk is free_ed. Otherwise, the space
627 Dwarf_Ptr space, Dwarf_Unsigned alloc_type)
634 if (space == NULL) {
641 *(Dwarf_Alloc_Area *) ((char *) space
626 dwarf_dealloc(Dwarf_Debug dbg, Dwarf_Ptr space, Dwarf_Unsigned alloc_type) argument
1149 _dwarf_free_special_error(Dwarf_Ptr space) argument
1226 _dwarf_simple_malloc_delete_from_list(Dwarf_Debug dbg, Dwarf_Ptr space, short alloc_type) argument
[all...]
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dtempnam.c89 pcopy(space, arg)
90 char *space, *arg;
95 (void)strcpy(space, arg);
96 p = space-1+strlen(space);
100 return(space);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dtempnam.c104 pcopy(char *space, const char *arg) argument
109 (void) strcpy(space, arg);
110 p = space-1+strlen(space);
111 while ((p >= space) && (*p == '/'))
114 return (space);
/illumos-gate/usr/src/cmd/localedef/data/
H A Dctype.sh25 for i in upper lower alpha space cntrl graph print punct digit xdigit blank \
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_scheme.h42 nis_attr *schemeQuery2nisAttr(db_query *q, nis_attr *space,
H A Dldap_scheme.c70 * columns, space for a nis_attr array with at least q->components->
76 schemeQuery2nisAttr(db_query *q, nis_attr *space, db_scheme *s, argument
83 if (q == 0 || space == 0 || s == 0 || t == 0 || numAttr == 0)
104 a = space;
/illumos-gate/usr/src/cmd/sgs/libldmake/common/
H A Dld_file.c108 char lockfile[MAXPATHLEN], *err, *space, *target; local
115 if ((space = strchr(depend_file, ' ')) == NULL)
117 *space = '\0';
118 target = &space[1];
139 *space = ' ';
/illumos-gate/usr/src/cmd/make/lib/makestate/
H A Dld_file.c103 char lockfile[MAXPATHLEN], * err, * space, * target; local
110 if ((space = strchr(depend_file, ' ')) == NULL)
112 *space = '\0';
113 target = &space[1];
134 *space = ' ';
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_frontend.h45 #define NSCD_ALLOC_LOOKUP_BUFFER(bufp, bufsiz, hdrp, space, spsiz) \
47 (void) memcpy(space, (hdrp), NSCD_PHDR_LEN((hdrp))); \
48 bufp = space; \
50 hdrp = (nss_pheader_t *)(void *)space; \
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Damd64_tramp.S49 .space 0x1000
52 .space 0x1000
55 .space 0x1000
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dprocmap.c58 static int space = -1; variable
74 if (space != -1) {
75 ar_free(space);
76 space = -1;
169 * have been copied into dup space yet, do that.
209 space = ar_create(EPTMALLOC, (unsigned)sizeof (struct cfent),
211 if (space == -1) {
240 ept_ptr = (struct cfent **)ar_next_avail(space);
255 (void) ar_delete(space, eptnum);
262 /* setup a pointer array to point to malloc'd entries space */
[all...]
/illumos-gate/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.$$
/illumos-gate/usr/src/cmd/eqn/
H A Dmatrix.c38 char *space; local
40 space = "\\ \\ ";
78 printf("\\*(%d%s", val[i], i == ncol-1 ? "" : space);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_nlist.c41 struct nlist space[BSIZ/sizeof (struct nlist)]; local
62 m = MIN(n, sizeof (space));
64 if (read(fd, (char *)space, m) != m)
68 for (q = space; (m -= sizeof (struct nlist)) >= 0; q++) {
H A Dgetttyent.c140 #define space(x) ((c = p[x]) == ' ' || c == '\t' || c == '\n') macro
141 if (strncmp(p, "on", 2) == 0 && space(2))
143 else if (strncmp(p, "off", 3) == 0 && space(3))
145 else if (strncmp(p, "secure", 6) == 0 && space(6))
147 else if (strncmp(p, "local", 5) == 0 && space(5))
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dalloca.s35 subl %eax,%esp / leave requested space on stack
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A Dfpgetrnd.s42 add %sp, SA(MINFRAME), %sp ! reclaim stack space
H A Dfpgetmask.s44 add %sp, SA(MINFRAME), %sp ! reclaim stack space
H A Dfpgetsticky.s44 add %sp, SA(MINFRAME), %sp ! reclaim stack space
/illumos-gate/usr/src/lib/libc/sparcv9/fp/
H A Dfpgetrnd.s42 add %sp, SA(MINFRAME), %sp ! reclaim stack space
H A Dfpgetmask.s44 add %sp, SA(MINFRAME), %sp ! reclaim stack space
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dcopy_auth.c193 size_t space; member in struct:find_authdata_context
202 if (fctx->length == fctx->space) {
204 if (fctx->space >= 256) {
209 sizeof (krb5_authdata *)*(2*fctx->space+1));
213 fctx->space *=2;
265 fctx.space = 2;
266 fctx.out = calloc(fctx.space+1, sizeof (krb5_authdata *));
/illumos-gate/usr/src/lib/libshell/common/scripts/
H A Dshcalc.sh131 [[ "${calcline}" == ~(Elri)([[:space:]]*) ]] && continue

Completed in 167 milliseconds

123456789