Searched refs:last (Results 201 - 225 of 811) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/netinet/
H A Draw_ip.c225 rip_append(struct inpcb *last, struct ip *ip, struct mbuf *n, argument
230 INP_LOCK_ASSERT(last);
234 if (ipsec4_in_reject(n, last)) {
239 if (!policyfail && mac_inpcb_check_deliver(last, n) != 0)
243 if (last->inp_ip_minttl && last->inp_ip_minttl > ip->ip_ttl)
249 so = last->inp_socket;
250 if ((last->inp_flags & INP_CONTROLOPTS) ||
252 ip_savecontrol(last, &opts, ip, n);
278 struct inpcb *inp, *last; local
[all...]
/freebsd-10.0-release/usr.sbin/iostat/
H A Diostat.c132 struct statinfo cur, last; variable in typeref:struct:
317 last.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
318 if (last.dinfo == NULL)
483 tmp_dinfo = last.dinfo;
484 last.dinfo = cur.dinfo;
487 last.snap_time = cur.snap_time;
570 cur.tk_nin -= last.tk_nin;
571 last.tk_nin = tmp;
573 cur.tk_nout -= last.tk_nout;
574 last
[all...]
/freebsd-10.0-release/usr.sbin/pppctl/
H A Dpppctl.c124 char *last; local
147 last = Buffer+len-1;
149 last = prompt;
150 if (last) {
151 last++;
152 write(STDOUT_FILENO, Buffer, last-Buffer);
156 for (last = Buffer+len-2; last > Buffer && *last != ' '; last
[all...]
/freebsd-10.0-release/sys/arm/versatile/
H A Dsp804.c310 uint32_t first, last; local
335 last = sp804_timer_tc_get_timecount(&sc->tc);
336 if (last == first)
338 if (last>first) {
339 counts -= (int32_t)(last - first);
341 counts -= (int32_t)((0xFFFFFFFF - first) + last);
343 first = last;
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dindex.c81 /// Index of the last Record in use.
82 size_t last; member in struct:__anon4693
92 /// is records[last].unpadded_sum in the last Record group of
174 /// as set by lzma_index_stream_flags(). The bit of the last Stream
314 /// size of the tree (the last node would be returned in that case still).
565 g == NULL ? 0 : g->records[g->last].unpadded_sum,
583 // Get the type of the Check of the last Stream too.
653 : vli_ceil4(g->records[g->last].unpadded_sum);
655 : g->records[g->last]
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dpcy_tree.c268 * issued and not the last in the chain.
313 X509_POLICY_LEVEL *last = curr - 1; local
317 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
319 node = sk_X509_POLICY_NODE_value(last->nodes, i);
320 if (policy_node_match(last, node, data->valid_policy))
327 if (!matched && last->anyPolicy)
329 if (!level_add_node(curr, data, last->anyPolicy, NULL))
407 const X509_POLICY_LEVEL *last = curr - 1; local
410 if ( (last->flags & X509_V_FLAG_INHIBIT_MAP)
449 X509_POLICY_LEVEL *last local
[all...]
/freebsd-10.0-release/tools/tools/net80211/w00t/redir/
H A Dredir.c88 struct timeval last; member in struct:params
160 struct queue *last = NULL; local
172 last = q;
187 assert(last);
188 last->next = q;
251 if (gettimeofday(&p->last, NULL) == -1)
480 struct queue *last = p->q; local
544 while (last) {
545 if (!last->next) {
546 last
[all...]
/freebsd-10.0-release/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c42 char *last; member in struct:dtrace_debug_data
78 d->last = d->bufr + DTRACE_DEBUG_BUFR_SIZE - 1;
79 *(d->last) = '\0';
112 count = (uintptr_t) d->last - (uintptr_t) d->first;
114 for (p = d->first; p < d->last; p++)
129 char *last = dtrace_debug_bufr + count; local
133 while (p < last) {
162 if (d->next == d->last)
170 if (d->first == d->last)
207 * order; return an optional length and a pointer to the last characte
[all...]
/freebsd-10.0-release/usr.bin/csup/
H A Dmisc.c301 const char *last; local
304 last = pathlast(file);
306 xasprintf(&path, "%s/%.*sAttic/%s", prefix, (int)(last - file),
307 file, last);
336 size_t i, last, len; local
340 last = 0;
351 if (last == 0)
356 last = i;
359 if (last == 0)
/freebsd-10.0-release/contrib/openbsm/libbsm/
H A Dbsm_event.c69 char *last; local
71 evno = strtok_r(str, eventdelim, &last);
72 evname = strtok_r(NULL, eventdelim, &last);
73 evdesc = strtok_r(NULL, eventdelim, &last);
74 evclass = strtok_r(NULL, eventdelim, &last);
/freebsd-10.0-release/crypto/openssl/crypto/ocsp/
H A Docsp_cl.c235 int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last) argument
241 if (last < 0) last = 0;
242 else last++;
244 for (i = last; i < sk_OCSP_SINGLERESP_num(sresp); i++)
/freebsd-10.0-release/sys/netinet6/
H A Draw_ip6.c165 struct inpcb *last = 0; local
263 if (last != NULL) {
270 if (n && ipsec6_in_reject(n, last)) {
277 if (last->inp_flags & INP_CONTROLOPTS ||
278 last->inp_socket->so_options & SO_TIMESTAMP)
279 ip6_savecontrol(last, n, &opts);
282 if (sbappendaddr(&last->inp_socket->so_rcv,
290 sorwakeup(last->inp_socket);
293 INP_RUNLOCK(last);
295 last
[all...]
/freebsd-10.0-release/usr.sbin/lpr/chkprintcap/
H A Dchkprintcap.c222 struct dirlist *dp, *dp2, *last; local
236 last = 0;
240 last = dp2;
243 if (last) {
244 LIST_INSERT_AFTER(last, dp, link);
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dtext.c47 char *str, *str2, *last; local
56 str2 = strtok_r(str, sep, &last);
59 str2 = strtok_r(NULL, sep, &last);
/freebsd-10.0-release/contrib/dialog/
H A Dmsgbox.c48 int x, y, last = 0, page; local
113 last = dlg_print_scrolled(dialog, prompt, offset,
164 last,
/freebsd-10.0-release/contrib/gcc/
H A Dipa-utils.c131 struct cgraph_node *last = NULL;
141 x_info->next_cycle = last;
142 last = x;
130 struct cgraph_node *last = NULL; local
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dblame.c180 struct blame *last = blame_find(chain->blame, start + length); local
181 struct blame *tail = last->next;
183 if (first != last)
186 while (walk != last)
192 first->next = last;
193 last->start = start;
196 *first = *last;
197 blame_destroy(chain, last);
198 last = first;
202 if (tail && tail->start == last
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dacl.c43 struct acl_field *next, **last; member in struct:acl_field
111 *acl->last = tmp;
112 acl->last = &tmp->next;
167 * argument (the last argument) passed to the fnmatch function is 0.
/freebsd-10.0-release/sys/fs/fdescfs/
H A Dfdesc_vfsops.c185 int last; local
205 last = min(fdp->fd_nfiles, lim);
207 for (i = fdp->fd_freefile; i < last; i++)
/freebsd-10.0-release/sys/netinet/libalias/
H A Dalias_proxy.c111 struct proxy_entry *last; member in struct:proxy_entry
216 entry->last = NULL;
228 entry->last = NULL;
229 la->proxyList->last = entry;
234 ptr->last = entry;
235 entry->last = ptr->last;
244 entry->last = ptr_last;
255 if (entry->last != NULL)
256 entry->last
[all...]
/freebsd-10.0-release/usr.sbin/bluetooth/bthidd/
H A Dbthidd.c222 static struct timeval last = { 0, 0 }; local
227 if (now.tv_sec - last.tv_sec >= tval) {
228 last = now;
/freebsd-10.0-release/usr.sbin/fifolog/lib/
H A Dfifolog_int.c212 * Find the last written record in the fifolog.
218 fifolog_int_findend(const struct fifolog_file *ff, off_t *last) argument
235 *last = o;
254 *last = o;
/freebsd-10.0-release/usr.sbin/ppp/
H A Dhdlc.c144 struct mbuf *last; local
152 for (last = bp; last->m_next; last = last->m_next)
155 if (last->m_size - last->m_offset - last->m_len >= 2) {
156 cp = MBUF_CTOP(last) + last
[all...]
/freebsd-10.0-release/contrib/serf/buckets/
H A Daggregate_buckets.c28 bucket_list_t *last; /* last bucket of the list */ member in struct:__anon4129
74 ctx->last = NULL;
173 ctx->last = new_list;
176 ctx->last->next = new_list;
177 ctx->last = ctx->last->next;
/freebsd-10.0-release/lib/libz/
H A Dinflate.c46 * - Unroll last copy for window match in inflate_fast()
116 state->last = 0;
366 Update the window with the last wsize (normally 32K) bytes written before
374 advantage, since only the last 32K of output is copied to the sliding window
589 When there is a window, goto inf_leave will update the window with the last
619 code last; /* parent table entry */ local
829 if (state->last) {
835 state->last = BITS(1);
840 state->last ? " (last)"
[all...]

Completed in 328 milliseconds

1234567891011>>