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

1234567891011>>

/freebsd-current/sbin/rcorder/
H A Drcorder.c108 provnode *next, *last; member in struct:provnode
131 filenode *next, *last; member in struct:filenode
279 temp->next->last = temp;
280 temp->last = fn_head;
326 head->last = head->next = NULL;
374 pnode->last = head;
377 pnode->next->last = pnode;
561 head->last = head->next = NULL;
569 pnode->last = head;
572 pnode->next->last
[all...]
/freebsd-current/sys/netgraph/netflow/
H A Dnetflow.h98 uint32_t last; /* System uptime at end of a flow */ member in struct:netflow_v1_record
120 uint32_t last; /* System uptime at end of a flow */ member in struct:netflow_v5_record
168 #define NETFLOW_V9_FIELD_LAST_SWITCHED 21 /* sysUptime in msec at which the last packet of this Flow was switched. 4 */
/freebsd-current/usr.sbin/pmcstudy/
H A Deval_expr.c51 /* First one, its last */
54 /* Chain it to the end and update last */
426 struct expression *exp=NULL, *last=NULL, *at; local
471 at = alloc_and_hook_expr(&exp, &last);
474 at = alloc_and_hook_expr(&exp, &last);
483 at = alloc_and_hook_expr(&exp, &last);
486 at = alloc_and_hook_expr(&exp, &last);
489 at = alloc_and_hook_expr(&exp, &last);
492 at = alloc_and_hook_expr(&exp, &last);
496 at = alloc_and_hook_expr(&exp, &last);
[all...]
/freebsd-current/contrib/blocklist/bin/
H A Dblacklistctl.c136 "address", remain ? "remaining time" : "last access");
158 c.c_duration - (ts.tv_sec - dbi.last));
160 fmttime(buf, sizeof(buf), dbi.last);
/freebsd-current/crypto/openssl/Configurations/
H A D15-android.conf30 last if defined $ndk;
48 last;
71 last;
92 last;
/freebsd-current/stand/efi/libefi/
H A Defipart.c509 pdinfo_t *parent, *pd, *last; local
530 last = STAILQ_LAST(&parent->pd_part, pdinfo, pd_link);
531 if (last != NULL)
532 cd->pd_unit = last->pd_unit + 1;
540 last = STAILQ_LAST(&cdinfo, pdinfo, pd_link);
541 if (last != NULL)
542 cd->pd_unit = last->pd_unit + 1;
652 pdinfo_t *last; local
654 last = STAILQ_LAST(&hdinfo, pdinfo, pd_link);
655 if (last !
713 pdinfo_t *parent, *pd, *last; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_bsd.cpp82 char *last = data_.proc_self_maps.data + data_.proc_self_maps.len; local
83 if (data_.current >= last)
/freebsd-current/crypto/heimdal/appl/rcp/
H A Drcp.c285 char *last, *name, buf[BUFSIZ]; local
302 if ((last = strrchr(name, '/')) == NULL)
303 last = name;
305 ++last;
323 last);
365 char *last, *vect[1], path[MAXPATHLEN]; local
371 last = strrchr(name, '/');
372 if (last == 0)
373 last = name;
375 last
[all...]
/freebsd-current/stand/libsa/
H A Dpkgfs.c750 scan_tarfile(struct package *pkg, struct tarfile *last) argument
757 cur = (last != NULL) ? last->tf_next : pkg->pkg_first;
759 ofs = (last != NULL) ? last->tf_ofs + last->tf_size :
770 if (last != NULL && pkg->pkg_ofs == last->tf_ofs) {
771 if (cache_data(last, 0) == -1)
828 if (last !
[all...]
/freebsd-current/sbin/dump/
H A Dtraverse.c77 ino_t ino, int last);
101 * sectors in the last file block; we can safely ignore these
454 int ind_level, cnt, last, added; local
551 last = 0;
554 last = 1;
559 ufs2_blksout(dp, &dp->dp2.di_db[0], cnt, ino, last);
580 int i, cnt, last; local
590 last = 0;
593 last = 1;
599 ufs2_blksout(dp, idblk.ufs2, cnt, ino, last);
653 ufs2_blksout(union dinode *dp, ufs2_daddr_t *blkp, int frags, ino_t ino, int last) argument
766 int i, frags, blks, tbperdb, last; local
[all...]
/freebsd-current/contrib/lib9p/pytest/
H A Dnumalloc.py10 You may pick a value using "next since last time", or "next
40 Traceback (most recent call last):
67 Traceback (most recent call last):
83 Note that r.alloc() starts from where you last left off, even if
134 self.last = None
170 might end up modifying the last block.)
184 # val >= first and val <= last, so we found it
206 val = self.last + 1 if self.last is not None else self.min_val
249 self.last
[all...]
/freebsd-current/contrib/libedit/
H A Dhist.c66 el->el_history.last = el->el_history.buf;
111 (el->el_history.last - el->el_history.buf);
236 el->el_history.last = newbuf +
237 (el->el_history.last - el->el_history.buf);
/freebsd-current/contrib/ncurses/ncurses/
H A Dreport_offsets.c40 last = 0; \
44 if (last > next) \
47 last = next; \
110 unsigned long last, next; local
/freebsd-current/contrib/wpa/src/eap_peer/
H A Deap_methods.c320 struct eap_method *m, *last = NULL; local
335 last = m;
338 if (last)
339 last->next = method;
/freebsd-current/contrib/mandoc/
H A Droff_int.h38 struct roff_node *last; /* The last node parsed. */ member in struct:roff_man
55 #define MDOC_PHRASEQL (1 << 14) /* Quote last word of this phrase. */
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dltablib.c94 int i, last; local
98 last = luaL_opt(L, luaL_checkint, 4, luaL_len(L, 1));
100 for (; i < last; i++) {
104 if (i == last) /* add last value (if interval was not empty) */
/freebsd-current/sys/contrib/zlib/
H A Dinflate.h32 TYPE, /* i: waiting for type bits, including last-flag bit */
85 int last; /* true if processing last block */ member in struct:inflate_state
124 int back; /* bits back of last unprocessed length/lit */
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dminheap-internal.h100 struct event *last = s->p[--s->n]; local
102 /* we replace e with the last element in the heap. We might need to
107 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last))
108 min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, last);
110 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last);
/freebsd-current/contrib/arm-optimized-routines/string/aarch64/
H A Dstrnlen-sve.S37 b.last 0b
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_cbc_hmac_sha1_hw.c137 unsigned int frag, last, packlen, i; local
152 last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
153 if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
155 last -= x4 - 1;
182 unsigned int len = (i == (x4 - 1) ? last : frag);
228 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
258 unsigned int len = (i == (x4 - 1) ? last : frag),
325 unsigned int len = (i == (x4 - 1) ? last
719 unsigned int frag, last, packlen, inp_len; local
[all...]
H A Dcipher_aes_cbc_hmac_sha256_hw.c141 unsigned int frag, last, packlen, i; local
156 last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
157 if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
159 last -= x4 - 1;
187 unsigned int len = (i == (x4 - 1) ? last : frag);
236 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
266 unsigned int len = (i == (x4 - 1) ? last : frag),
345 unsigned int len = (i == (x4 - 1) ? last
772 unsigned int frag, last, packlen, inp_len; local
[all...]
/freebsd-current/usr.sbin/fifolog/lib/
H A Dfifolog_write.h54 time_t last; member in struct:fifolog_writer
/freebsd-current/usr.sbin/pkg/
H A Ddns_utils.c82 compute_weight(struct dns_srvinfo **d, int first, int last) argument
89 for (i = 0; i <= last; i++)
95 chosen = malloc(sizeof(int) * (last - first + 1));
97 for (i = 0; i <= last; i++) {
/freebsd-current/sys/dev/iicbus/controller/opencores/
H A Diicoc.h95 int iicoc_iicbus_read(device_t dev, char *buf, int len, int *read, int last,
/freebsd-current/contrib/libevent/
H A Dminheap-internal.h100 struct event *last = s->p[--s->n]; local
102 /* we replace e with the last element in the heap. We might need to
107 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last))
108 min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, last);
110 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last);

Completed in 279 milliseconds

1234567891011>>