Searched refs:last (Results 126 - 150 of 601) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libdll/
H A DMakefile.com55 -last \
63 # case - it MUST come as the last element but future changes in -D options
64 # may then cause silent breakage in the AST sources because the last -D
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetexecattr.c97 char *last = NULL; local
119 exec->name = _strtok_escape(buffer, sep, &last);
120 exec->policy = _strtok_escape(NULL, sep, &last);
121 exec->type = _strtok_escape(NULL, sep, &last);
122 exec->res1 = _strtok_escape(NULL, sep, &last);
123 exec->res2 = _strtok_escape(NULL, sep, &last);
124 exec->id = _strtok_escape(NULL, sep, &last);
125 exec->attr = _strtok_escape(NULL, sep, &last);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dfw.h52 Op_arg_item _TKFAR *last; member in struct:Op_row_link
59 Op_row_link _TKFAR *last; member in struct:Op_arg
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfpool.c60 reg Sfpool_t *p, *last = &_Sfpool; local
63 for(last = &_Sfpool, p = last->next; p; last = p, p = p->next)
71 { POOLMTXLOCK(last);
74 { POOLMTXUNLOCK(last);
83 last->next = p;
85 POOLMTXUNLOCK(last);
/illumos-gate/usr/src/cmd/mandoc/
H A Droff.h85 struct roff_node *last; /* Last child AST node. */ member in struct:roff_node
136 struct roff_node *last; /* The last node parsed. */ member in struct:roff_man
153 #define MDOC_PHRASEQL (1 << 14) /* Quote last word of this phrase. */
H A Dtbl_data.c49 cp = dp->last == NULL ? dp->layout->first : dp->last->layout->next;
77 if (dp->last == NULL)
80 dp->last->next = dat;
81 dp->last = dat;
128 dat = tbl->last_span->last;
191 * Choose a layout row: take the one following the last parsed
192 * span's. If that doesn't exist, use the last parsed span's.
193 * If there's no last parsed span, use the first row. Lastly,
194 * if the last spa
[all...]
H A Dmdoc_macro.c219 n = mdoc->last->flags & MDOC_VALID ?
220 mdoc->last->parent : mdoc->last;
270 while (mdoc->last != to) {
271 mdoc_state(mdoc, mdoc->last);
272 mdoc->last->flags |= MDOC_VALID | MDOC_ENDED;
273 mdoc->last = mdoc->last->parent;
275 mdoc_state(mdoc, mdoc->last);
276 mdoc->last
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dcmp.c110 unsigned char* last; local
150 last = p1 + c1;
151 while (p1 < last)
160 sfprintf(sfstdout, "%6I*d ", sizeof(pos), pos - (last - p1));
165 sfprintf(sfstdout, "%6I*d %3o %3o\n", sizeof(pos), pos - (last - p1), c1, *(p2 - 1));
169 sfprintf(sfstdout, "%s %s differ: char %I*d, line %I*u\n", file1, file2, sizeof(pos), pos - (last - p1), sizeof(lines), lines);
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dsort.c87 LDAPMessage *e, *last; local
119 last = e;
129 *ep = last;
208 LDAPMessage *e, *last; local
260 last = e;
273 *ep = last;
/illumos-gate/usr/src/tools/cscope-fast/
H A Dscanner.l64 int last; /* buffer index for last char of symbol */
144 last = strlen(yytext);
152 last = first;
185 last = first;
261 /* could be the last enum member initializer */
278 last = first;
287 last = first;
553 last = yyleng;
596 last
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dinffast.c75 unsigned char FAR *last; /* while in < last, enough input available */ local
102 last = in + (strm->avail_in - 5);
287 } while (in < last && out < end);
298 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
/illumos-gate/usr/src/boot/lib/libz/
H A Dinffast.c73 z_const unsigned char FAR *last; /* have enough input while in < last */ local
100 last = in + (strm->avail_in - 5);
307 } while (in < last && out < end);
318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Dbootinfo.c93 vm_offset_t addr, last; local
96 addr = last = start;
115 last = ++addr;
118 if (i386_copyin("", last++, 1) != 1)
119 last = start;
120 return(last);
244 /* Find the last module in the chain. */
/illumos-gate/usr/src/uts/sun4u/sunfire/io/
H A Dfhc_bd.c66 fhc_b_search(in_array.boards, board, 0, in_array.last);
103 fhc_shell_sort(boards.boards, 0, boards.last);
109 fhc_shell_sort(clocks.boards, 0, clocks.last);
153 fhc_b_search(fhc_bd_t *in_array[], int board, int first, int last) argument
162 while (first < last) {
163 mid = (first + last) / 2;
167 last = mid;
186 if (resizable->size == resizable->last + 1) {
249 boards.last = -1;
254 clocks.last
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Darith.c353 * ptr is set to the last character processed
360 char base=0, *last; local
368 d = strtonll(str,&last,&base,-1);
369 if(*last || errno)
371 if(!last || *last!='.' || last[1]!='.')
372 d = strval(str,&last,arith,mode);
373 if(!ptr && *last && mode>0)
374 errormsg(SH_DICT,ERROR_exit(1),e_lexbadchar,*last,st
[all...]
H A Dnvtree.c78 dp->last = fp->last;
146 char *next,*last; local
165 if(*(last=(char*)name)==0)
167 if(!(next=nextdot(last)))
180 last = dp->data;
194 last = 0;
204 if(!last)
206 else if(next= nextdot(last))
215 np = (*nfp->disc->createf)(nq,last,
[all...]
H A Dstring.c673 * returns pointer to last character
675 char *sh_checkid(char *str, char *last) argument
682 if(c==']' && (!last || ((char*)cp==last)))
690 if(last)
691 last -=2;
700 last = (char*)v;
703 return(last);
/illumos-gate/usr/src/lib/nsswitch/files/common/
H A Dgetexecattr.c109 char *last; local
137 * file has been modified since we last read it
231 if ((last = strchr(instr, '#')) == NULL)
232 last = instr + linelen;
233 *last-- = '\0'; /* Nuke '\n' or #comment */
248 while (isspace(*last))
249 --last;
250 linelen = last - first + 1;
/illumos-gate/usr/src/lib/nsswitch/nis/common/
H A Dgetexecattr.c95 char *last = NULL; local
110 execp->name = _strtok_escape(strbuf, sep, &last);
111 execp->policy = _strtok_escape(NULL, sep, &last);
112 execp->type = _strtok_escape(NULL, sep, &last);
113 execp->res1 = _strtok_escape(NULL, sep, &last);
114 execp->res2 = _strtok_escape(NULL, sep, &last);
115 execp->id = _strtok_escape(NULL, sep, &last);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dldap_key_seq.c50 goto last; \
55 goto last
128 last:
207 last:
250 last:
276 last:
305 last:
381 last:
457 break; /* Not freeing the last key structure */
467 last
[all...]
/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdcdos.c54 char last; member in struct:_dosdisc
124 *cp = dp->last;
135 if(dp->last=='\r' && *cp!='\n')
139 dp->last = *cpmax;
142 if(dp->last!='\r')
148 if(dp->last=='\r')
150 else if(dp->last!='\n' || cpmax[-1]!='\r')
163 *cpmax = dp->last;
210 cpmax[-count] = dp->last;
/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dgetspent.c78 char **uid, **passwd, **last, **smin, **smax; local
146 last = __ns_ldap_getAttr(result->entry, _S_LASTCHANGE);
147 if (last == NULL || last[0] == NULL)
150 last_str = last[0];
/illumos-gate/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dadm_util.c42 char *first, *last; local
59 last = strrchr(pres->name, '\0');
60 last--;
61 while (isspace(*last)) /* nuke trailing whitespace */
62 *last-- = '\0';
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dprocmap.c291 static int last = 0; local
298 last = 0;
312 last = index-1;
318 i = last;
353 last = i = upper;
/illumos-gate/usr/src/lib/libtsnet/common/
H A Dtsol_gettpent.c171 char *last = NULL; local
181 tpstrp->template = _strtok_escape(buffer, sep, &last);
182 tpstrp->attrs = _strtok_escape(NULL, sep, &last);

Completed in 151 milliseconds

1234567891011>>