Searched refs:last (Results 26 - 50 of 601) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libtecla/common/
H A Dioutil.c54 * string, a newline will not be started at the end of the last word
76 * in the last column of the terminal line. If
108 int last = start; /* The column number of the last character written */ local
150 last = start;
155 if(indentation > 0 && last < indentation) {
156 if(_io_pad_line(write_fn, data, fill_char, indentation - last))
158 last = indentation;
164 if(prefix_len > 0 && last < margin_width) {
165 int pstart = last
[all...]
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_biggest.c51 int size, guess, base, last; local
62 last = size;
63 while (last >= base) {
64 guess = (last+base)/2;
68 last = guess - 1;
72 guess = last;
/illumos-gate/usr/src/uts/common/krtld/
H A Dkobj_lm.c72 struct modctl_list *last; local
74 for (last = *lpp; last->modl_next != NULL;
75 last = last->modl_next)
78 last->modl_next = lp;
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrtok.c52 __strtok_r(char *s, const char *delim, char **last) argument
57 if (s == NULL && (s = *last) == NULL)
71 *last = NULL;
89 *last = s;
100 static char *last; local
102 return (__strtok_r(s, delim, &last));
/illumos-gate/usr/src/ucbcmd/tr/
H A Dtr.c52 struct string { int last, max; char *p; } string1, string2; member in struct:string
63 string1.last = string2.last = 0;
139 if(s->last++ < s->max)
140 return(s->last);
141 s->max = s->last = 0;
143 if(s->last && *s->p=='-') {
150 if(s->max < s->last) {
151 s->last = s->max-1;
156 return(s->last
[all...]
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_llist.c133 DAPL_LLIST_ENTRY *last; local
141 last = (*head)->blink;
142 entry->flink = last->flink;
143 entry->blink = last;
144 last->flink->blink = entry;
145 last->flink = entry;
163 DAPL_LLIST_ENTRY *last; local
171 last = entry->blink;
173 last->flink = new_entry;
176 new_entry->blink = last;
218 DAPL_LLIST_ENTRY *last; local
[all...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dsetenviron.c48 static char** last; /* last free slot (0) */ local
76 if (!p || (last - p + 1) < n)
89 last = p + n - 1;
107 else if (next == last)
109 n = last - v + INCREMENT + 1;
112 last = p + n - 1;
113 next = last - INCREMENT;
/illumos-gate/usr/src/cmd/krb5/krb5kdc/
H A Dreplay.c74 register krb5_kdc_replay_ent *eptr, *last, *hold; local
87 for (last = &root_ptr, eptr = root_ptr.next;
107 last->next = eptr->next;
108 eptr = last;
112 last = eptr;
163 register krb5_kdc_replay_ent *eptr, *last, *hold; local
165 for (last = &root_ptr, eptr = root_ptr.next;
170 last->next = eptr->next;
171 eptr = last;
/illumos-gate/usr/src/uts/common/io/aggr/
H A Daggr_recv.c84 mblk_t *cmp, *last, *head; local
89 last = NULL;
102 last->b_next = NULL;
113 last = NULL;
128 ASSERT(last == NULL);
135 ASSERT(last != NULL);
137 last->b_next = NULL;
149 last = NULL;
152 last = cmp;
/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dvmclose.c42 Vmalloc_t *v, *last; local
64 for(last = Vmheap, v = last->next; v; last = v, v = v->next)
66 { last->next = v->next;
/illumos-gate/usr/src/boot/sys/x86/include/
H A Dstdarg.h44 #define va_start(ap, last) \
45 __builtin_va_start((ap), (last))
65 #define va_start(ap, last) \
66 ((ap) = (va_list)&(last) + __va_size(last))
/illumos-gate/usr/src/uts/i86xpv/os/
H A Dxpv_timestamp.c141 hrtime_t last; local
143 last = hrtime_last;
144 if (result < last)
145 result = last + 1;
147 last, result) != last);
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Deptstat.c71 struct pinfo *pinfo, *last, *me, *myparent; local
76 me = myparent = last = (struct pinfo *)0;
87 myparent = last;
91 last = pinfo;
105 if (me == last)
106 last = myparent;
141 if (last)
142 last->next = me; /* add to end */
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dprinthash_live.c28 int i, printed, last; local
51 last = 0;
54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
56 last = 1;
H A Dprintpool_live.c28 int i, printed, last; local
51 last = 0;
54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
56 last = 1;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzle.c48 uchar_t *last = src + (256 - n); local
49 while (src < MIN(last, s_end) && src[0] == 0)
53 uchar_t *last = src + n; local
56 while (src < MIN(last, s_end) - 1 && (src[0] | src[1]))
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetauthattr.c66 char *last = NULL; local
87 auth->name = _strtok_escape(buffer, sep, &last);
88 auth->res1 = _strtok_escape(NULL, sep, &last);
89 auth->res2 = _strtok_escape(NULL, sep, &last);
90 auth->short_desc = _strtok_escape(NULL, sep, &last);
91 auth->long_desc = _strtok_escape(NULL, sep, &last);
92 auth->attr = _strtok_escape(NULL, sep, &last);
H A Dgetprofattr.c65 char *last = NULL; local
85 prof->name = _strtok_escape(buffer, sep, &last);
86 prof->res1 = _strtok_escape(NULL, sep, &last);
87 prof->res2 = _strtok_escape(NULL, sep, &last);
88 prof->desc = _strtok_escape(NULL, sep, &last);
89 prof->attr = _strtok_escape(NULL, sep, &last);
H A Dgetuserattr.c73 char *last = NULL; local
95 user->name = _strtok_escape(buffer, sep, &last);
96 user->qualifier = _strtok_escape(NULL, sep, &last);
97 user->res1 = _strtok_escape(NULL, sep, &last);
98 user->res2 = _strtok_escape(NULL, sep, &last);
99 user->attr = _strtok_escape(NULL, sep, &last);
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Ddist.c91 int last;
115 * last holds the integer which goes into out[idx]
122 * with last.
125 * as if beg was 1, then start last as 0. This can lead to a bit
129 b = last = beg;
131 last = 0;
136 out[idx] = last;
141 if (next > last + minbucketsize - 1)
142 last = next;
144 last
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dman_macro.c93 n = man->last;
112 man->last = n;
114 roff_node_delete(man, man->last);
125 * We might delete the man->last node
131 man->last = n;
133 man->last->flags |= MAN_VALID;
143 man->next = (man->last == to) ?
159 n = man->last;
185 n = man->last;
207 for (nn = man->last
[all...]
H A Dman.c62 if (man->last->type != ROFFT_EQN || ln > man->last->line)
81 man_unscope(man, man->last->parent);
86 man_unscope(man, man->last->parent);
87 roff_body_alloc(man, line, offs, man->last->tok);
113 if (man->last->tok != MAN_SH &&
114 man->last->tok != MAN_SS) {
122 * Warn if the last un-escaped character is whitespace. Then
145 * End-of-sentence check. If the last character is an unescaped
152 man->last
[all...]
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_timeout.c97 sip_timeout_t *current, *last; local
99 last = NULL;
113 last->sip_timeout_next =
117 timeout_current_end = last;
129 last = current;
138 last = NULL;
146 last->sip_timeout_next =
160 last = current;
177 sip_timeout_t *last; local
214 last
243 sip_timeout_t *last = NULL; local
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dev_waits.c63 if (wl->last != NULL)
64 wl->last->next = new;
67 wl->last = new;
92 if (ctx->waitDone.last != NULL)
93 ctx->waitDone.last->next = first;
96 ctx->waitDone.last = wl->last;
125 if (wl->last == this)
126 wl->last = prev;
144 if (ctx->waitDone.last
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/lib/picld_pluginutil/
H A Dpicld_pluginutil.c130 * The undo order is from last command to the first command.
217 char *last; local
221 tok = strtok_r(line, WHITESPACE, &last);
226 vertok = strtok_r(last, WHITESPACE, &last);
238 tok = strtok_r(last, WHITESPACE, &last);
265 char *last; local
267 pathtok = strtok_r(line, WHITESPACE, &last);
272 tok = strtok_r(last, WHITESPAC
315 char *last; local
601 char *last; local
768 char *last; local
859 char *last; local
958 char *last = NULL; local
1087 char *last; local
1134 char *last; local
1315 char *last; local
[all...]

Completed in 72 milliseconds

1234567891011>>