bin/mkdir/mkdir.c
131
int first, last, retval;
bin/mkdir/mkdir.c
139
for (first = 1, last = 0; !last ; ++p) {
bin/mkdir/mkdir.c
141
last = 1;
bin/mkdir/mkdir.c
145
if (!last && p[1] == '\0')
bin/mkdir/mkdir.c
146
last = 1;
bin/mkdir/mkdir.c
165
if (last)
bin/mkdir/mkdir.c
167
if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
bin/mkdir/mkdir.c
174
if (last)
bin/mkdir/mkdir.c
182
if (last)
bin/mkdir/mkdir.c
191
if (!last)
bin/mkdir/mkdir.c
194
if (!first && !last)
bin/pax/cpio.c
153
ARCHD last;
bin/pax/cpio.c
158
memset(&last, 0, sizeof(last));
bin/pax/cpio.c
159
last.nlen = sizeof(TRAILER) - 1;
bin/pax/cpio.c
160
last.type = PAX_REG;
bin/pax/cpio.c
161
last.sb.st_nlink = 1;
bin/pax/cpio.c
162
(void)strcpy(last.name, TRAILER);
bin/pax/cpio.c
163
return((*frmt->wr)(&last));
bin/sh/histedit.c
259
int first, last, direction;
bin/sh/histedit.c
364
last = str_to_event(laststr, 1);
bin/sh/histedit.c
367
i = last;
bin/sh/histedit.c
368
last = first;
bin/sh/histedit.c
376
direction = first < last ? H_PREV : H_NEXT;
bin/sh/histedit.c
441
if (he.num == last)
bin/sh/histedit.c
496
str_to_event(const char *str, int last)
bin/sh/histedit.c
526
retval = history(hist, &he, last ? H_FIRST : H_LAST);
crypto/heimdal/appl/ftp/ftpd/ls.c
423
char *dir, *last;
crypto/heimdal/appl/ftp/ftpd/ls.c
441
last = strrchr (path_bkp, '/');
crypto/heimdal/appl/ftp/ftpd/ls.c
442
if (last != NULL) {
crypto/heimdal/appl/ftp/ftpd/ls.c
443
if(last[1] == '\0')
crypto/heimdal/appl/ftp/ftpd/ls.c
447
a_params.in = last + 1;
crypto/heimdal/appl/ftp/ftpd/ls.c
448
while(last > path_bkp && *--last == '/');
crypto/heimdal/appl/ftp/ftpd/ls.c
449
if(*last != '/' || last != path_bkp) {
crypto/heimdal/appl/ftp/ftpd/ls.c
450
*++last = '\0';
crypto/heimdal/appl/login/limits_conf.c
117
char *last = NULL;
crypto/heimdal/appl/login/limits_conf.c
143
if((args[0] = strtok_r(buf, " \t", &last)) == NULL ||
crypto/heimdal/appl/login/limits_conf.c
144
(args[1] = strtok_r(NULL, " \t", &last)) == NULL ||
crypto/heimdal/appl/login/limits_conf.c
145
(args[2] = strtok_r(NULL, " \t", &last)) == NULL ||
crypto/heimdal/appl/login/limits_conf.c
146
(args[3] = strtok_r(NULL, " \t", &last)) == NULL) {
crypto/heimdal/appl/rcp/rcp.c
285
char *last, *name, buf[BUFSIZ];
crypto/heimdal/appl/rcp/rcp.c
302
if ((last = strrchr(name, '/')) == NULL)
crypto/heimdal/appl/rcp/rcp.c
303
last = name;
crypto/heimdal/appl/rcp/rcp.c
305
++last;
crypto/heimdal/appl/rcp/rcp.c
323
last);
crypto/heimdal/appl/rcp/rcp.c
365
char *last, *vect[1], path[MAXPATHLEN];
crypto/heimdal/appl/rcp/rcp.c
371
last = strrchr(name, '/');
crypto/heimdal/appl/rcp/rcp.c
372
if (last == 0)
crypto/heimdal/appl/rcp/rcp.c
373
last = name;
crypto/heimdal/appl/rcp/rcp.c
375
last++;
crypto/heimdal/appl/rcp/rcp.c
388
(unsigned int)(statp->st_mode & MODEMASK), 0, last);
crypto/heimdal/appl/rsh/limits_conf.c
117
char *last = NULL;
crypto/heimdal/appl/rsh/limits_conf.c
143
if((args[0] = strtok_r(buf, " \t", &last)) == NULL ||
crypto/heimdal/appl/rsh/limits_conf.c
144
(args[1] = strtok_r(NULL, " \t", &last)) == NULL ||
crypto/heimdal/appl/rsh/limits_conf.c
145
(args[2] = strtok_r(NULL, " \t", &last)) == NULL ||
crypto/heimdal/appl/rsh/limits_conf.c
146
(args[3] = strtok_r(NULL, " \t", &last)) == NULL) {
crypto/heimdal/appl/telnet/telnetd/state.c
1058
int last = -1; /* invalid value */
crypto/heimdal/appl/telnet/telnetd/state.c
1080
if (last < 0 || last == OLD_ENV_VAR
crypto/heimdal/appl/telnet/telnetd/state.c
1081
|| (empty && (last == OLD_ENV_VALUE)))
crypto/heimdal/appl/telnet/telnetd/state.c
1084
last = OLD_ENV_VAR;
crypto/heimdal/appl/telnet/telnetd/state.c
1087
if (last < 0 || last == OLD_ENV_VALUE
crypto/heimdal/appl/telnet/telnetd/state.c
1088
|| (empty && (last == OLD_ENV_VAR)))
crypto/heimdal/appl/telnet/telnetd/state.c
1091
last = OLD_ENV_VALUE;
crypto/heimdal/appl/telnet/telnetd/state.c
1095
if (last != ENV_USERVAR)
crypto/heimdal/appl/telnet/telnetd/state.c
1098
if (last == OLD_ENV_VALUE)
crypto/heimdal/appl/telnet/telnetd/state.c
1100
if (last == OLD_ENV_VAR)
crypto/heimdal/appl/telnet/telnetd/state.c
1103
last = ENV_USERVAR;
crypto/heimdal/appl/telnet/telnetd/state.c
1116
if (last == OLD_ENV_VALUE)
crypto/heimdal/appl/telnet/telnetd/state.c
1118
if (last == OLD_ENV_VAR)
crypto/heimdal/appl/telnet/telnetd/telnetd.c
618
char first[256], last[256];
crypto/heimdal/appl/telnet/telnetd/telnetd.c
633
strlcpy(last, terminaltype, sizeof(last));
crypto/heimdal/appl/telnet/telnetd/telnetd.c
637
if ((strncmp(last, terminaltype, sizeof(last)) == 0) ||
crypto/heimdal/lib/asn1/gen_template.c
314
int last = (ASN1_TAILQ_LAST(&tl->template, templatehead) == q);
crypto/heimdal/lib/asn1/gen_template.c
315
fprintf(f, "/* %lu */ %s%s\n", (unsigned long)i++, q->line, last ? "" : ",");
crypto/heimdal/lib/asn1/gen_template.c
582
int last = (ASN1_TAILQ_LAST(&template, templatehead) == q);
crypto/heimdal/lib/asn1/gen_template.c
583
fprintf(f, "/* %lu */ %s%s\n", (unsigned long)i++, q->line, last ? "" : ",");
crypto/heimdal/lib/asn1/gen_template.c
755
int last = (ASN1_TAILQ_LAST(&template, templatehead) == q);
crypto/heimdal/lib/asn1/gen_template.c
756
fprintf(f, "/* %lu */ %s%s\n", (unsigned long)i++, q->line, last ? "" : ",");
crypto/heimdal/lib/hx509/name.c
593
int last;
crypto/heimdal/lib/hx509/name.c
598
last = 1;
crypto/heimdal/lib/hx509/name.c
601
last = 0;
crypto/heimdal/lib/hx509/name.c
652
p += len + last;
crypto/heimdal/lib/krb5/acl.c
111
*acl->last = tmp;
crypto/heimdal/lib/krb5/acl.c
112
acl->last = &tmp->next;
crypto/heimdal/lib/krb5/acl.c
43
struct acl_field *next, **last;
crypto/heimdal/lib/wind/test-normalize.c
100
if (strtok_r(NULL, ";", &last) == NULL)
crypto/heimdal/lib/wind/test-normalize.c
102
if (strtok_r(NULL, ";", &last) == NULL)
crypto/heimdal/lib/wind/test-normalize.c
104
c = strtok_r(NULL, ";", &last);
crypto/heimdal/lib/wind/test-normalize.c
108
if (strtok_r(NULL, ";", &last) == NULL)
crypto/heimdal/lib/wind/test-normalize.c
110
c = last;
crypto/heimdal/lib/wind/test-normalize.c
50
char *last;
crypto/heimdal/lib/wind/test-normalize.c
55
for(n = strtok_r(buf, " ", &last);
crypto/heimdal/lib/wind/test-normalize.c
57
n = strtok_r(NULL, " ", &last)) {
crypto/heimdal/lib/wind/test-normalize.c
85
char *last;
crypto/heimdal/lib/wind/test-normalize.c
95
c = strtok_r(buf, ";", &last);
crypto/krb5/src/include/kdb_log.h
59
krb5_error_code ulog_get_entries(krb5_context context, const kdb_last_t *last,
crypto/krb5/src/include/kdb_log.h
70
const kdb_last_t *last);
crypto/krb5/src/include/kdb_log.h
72
krb5_error_code ulog_set_last(krb5_context context, const kdb_last_t *last);
crypto/krb5/src/kadmin/dbutil/dump.c
1070
parse_iprop_header(char *buf, dump_version **dv, kdb_last_t *last)
crypto/krb5/src/kadmin/dbutil/dump.c
1103
last->last_sno = *up++;
crypto/krb5/src/kadmin/dbutil/dump.c
1104
last->last_time.seconds = *up++;
crypto/krb5/src/kadmin/dbutil/dump.c
1105
last->last_time.useconds = *up++;
crypto/krb5/src/kadmin/dbutil/dump.c
1116
kdb_last_t last;
crypto/krb5/src/kadmin/dbutil/dump.c
1129
if (!parse_iprop_header(buf, &junk, &last))
crypto/krb5/src/kadmin/dbutil/dump.c
1132
status = ulog_get_sno_status(context, &last);
crypto/krb5/src/kadmin/dbutil/dump.c
1150
kdb_last_t last;
crypto/krb5/src/kadmin/dbutil/dump.c
1319
ret = ulog_get_last(util_context, &last);
crypto/krb5/src/kadmin/dbutil/dump.c
1326
fprintf(f, " %u", last.last_sno);
crypto/krb5/src/kadmin/dbutil/dump.c
1327
fprintf(f, " %u", last.last_time.seconds);
crypto/krb5/src/kadmin/dbutil/dump.c
1328
fprintf(f, " %u", last.last_time.useconds);
crypto/krb5/src/kadmin/dbutil/dump.c
1390
kdb_last_t last;
crypto/krb5/src/kadmin/dbutil/dump.c
1535
if (!parse_iprop_header(buf, &load, &last))
crypto/krb5/src/kadmin/dbutil/dump.c
1580
ret = ulog_set_last(util_context, &last);
crypto/krb5/src/kadmin/dbutil/strtok.c
58
static char *last;
crypto/krb5/src/kadmin/dbutil/strtok.c
61
if (s == NULL && (s = last) == NULL)
crypto/krb5/src/kadmin/dbutil/strtok.c
76
last = NULL;
crypto/krb5/src/kadmin/dbutil/strtok.c
97
last = s;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
144
krb5_kt_list lp, *last;
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
246
for (last = list; *last != NULL; last = &(*last)->next);
crypto/krb5/src/kadmin/ktutil/ktutil_funcs.c
247
*last = lp;
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
460
load_if_changed(const char *pathname, time_t last, time_t *highest)
crypto/krb5/src/lib/gssapi/mechglue/g_initialize.c
469
if (mtime > last || last == (time_t)-1)
crypto/krb5/src/lib/kdb/kdb_log.c
142
get_sno_status(kdb_log_context *log_ctx, const kdb_last_t *last)
crypto/krb5/src/lib/kdb/kdb_log.c
148
if (last->last_sno == ulog->kdb_last_sno &&
crypto/krb5/src/lib/kdb/kdb_log.c
149
time_equal(&last->last_time, &ulog->kdb_last_time))
crypto/krb5/src/lib/kdb/kdb_log.c
154
if (ulog->kdb_num == 0 || last->last_sno > ulog->kdb_last_sno ||
crypto/krb5/src/lib/kdb/kdb_log.c
155
last->last_sno < ulog->kdb_first_sno)
crypto/krb5/src/lib/kdb/kdb_log.c
160
if (!check_sno(log_ctx, last->last_sno, &last->last_time))
crypto/krb5/src/lib/kdb/kdb_log.c
581
ulog_get_entries(krb5_context context, const kdb_last_t *last,
crypto/krb5/src/lib/kdb/kdb_log.c
606
ulog_handle->ret = get_sno_status(log_ctx, last);
crypto/krb5/src/lib/kdb/kdb_log.c
610
sno = last->last_sno;
crypto/krb5/src/lib/kdb/kdb_log.c
661
ulog_get_sno_status(krb5_context context, const kdb_last_t *last)
crypto/krb5/src/lib/kdb/kdb_log.c
667
status = get_sno_status(context->kdblog_context, last);
crypto/krb5/src/lib/kdb/kdb_log.c
690
ulog_set_last(krb5_context context, const kdb_last_t *last)
crypto/krb5/src/lib/kdb/kdb_log.c
701
set_dummy(log_ctx, last->last_sno, &last->last_time);
crypto/krb5/src/lib/krb5/krb/chk_trans.c
138
maybe_join (krb5_data *last, krb5_data *buf, unsigned int bufsiz)
crypto/krb5/src/lib/krb5/krb/chk_trans.c
143
if (last->length + buf->length > bufsiz) {
crypto/krb5/src/lib/krb5/krb/chk_trans.c
144
Tprintf (("too big: last=%d cur=%d max=%d\n", last->length, buf->length, bufsiz));
crypto/krb5/src/lib/krb5/krb/chk_trans.c
147
memmove (buf->data+last->length, buf->data, buf->length);
crypto/krb5/src/lib/krb5/krb/chk_trans.c
148
memcpy (buf->data, last->data, last->length);
crypto/krb5/src/lib/krb5/krb/chk_trans.c
149
buf->length += last->length;
crypto/krb5/src/lib/krb5/krb/chk_trans.c
154
if (last->length+buf->length > bufsiz) {
crypto/krb5/src/lib/krb5/krb/chk_trans.c
158
memcpy (buf->data + buf->length, last->data, last->length);
crypto/krb5/src/lib/krb5/krb/chk_trans.c
159
buf->length += last->length;
crypto/krb5/src/lib/krb5/krb/chk_trans.c
174
char buf[MAXLEN], last[MAXLEN];
crypto/krb5/src/lib/krb5/krb/chk_trans.c
193
last_component.data = last;
crypto/krb5/src/lib/krb5/krb/chk_trans.c
236
memcpy (last, buf, sizeof (buf));
crypto/krb5/src/lib/krb5/krb/chk_trans.c
246
memcpy (last, crealm->data, crealm->length);
crypto/krb5/src/lib/krb5/krb/chk_trans.c
247
last[crealm->length] = '\0';
crypto/krb5/src/lib/krb5/krb/chk_trans.c
254
memset (last, 0, sizeof (last));
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
626
krb5_ui_4 ch, last, lindex, sindex;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
628
last = str[0];
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
634
lindex = last - LBase;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
639
last = SBase + (lindex * VCount + vindex) * TCount;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
640
str[rlen-1] = last; /* reset last */
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
646
sindex = last - SBase;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
653
last += tindex;
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
654
str[rlen-1] = last; /* reset last */
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.c
660
last = ch;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
136
PAGE *h, *last;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
147
for (last = NULL, p = dbt->data, sz = dbt->size;;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
148
p = (char *)p + plen, last = h) {
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
160
if (last) {
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
161
last->nextpg = h->pgno;
crypto/krb5/src/plugins/kdb/db2/libdb2/btree/bt_overflow.c
162
mpool_put(t->bt_mp, last, MPOOL_DIRTY);
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1273
static int last;
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1280
for (i = 0; i < last; i++)
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1284
if (i == last) {
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1285
list[last].times = inout;
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1286
list[last].pgno = pgno;
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1287
last++;
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1291
for (j = i; j < last; j++)
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1293
last--;
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/hash_page.c
1295
for (i = 0; i < last; i++, list[i].times++)
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
111
void last __P((DB *, char **));
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
153
"la", 0, 0, last, "last", "move cursor to last record",
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
260
int argc, i, last;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
268
for (last = 0;;) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
280
i = last;
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
313
uselast: last = i;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
536
int i, j, last;
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
562
for (i = 0, last = 0, j = 0; i < n_key_data; i++) {
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
564
err = encode_keys(key_data + last, (krb5_int16)i - last + 1, mkvno,
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
569
last = i + 1;
crypto/krb5/src/util/profile/prof_init.c
170
prf_file_t new_file, last = 0;
crypto/krb5/src/util/profile/prof_init.c
188
modspec_arg = ((flags & PROFILE_INIT_ALLOW_MODULE) && !last) ?
crypto/krb5/src/util/profile/prof_init.c
211
if (last)
crypto/krb5/src/util/profile/prof_init.c
212
last->next = new_file;
crypto/krb5/src/util/profile/prof_init.c
215
last = new_file;
crypto/krb5/src/util/profile/prof_init.c
221
if (!last) {
crypto/krb5/src/util/profile/prof_tree.c
119
struct profile_node *node = NULL, *p, *q, **nextp, *last;
crypto/krb5/src/util/profile/prof_tree.c
139
last = NULL;
crypto/krb5/src/util/profile/prof_tree.c
147
q->prev = last;
crypto/krb5/src/util/profile/prof_tree.c
148
last = q;
crypto/krb5/src/util/profile/prof_tree.c
167
struct profile_node *p, *last;
crypto/krb5/src/util/profile/prof_tree.c
175
last = 0;
crypto/krb5/src/util/profile/prof_tree.c
176
for (p = node->first_child; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
177
if (p->prev != last)
crypto/krb5/src/util/profile/prof_tree.c
179
if (last && (last->next != p))
crypto/krb5/src/util/profile/prof_tree.c
201
struct profile_node *p, *last, *new;
crypto/krb5/src/util/profile/prof_tree.c
214
for (p=section->first_child, last = 0; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
239
new->prev = last;
crypto/krb5/src/util/profile/prof_tree.c
243
if (last)
crypto/krb5/src/util/profile/prof_tree.c
244
last->next = new;
crypto/krb5/src/util/profile/prof_tree.c
705
struct profile_node *p, *last;
crypto/krb5/src/util/profile/prof_tree.c
724
for (p=node->parent->first_child, last = 0; p; last = p, p = p->next) {
crypto/krb5/src/util/profile/prof_tree.c
732
if ((p != node) && (last != node)) {
crypto/krb5/src/util/profile/prof_tree.c
748
if (last)
crypto/krb5/src/util/profile/prof_tree.c
749
last->next = node;
crypto/krb5/src/util/profile/prof_tree.c
753
node->prev = last;
crypto/krb5/src/util/support/hashtab.c
85
uint8_t last[8] = { 0 };
crypto/krb5/src/util/support/hashtab.c
97
memcpy(last, end, len % 8);
crypto/krb5/src/util/support/hashtab.c
98
last[7] = len & 0xFF;
crypto/krb5/src/util/support/hashtab.c
99
mi = load_64_le(last);
crypto/openssh/krl.c
576
u_int64_t i, contig, gap, last = 0, bitmap_start = 0;
crypto/openssh/krl.c
613
state == 0 ? 0 : rs->lo - last, gap, &force_new_sect);
crypto/openssh/krl.c
690
last = rs->hi;
crypto/openssh/libcrux_mlkem768_sha3.h
2278
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2279
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2286
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2477
size_t last = outlen - outlen % (size_t)72U;
crypto/openssh/libcrux_mlkem768_sha3.h
2509
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
2636
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2637
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2644
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2836
size_t last = outlen - outlen % (size_t)136U;
crypto/openssh/libcrux_mlkem768_sha3.h
2868
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
2907
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
2908
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2915
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
2964
size_t last = outlen - outlen % (size_t)136U;
crypto/openssh/libcrux_mlkem768_sha3.h
2996
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
3100
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3101
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3108
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3371
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3372
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3379
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3571
size_t last = outlen - outlen % (size_t)144U;
crypto/openssh/libcrux_mlkem768_sha3.h
3603
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
3730
libcrux_sha3_generic_keccak_KeccakState_48 *s, Eurydice_slice last[1U]) {
crypto/openssh/libcrux_mlkem768_sha3.h
3731
size_t last_len = Eurydice_slice_len(last[0U], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3738
Eurydice_slice_copy(uu____0, last[i0], uint8_t);
crypto/openssh/libcrux_mlkem768_sha3.h
3930
size_t last = outlen - outlen % (size_t)104U;
crypto/openssh/libcrux_mlkem768_sha3.h
3962
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
4226
size_t last = outlen - outlen % (size_t)168U;
crypto/openssh/libcrux_mlkem768_sha3.h
4258
if (last < outlen) {
crypto/openssh/libcrux_mlkem768_sha3.h
5509
size_t last = out_len - out_len % (size_t)136U;
crypto/openssh/libcrux_mlkem768_sha3.h
5546
if (last < out_len) {
crypto/openssh/libcrux_mlkem768_sha3.h
5628
size_t last = out_len - out_len % (size_t)168U;
crypto/openssh/libcrux_mlkem768_sha3.h
5665
if (last < out_len) {
crypto/openssh/loginrec.c
1589
struct lastlog last;
crypto/openssh/loginrec.c
1595
memset(&last, '\0', sizeof(last));
crypto/openssh/loginrec.c
1596
line_stripname(last.ll_line, li->line, sizeof(last.ll_line));
crypto/openssh/loginrec.c
1597
strlcpy(last.ll_host, li->hostname,
crypto/openssh/loginrec.c
1598
MIN_SIZEOF(last.ll_host, li->hostname));
crypto/openssh/loginrec.c
1599
last.ll_time = li->tv_sec;
crypto/openssh/loginrec.c
1605
if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
crypto/openssh/loginrec.c
1642
struct lastlog last;
crypto/openssh/loginrec.c
1648
ret = atomicio(read, fd, &last, sizeof(last));
crypto/openssh/loginrec.c
1653
memset(&last, '\0', sizeof(last));
crypto/openssh/loginrec.c
1655
case sizeof(last):
crypto/openssh/loginrec.c
1656
line_fullname(li->line, last.ll_line, sizeof(li->line));
crypto/openssh/loginrec.c
1657
strlcpy(li->hostname, last.ll_host,
crypto/openssh/loginrec.c
1658
MIN_SIZEOF(li->hostname, last.ll_host));
crypto/openssh/loginrec.c
1659
li->tv_sec = last.ll_time;
crypto/openssh/loginrec.c
1667
__func__, LASTLOG_FILE, (int)sizeof(last), ret);
crypto/openssh/misc.c
2402
u_char c, last = '\0';
crypto/openssh/misc.c
2419
if (last == '.' && c == '.') {
crypto/openssh/misc.c
2430
last = c;
crypto/openssh/scp.c
1400
char *last, *name, buf[PATH_MAX + 128], encname[PATH_MAX];
crypto/openssh/scp.c
1437
if ((last = strrchr(name, '/')) == NULL)
crypto/openssh/scp.c
1438
last = name;
crypto/openssh/scp.c
1440
++last;
crypto/openssh/scp.c
1441
curfile = last;
crypto/openssh/scp.c
1449
(long long)stb.st_size, last);
crypto/openssh/scp.c
1508
char *last, *vect[1], path[PATH_MAX];
crypto/openssh/scp.c
1514
last = strrchr(name, '/');
crypto/openssh/scp.c
1515
if (last == NULL)
crypto/openssh/scp.c
1516
last = name;
crypto/openssh/scp.c
1518
last++;
crypto/openssh/scp.c
1526
(u_int) (statp->st_mode & FILEMODEMASK), 0, last);
crypto/openssh/ssh-agent.c
220
int last = 0;
crypto/openssh/ssh-agent.c
225
last = 1;
crypto/openssh/ssh-agent.c
239
if (last)
crypto/openssh/sshconnect2.c
123
char *oavail = NULL, *avail = NULL, *first = NULL, *last = NULL;
crypto/openssh/sshconnect2.c
167
last = xmalloc(maxlen);
crypto/openssh/sshconnect2.c
168
*first = *last = '\0';
crypto/openssh/sshconnect2.c
197
ALG_APPEND(last, alg);
crypto/openssh/sshconnect2.c
201
(*first == '\0' || *last == '\0') ? "" : ",", last);
crypto/openssh/sshconnect2.c
209
free(last);
crypto/openssh/sshkey.c
2971
u_char last;
crypto/openssh/sshkey.c
3002
last = *cp;
crypto/openssh/sshkey.c
3005
if (last == '\n') {
crypto/openssl/apps/ca.c
1506
int ok = -1, i, j, last, nid;
crypto/openssl/apps/ca.c
1599
last = -1;
crypto/openssl/apps/ca.c
1604
j = X509_NAME_get_index_by_OBJ(name, obj, last);
crypto/openssl/apps/ca.c
1606
if (last != -1)
crypto/openssl/apps/ca.c
1612
last = j;
crypto/openssl/apps/lib/app_rand.c
43
int last, ret = 1;
crypto/openssl/apps/lib/app_rand.c
46
last = 0;
crypto/openssl/apps/lib/app_rand.c
50
last = 1;
crypto/openssl/apps/lib/app_rand.c
57
if (last)
crypto/openssl/crypto/bio/bio_lib.c
782
BIO *b, *last;
crypto/openssl/crypto/bio/bio_lib.c
784
b = last = bio;
crypto/openssl/crypto/bio/bio_lib.c
788
last = b;
crypto/openssl/crypto/bio/bio_lib.c
794
*reason = last->retry_reason;
crypto/openssl/crypto/bio/bio_lib.c
795
return last;
crypto/openssl/crypto/cmp/cmp_asn.c
691
const ASN1_TIME *last = crl == NULL ? NULL : X509_CRL_get0_lastUpdate(crl);
crypto/openssl/crypto/cmp/cmp_asn.c
746
status = OSSL_CMP_CRLSTATUS_new1(dpn, CRLissuer, last);
crypto/openssl/crypto/dso/dso_win32.c
209
char last;
crypto/openssl/crypto/dso/dso_win32.c
231
last = filename[0];
crypto/openssl/crypto/dso/dso_win32.c
232
switch (last) {
crypto/openssl/crypto/dso/dso_win32.c
286
} while (last);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
173
unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = 0;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
187
last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
188
if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
190
last -= x4 - 1;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
217
unsigned int len = (i == (x4 - 1) ? last : frag);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
263
minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
293
unsigned int len = (i == (x4 - 1) ? last : frag),
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
360
unsigned int len = (i == (x4 - 1) ? last : frag), pad, j;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
839
unsigned int frag, last, packlen, inp_len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
868
last = inp_len + frag - (frag << n4x);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
869
if (last > frag && ((last + 13 + 9) % 64 < (x4 - 1))) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
871
last -= x4 - 1;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
876
packlen += 5 + 16 + ((last + 20 + 16) & -16);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
167
unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = 0;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
182
last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
183
if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
185
last -= x4 - 1;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
212
unsigned int len = (i == (x4 - 1) ? last : frag);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
261
minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
291
unsigned int len = (i == (x4 - 1) ? last : frag),
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
370
unsigned int len = (i == (x4 - 1) ? last : frag), pad, j;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
812
unsigned int frag, last, packlen, inp_len;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
844
last = inp_len + frag - (frag << n4x);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
845
if (last > frag && ((last + 13 + 9) % 64 < (x4 - 1))) {
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
847
last -= x4 - 1;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
852
packlen += 5 + 16 + ((last + 32 + 16) & -16);
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
878
int last = -1;
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
886
if (last >= 0 && byte <= last)
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
888
last = byte;
crypto/openssl/crypto/ocsp/ocsp_cl.c
222
int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last)
crypto/openssl/crypto/ocsp/ocsp_cl.c
230
if (last < 0)
crypto/openssl/crypto/ocsp/ocsp_cl.c
231
last = 0;
crypto/openssl/crypto/ocsp/ocsp_cl.c
233
last++;
crypto/openssl/crypto/ocsp/ocsp_cl.c
235
for (i = last; i < sk_OCSP_SINGLERESP_num(sresp); i++) {
crypto/openssl/crypto/param_build.c
454
OSSL_PARAM *params, *last;
crypto/openssl/crypto/param_build.c
481
last = param_bld_convert(bld, params, blk, s);
crypto/openssl/crypto/param_build.c
482
ossl_param_set_secure_block(last, s, ss);
crypto/openssl/crypto/params_dup.c
102
OSSL_PARAM *last, *dst;
crypto/openssl/crypto/params_dup.c
131
last = ossl_param_dup(src, dst, buf, NULL);
crypto/openssl/crypto/params_dup.c
133
ossl_param_set_secure_block(last, buf[OSSL_PARAM_BUF_SECURE].alloc,
crypto/openssl/crypto/params_dup.c
47
void ossl_param_set_secure_block(OSSL_PARAM *last, void *secure_buffer,
crypto/openssl/crypto/params_dup.c
50
last->key = NULL;
crypto/openssl/crypto/params_dup.c
51
last->data_size = secure_buffer_sz;
crypto/openssl/crypto/params_dup.c
52
last->data = secure_buffer;
crypto/openssl/crypto/params_dup.c
53
last->data_type = OSSL_PARAM_ALLOCATED_END;
crypto/openssl/crypto/x509/pcy_tree.c
264
X509_POLICY_LEVEL *last = curr - 1;
crypto/openssl/crypto/x509/pcy_tree.c
268
for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++) {
crypto/openssl/crypto/x509/pcy_tree.c
269
X509_POLICY_NODE *node = sk_X509_POLICY_NODE_value(last->nodes, i);
crypto/openssl/crypto/x509/pcy_tree.c
271
if (ossl_policy_node_match(last, node, data->valid_policy)) {
crypto/openssl/crypto/x509/pcy_tree.c
277
if (!matched && last->anyPolicy) {
crypto/openssl/crypto/x509/pcy_tree.c
278
if (ossl_policy_level_add_node(curr, data, last->anyPolicy, tree, 0) == NULL)
crypto/openssl/crypto/x509/pcy_tree.c
345
const X509_POLICY_LEVEL *last = curr - 1;
crypto/openssl/crypto/x509/pcy_tree.c
348
if ((last->flags & X509_V_FLAG_INHIBIT_MAP)
crypto/openssl/crypto/x509/pcy_tree.c
382
X509_POLICY_LEVEL *last = curr - 1;
crypto/openssl/crypto/x509/pcy_tree.c
384
for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++) {
crypto/openssl/crypto/x509/pcy_tree.c
385
node = sk_X509_POLICY_NODE_value(last->nodes, i);
crypto/openssl/crypto/x509/pcy_tree.c
391
if (last->anyPolicy && ossl_policy_level_add_node(curr, cache->anyPolicy, last->anyPolicy, tree, 0) == NULL)
crypto/openssl/crypto/x509/x509_vfy.c
1043
int i = 0, last = 0, ok = 0;
crypto/openssl/crypto/x509/x509_vfy.c
1048
last = sk_X509_num(ctx->chain) - 1;
crypto/openssl/crypto/x509/x509_vfy.c
1053
last = 0;
crypto/openssl/crypto/x509/x509_vfy.c
1055
for (i = 0; i <= last; i++) {
crypto/openssl/crypto/x509/x509_vfy.c
695
* this means not last cert in chain,
crypto/openssl/include/internal/param_build_set.h
25
void ossl_param_set_secure_block(OSSL_PARAM *last, void *secure_buffer,
crypto/openssl/include/openssl/ocsp.h
345
int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
137
unsigned int frag, last, packlen, i;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
152
last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
153
if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
155
last -= x4 - 1;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
182
unsigned int len = (i == (x4 - 1) ? last : frag);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
228
minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
258
unsigned int len = (i == (x4 - 1) ? last : frag),
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
325
unsigned int len = (i == (x4 - 1) ? last : frag), pad, j;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
713
unsigned int frag, last, packlen, inp_len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
740
last = inp_len + frag - (frag << n4x);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
741
if (last > frag && ((last + 13 + 9) % 64 < (x4 - 1))) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
743
last -= x4 - 1;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
748
packlen += 5 + 16 + ((last + 20 + 16) & -16);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
141
unsigned int frag, last, packlen, i;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
156
last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
157
if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
159
last -= x4 - 1;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
187
unsigned int len = (i == (x4 - 1) ? last : frag);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
236
minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
266
unsigned int len = (i == (x4 - 1) ? last : frag),
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
345
unsigned int len = (i == (x4 - 1) ? last : frag), pad, j;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
765
unsigned int frag, last, packlen, inp_len;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
791
last = inp_len + frag - (frag << n4x);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
792
if (last > frag && ((last + 13 + 9) % 64 < (x4 - 1))) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
794
last -= x4 - 1;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
799
packlen += 5 + 16 + ((last + 32 + 16) & -16);
crypto/openssl/ssl/ssl_ciph.c
772
CIPHER_ORDER *head, *tail, *curr, *next, *last;
crypto/openssl/ssl/ssl_ciph.c
794
last = head;
crypto/openssl/ssl/ssl_ciph.c
797
last = tail;
crypto/openssl/ssl/ssl_ciph.c
802
if (curr == last)
crypto/openssl/test/conf_include_test.c
44
char *last = NULL;
crypto/openssl/test/conf_include_test.c
52
last = p++;
crypto/openssl/test/conf_include_test.c
54
if (last == NULL)
crypto/openssl/test/conf_include_test.c
57
last[DIRSEP_PRESERVE] = 0;
crypto/openssl/test/conf_include_test.c
62
new_config_name = OPENSSL_strdup(last + DIRSEP_PRESERVE + 1);
crypto/openssl/test/filterprov.c
206
int algnum = 0, last = 0, ret = 0;
crypto/openssl/test/filterprov.c
226
for (name = filterstrtmp; !last; name = (sep == NULL ? NULL : sep + 1)) {
crypto/openssl/test/filterprov.c
231
last = 1;
lib/geom/part/geom_part.c
317
off_t last, size, start, new_size;
lib/geom/part/geom_part.c
380
last = (off_t)strtoimax(s, NULL, 0);
lib/geom/part/geom_part.c
407
new_size = ALIGNDOWN(last + offset + 1, alignment) -
lib/geom/part/geom_part.c
440
off_t first, last, a_first;
lib/geom/part/geom_part.c
538
last = (off_t)strtoimax(s, NULL, 0);
lib/geom/part/geom_part.c
541
last = ALIGNDOWN(last + offset + 1, alignment) - 1;
lib/geom/part/geom_part.c
576
if (a_first <= last) {
lib/geom/part/geom_part.c
578
len = ALIGNDOWN(last - a_first + 1, alignment);
lib/geom/part/geom_part.c
586
if (start >= a_first && start <= last) {
lib/geom/part/geom_part.c
587
size = ALIGNDOWN(last - start + 1, alignment);
lib/geom/part/geom_part.c
618
off_t first, last, sector, end;
lib/geom/part/geom_part.c
636
last = (off_t)strtoimax(s, NULL, 0);
lib/geom/part/geom_part.c
658
wblocks, (intmax_t)first, wblocks, (intmax_t)(last - first + 1),
lib/geom/part/geom_part.c
731
if (first <= last) {
lib/geom/part/geom_part.c
733
length = last - first + 1;
lib/libc/db/btree/bt_overflow.c
130
PAGE *h, *last;
lib/libc/db/btree/bt_overflow.c
141
for (last = NULL, p = dbt->data, sz = dbt->size;;
lib/libc/db/btree/bt_overflow.c
142
p = (char *)p + plen, last = h) {
lib/libc/db/btree/bt_overflow.c
154
if (last) {
lib/libc/db/btree/bt_overflow.c
155
last->nextpg = h->pgno;
lib/libc/db/btree/bt_overflow.c
156
mpool_put(t->bt_mp, last, MPOOL_DIRTY);
lib/libc/db/test/btree.tests/main.c
187
int argc, i, last;
lib/libc/db/test/btree.tests/main.c
195
for (last = 0;;) {
lib/libc/db/test/btree.tests/main.c
201
i = last;
lib/libc/db/test/btree.tests/main.c
234
uselast: last = i;
lib/libc/db/test/btree.tests/main.c
70
void last(DB *, char **);
lib/libc/db/test/btree.tests/main.c
96
"la", 0, 0, last, "last", "move cursor to last record",
lib/libc/gen/popen.c
191
struct pid *cur, *last = NULL;
lib/libc/gen/popen.c
202
last = cur;
lib/libc/gen/popen.c
208
if (last == NULL)
lib/libc/gen/popen.c
211
SLIST_REMOVE_AFTER(last, next);
lib/libc/gen/sem_new.c
260
bool last;
lib/libc/gen/sem_new.c
275
last = --ni->open_count == 0;
lib/libc/gen/sem_new.c
276
if (last)
lib/libc/gen/sem_new.c
279
if (last) {
lib/libc/isc/eventlib_p.h
165
evWait * last;
lib/libc/regex/grot/debug.c
115
last = -1;
lib/libc/regex/grot/debug.c
118
if (last < 0) {
lib/libc/regex/grot/debug.c
120
last = i;
lib/libc/regex/grot/debug.c
123
if (last >= 0) {
lib/libc/regex/grot/debug.c
124
if (last != i-1)
lib/libc/regex/grot/debug.c
127
last = -1;
lib/libc/regex/grot/debug.c
27
int last;
lib/libc/regex/grot/debug.c
66
int last;
lib/libc/stdlib/merge.c
116
u_char *list2, *list1, *p2, *p, *last, **p1;
lib/libc/stdlib/merge.c
135
last = list2 + nmemb * size;
lib/libc/stdlib/merge.c
137
while (*EVAL(list2) != last) {
lib/libc/stdlib/merge.c
140
for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
lib/libc/stdlib/merge.c
144
if (p2 != last)
lib/libc/stdlib/merge.c
230
last = list2 + nmemb*size;
lib/libc/stdlib/merge.c
269
u_char *f1, *f2, *s, *l2, *last, *p2;
lib/libc/stdlib/merge.c
283
last = list1 + size * (n - i);
lib/libc/stdlib/merge.c
284
*EVAL(list2 + (last - list1)) = list2 + n * size;
lib/libc/stdlib/merge.c
290
for (; f1 < last; sense = !sense) {
lib/libc/stdlib/merge.c
293
for (f2 = f1 + size2; f2 < last; f2 += size2) {
lib/libc/stdlib/merge.c
317
if (f2 < last || CMP(f2 - size, f2) > 0)
lib/libc/stdlib/merge.c
324
for (f1 = list1, p2 = list2; f1 < last; f1 += size2) {
lib/libc/stdlib/merge.c
70
#define ICOPY_LIST(src, dst, last) \
lib/libc/stdlib/merge.c
73
while(src < last)
lib/libc/stdlib/merge.c
79
#define CCOPY_LIST(src, dst, last) \
lib/libc/stdlib/merge.c
82
while (src < last)
lib/libc/string/strtok.c
48
__strtok_r(char *s, const char *delim, char **last)
lib/libc/string/strtok.c
53
if (s == NULL && (s = *last) == NULL)
lib/libc/string/strtok.c
67
*last = NULL;
lib/libc/string/strtok.c
85
*last = s;
lib/libc/string/strtok.c
96
static char *last;
lib/libc/string/strtok.c
98
return (__strtok_r(s, delim, &last));
lib/libc/string/wcsrchr.c
34
const wchar_t *last;
lib/libc/string/wcsrchr.c
36
last = NULL;
lib/libc/string/wcsrchr.c
39
last = s;
lib/libc/string/wcsrchr.c
45
return ((wchar_t *)last);
lib/libc/string/wcstok.c
41
wchar_t ** __restrict last)
lib/libc/string/wcstok.c
47
if (s == NULL && (s = *last) == NULL)
lib/libc/string/wcstok.c
61
*last = NULL;
lib/libc/string/wcstok.c
79
*last = s;
lib/libdpv/dpv.c
102
char *last;
lib/libdpv/dpv.c
297
last = (char *)dialog_prompt_lastline(name, nls);
lib/libdpv/dpv.c
299
c = *last;
lib/libdpv/dpv.c
300
*last = '\0';
lib/libdpv/dpv.c
302
*last = c;
lib/libdpv/dpv.c
304
len = dialog_prompt_longestline(last, nls);
lib/libfetch/http.c
925
off_t first, last, len;
lib/libfetch/http.c
931
first = last = -1;
lib/libfetch/http.c
938
for (last = 0, ++p; *p && isdigit((unsigned char)*p); ++p)
lib/libfetch/http.c
939
last = last * 10 + *p - '0';
lib/libfetch/http.c
941
if (first > last || *p != '/')
lib/libfetch/http.c
945
if (*p || len < last - first + 1)
lib/libfetch/http.c
952
(long long)first, (long long)last, (long long)len);
lib/libfetch/http.c
953
*length = last - first + 1;
lib/libnv/msgio.c
327
unsigned int last;
lib/libnv/msgio.c
333
last = i;
lib/libnv/msgio.c
334
for (i = 0; i < last; i++) {
lib/libpfctl/libpfctl.h
177
uint32_t last;
lib/libpmc/pmu-events/list.h
247
struct list_head *last;
lib/libpmc/pmu-events/list.h
252
last = list->prev;
lib/libpmc/pmu-events/list.h
255
last->next = next;
lib/libpmc/pmu-events/list.h
256
next->prev = last;
lib/libproc/proc_sym.c
392
char last[MAXPATHLEN], path[MAXPATHLEN], *base;
lib/libproc/proc_sym.c
402
memset(last, 0, sizeof(last));
lib/libproc/proc_sym.c
413
if (strcmp(base, last) == 0)
lib/libproc/proc_sym.c
417
strlcpy(last, path, sizeof(last));
lib/libvgl/bitmap.c
109
for (last = bwidth; ; ) {
lib/libvgl/bitmap.c
110
len = min(VGLAdpInfo.va_window_size - offset, last);
lib/libvgl/bitmap.c
111
bcopy(&VGLPlane[i][bwidth - last], dst->Bitmap + offset, len);
lib/libvgl/bitmap.c
113
last -= len;
lib/libvgl/bitmap.c
114
if (last <= 0)
lib/libvgl/bitmap.c
47
int bwidth, i, pos, last, planepos, start_offset, end_offset, offset;
lib/libvgl/bitmap.c
67
last = 8 - start_offset;
lib/libvgl/bitmap.c
70
while (pos < last && pos < width)
lib/libvgl/bitmap.c
77
last += 8;
libexec/rtld-elf/rtld.c
4601
char *last;
libexec/rtld-elf/rtld.c
4609
last = strrchr(base, '/');
libexec/rtld-elf/rtld.c
4610
if (last == NULL) {
libexec/rtld-elf/rtld.c
4614
if (last != base)
libexec/rtld-elf/rtld.c
4615
*last = '\0';
libexec/rtld-elf/rtld.c
6632
char last;
libexec/rtld-elf/rtld.c
6634
last = fmt[strlen(fmt) - 1];
libexec/rtld-elf/rtld.c
6635
return (last == 'p' || last == 's');
libexec/talkd/table.c
168
ptr->next->last = ptr;
libexec/talkd/table.c
169
ptr->last = NIL;
libexec/talkd/table.c
222
else if (ptr->last != NIL)
libexec/talkd/table.c
223
ptr->last->next = ptr->next;
libexec/talkd/table.c
225
ptr->next->last = ptr->last;
libexec/talkd/table.c
65
TABLE_ENTRY *last;
sbin/dump/traverse.c
450
int ind_level, cnt, last, added;
sbin/dump/traverse.c
547
last = 0;
sbin/dump/traverse.c
550
last = 1;
sbin/dump/traverse.c
555
ufs2_blksout(dp, &dp->dp2.di_db[0], cnt, ino, last);
sbin/dump/traverse.c
576
int i, cnt, last;
sbin/dump/traverse.c
586
last = 0;
sbin/dump/traverse.c
589
last = 1;
sbin/dump/traverse.c
595
ufs2_blksout(dp, idblk.ufs2, cnt, ino, last);
sbin/dump/traverse.c
650
int last)
sbin/dump/traverse.c
662
if (last) {
sbin/dump/traverse.c
685
if (last && count == blks && !writingextdata)
sbin/dump/traverse.c
698
if (last && count == blks && !writingextdata) {
sbin/dump/traverse.c
73
ino_t ino, int last);
sbin/dump/traverse.c
762
int i, frags, blks, tbperdb, last;
sbin/dump/traverse.c
778
last = 0;
sbin/dump/traverse.c
781
last = 1;
sbin/dump/traverse.c
783
ufs2_blksout(dp, &dp->dp2.di_extb[0], frags, ino, last);
sbin/ifconfig/ifbridge.c
173
unsigned last;
sbin/ifconfig/ifbridge.c
180
last = vlan;
sbin/ifconfig/ifbridge.c
181
while (last < DOT1Q_VID_MAX && BRVLAN_TEST(vlans, last + 1))
sbin/ifconfig/ifbridge.c
182
++last;
sbin/ifconfig/ifbridge.c
190
if (last != vlan)
sbin/ifconfig/ifbridge.c
191
printf("-%u", last);
sbin/ifconfig/ifbridge.c
193
vlan = last + 1;
sbin/ifconfig/ifbridge.c
836
unsigned long first, last;
sbin/ifconfig/ifbridge.c
842
first = last = strtoul(token, &p, 10);
sbin/ifconfig/ifbridge.c
849
last = strtoul(lastp, &p, 10);
sbin/ifconfig/ifbridge.c
852
if (last < DOT1Q_VID_MIN || last > DOT1Q_VID_MAX ||
sbin/ifconfig/ifbridge.c
853
last < first)
sbin/ifconfig/ifbridge.c
857
for (unsigned vlan = first; vlan <= last; ++vlan)
sbin/ifconfig/ifconfig.c
371
struct ifaddrs *right, *temp, *last, *result, *next, *tail;
sbin/ifconfig/ifconfig.c
375
last = list;
sbin/ifconfig/ifconfig.c
384
last = right;
sbin/ifconfig/ifconfig.c
389
last->ifa_next = NULL;
sbin/ifconfig/ifieee80211.c
1137
int first, last, f, c;
sbin/ifconfig/ifieee80211.c
1142
switch (sscanf(cp, "%u-%u", &first, &last)) {
sbin/ifconfig/ifieee80211.c
1153
if (last > IEEE80211_CHAN_MAX)
sbin/ifconfig/ifieee80211.c
1155
last, IEEE80211_CHAN_MAX);
sbin/ifconfig/ifieee80211.c
1156
if (first > last)
sbin/ifconfig/ifieee80211.c
1158
first, last);
sbin/ifconfig/ifieee80211.c
1159
for (f = first; f <= last; f++)
sbin/ipf/common/lexer.c
111
yyswallow(int last)
sbin/ipf/common/lexer.c
115
while (((c = yygetc(0)) > '\0') && (c != last))
sbin/ipf/common/lexer.c
120
if (c == last)
sbin/ipf/ipftest/ip_fil.c
705
static unsigned int last = 0xa5a5a5a5;
sbin/ipf/ipftest/ip_fil.c
736
number = last;
sbin/ipf/ipftest/ip_fil.c
737
last *= calls;
sbin/ipf/ipftest/ip_fil.c
738
last++;
sbin/ipf/ipftest/ip_fil.c
739
number ^= last;
sbin/ipf/ippool/ippool_y.y
775
ip_pool_node_t *ntop, *ipn, node, *last;
sbin/ipf/ippool/ippool_y.y
783
last = NULL;
sbin/ipf/ippool/ippool_y.y
795
if (last == NULL)
sbin/ipf/ippool/ippool_y.y
798
last->ipn_next = ipn;
sbin/ipf/ippool/ippool_y.y
799
last = ipn;
sbin/ipf/libipf/ipft_tx.c
232
char *last;
sbin/ipf/libipf/ipft_tx.c
234
last = strchr(*cpp, ',');
sbin/ipf/libipf/ipft_tx.c
235
if (!last) {
sbin/ipf/libipf/ipft_tx.c
239
*last++ = '\0';
sbin/ipf/libipf/ipft_tx.c
240
tcp->th_sport = htons(tx_portnum(last));
sbin/ipf/libipf/ipft_tx.c
252
char *last;
sbin/ipf/libipf/ipft_tx.c
254
last = strchr(*cpp, ',');
sbin/ipf/libipf/ipft_tx.c
255
if (!last) {
sbin/ipf/libipf/ipft_tx.c
259
*last++ = '\0';
sbin/ipf/libipf/ipft_tx.c
260
tcp->th_dport = htons(tx_portnum(last));
sbin/ipf/libipf/ipft_tx.c
393
char *last;
sbin/ipf/libipf/ipft_tx.c
395
last = strchr(*cpp, ',');
sbin/ipf/libipf/ipft_tx.c
396
if (!last) {
sbin/ipf/libipf/ipft_tx.c
400
*last++ = '\0';
sbin/ipf/libipf/ipft_tx.c
401
tcp->th_sport = htons(tx_portnum(last));
sbin/ipf/libipf/ipft_tx.c
418
char *last;
sbin/ipf/libipf/ipft_tx.c
420
last = strchr(*cpp, ',');
sbin/ipf/libipf/ipft_tx.c
421
if (!last) {
sbin/ipf/libipf/ipft_tx.c
425
*last++ = '\0';
sbin/ipf/libipf/ipft_tx.c
426
tcp->th_dport = htons(tx_portnum(last));
sbin/ipf/libipf/printdstl_live.c
22
int printed, last;
sbin/ipf/libipf/printdstl_live.c
61
last = 0;
sbin/ipf/libipf/printdstl_live.c
64
while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
sbin/ipf/libipf/printdstl_live.c
66
last = 1;
sbin/ipf/libipf/printhash_live.c
17
int last, printed;
sbin/ipf/libipf/printhash_live.c
46
last = 0;
sbin/ipf/libipf/printhash_live.c
50
while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
sbin/ipf/libipf/printhash_live.c
52
last = 1;
sbin/ipf/libipf/printhash_live.c
60
if (last == 0)
sbin/ipf/libipf/printpool_live.c
18
int printed, last;
sbin/ipf/libipf/printpool_live.c
46
last = 0;
sbin/ipf/libipf/printpool_live.c
50
while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
sbin/ipf/libipf/printpool_live.c
52
last = 1;
sbin/ipfw/ipfw2.c
2962
if (r->rulenum > fo->last)
sbin/ipfw/ipfw2.c
2966
if (r->rulenum >= fo->first && r->rulenum <= fo->last) {
sbin/ipfw/ipfw2.c
2987
if (d->rulenum > fo->last)
sbin/ipfw/ipfw2.c
3041
if (sfo.last == 0 || rnum > sfo.last)
sbin/ipfw/ipfw2.c
3042
sfo.last = rnum;
sbin/ipfw/ipfw2.c
3129
fo->last = IPFW_DEFAULT_RULE;
sbin/ipfw/ipfw2.c
3146
fo->last = fo->first = strtoul(*lav++, &endptr, 10);
sbin/ipfw/ipfw2.c
3148
fo->last = strtoul(endptr + 1, &endptr, 10);
sbin/ipfw/ipfw2.c
3162
if (fo->first == fo->last)
sbin/ipfw/ipfw2.c
3166
fo->first, fo->last);
sbin/ipfw/ipfw2.c
3173
fo->last = fo->first = strtoul(*lav++, &endptr, 10);
sbin/ipfw/ipfw2.c
3175
fo->last = strtoul(endptr+1, &endptr, 10);
sbin/ipfw/ipfw2.c
3223
cfg->end_rule = fo->last;
sbin/ipfw/ipfw2.c
70
uint32_t last; /* last rule to request */
sbin/nvmecontrol/comnd.c
318
struct cmd *walker, *last;
sbin/nvmecontrol/comnd.c
324
last = NULL;
sbin/nvmecontrol/comnd.c
328
last = walker;
sbin/nvmecontrol/comnd.c
330
if (last == NULL) {
sbin/nvmecontrol/comnd.c
333
SLIST_INSERT_AFTER(last, cmd, link);
sbin/pfctl/pfctl_altq.c
1079
struct segment *s, *last, *end;
sbin/pfctl/pfctl_altq.c
1098
last = NULL;
sbin/pfctl/pfctl_altq.c
1102
last = s;
sbin/pfctl/pfctl_altq.c
1105
if (last == NULL)
sbin/pfctl/pfctl_altq.c
1107
if (last->m > sc->m2)
sbin/pfctl/pfctl_altq.c
1109
if (last->x < sc->d && last->m > sc->m1) {
sbin/pfctl/pfctl_altq.c
1110
y = last->y + (sc->d - last->x) * last->m;
sbin/ping/ping.c
201
struct timespec last, intvl;
sbin/ping/ping.c
879
(void)clock_gettime(CLOCK_MONOTONIC, &last);
sbin/ping/ping.c
907
timespecadd(&last, &intvl, &timeout);
sbin/ping/ping.c
982
(void)clock_gettime(CLOCK_MONOTONIC, &last);
sbin/ping/ping6.c
1123
clock_gettime(CLOCK_MONOTONIC, &last);
sbin/ping/ping6.c
1160
timespecadd(&last, &intvl, &timeout);
sbin/ping/ping6.c
1237
clock_gettime(CLOCK_MONOTONIC, &last);
sbin/ping/ping6.c
271
struct timespec last, intvl;
sbin/ping/utils.c
51
} last;
sbin/ping/utils.c
74
last.uc[0] = *w;
sbin/ping/utils.c
75
last.uc[1] = 0;
sbin/ping/utils.c
76
sum += last.us;
sbin/rcorder/rcorder.c
108
provnode *next, *last;
sbin/rcorder/rcorder.c
131
filenode *next, *last;
sbin/rcorder/rcorder.c
279
temp->next->last = temp;
sbin/rcorder/rcorder.c
280
temp->last = fn_head;
sbin/rcorder/rcorder.c
326
head->last = head->next = NULL;
sbin/rcorder/rcorder.c
374
pnode->last = head;
sbin/rcorder/rcorder.c
377
pnode->next->last = pnode;
sbin/rcorder/rcorder.c
561
head->last = head->next = NULL;
sbin/rcorder/rcorder.c
569
pnode->last = head;
sbin/rcorder/rcorder.c
572
pnode->next->last = pnode;
sbin/rcorder/rcorder.c
955
pnode->next->last = pnode->last;
sbin/rcorder/rcorder.c
957
if (pnode->last != NULL) {
sbin/rcorder/rcorder.c
958
pnode->last->next = pnode->next;
sbin/rcorder/rcorder.c
977
fnode->next->last = fnode->last;
sbin/rcorder/rcorder.c
979
if (fnode->last != NULL) {
sbin/rcorder/rcorder.c
980
fnode->last->next = fnode->next;
sbin/restore/restore.c
664
ino_t first, next, last;
sbin/restore/restore.c
674
last = upperbnd(maxino - 1);
sbin/restore/restore.c
678
last = upperbnd(last);
sbin/restore/restore.c
682
if (first > last)
sbin/restore/restore.c
702
if (curfile.ino > last && curfile.ino < maxino && volno > 1) {
sbin/restore/restore.c
753
if (next == curfile.ino && next <= last) {
share/examples/scsi_target/scsi_target.c
149
int last, shift = 0;
share/examples/scsi_target/scsi_target.c
151
last = strlen(optarg) - 1;
share/examples/scsi_target/scsi_target.c
152
if (last > 0) {
share/examples/scsi_target/scsi_target.c
153
switch (tolower(optarg[last])) {
share/examples/scsi_target/scsi_target.c
171
optarg[last] = 0;
stand/common/modinfo.c
168
vm_offset_t addr, last;
stand/common/modinfo.c
171
addr = last = start;
stand/common/modinfo.c
192
last = ++addr;
stand/common/modinfo.c
195
if (archsw.arch_copyin("", last++, 1) != 1)
stand/common/modinfo.c
196
last = start;
stand/common/modinfo.c
197
return(last);
stand/efi/libefi/efipart.c
510
pdinfo_t *parent, *pd, *last;
stand/efi/libefi/efipart.c
531
last = STAILQ_LAST(&parent->pd_part, pdinfo, pd_link);
stand/efi/libefi/efipart.c
532
if (last != NULL)
stand/efi/libefi/efipart.c
533
cd->pd_unit = last->pd_unit + 1;
stand/efi/libefi/efipart.c
541
last = STAILQ_LAST(&cdinfo, pdinfo, pd_link);
stand/efi/libefi/efipart.c
542
if (last != NULL)
stand/efi/libefi/efipart.c
543
cd->pd_unit = last->pd_unit + 1;
stand/efi/libefi/efipart.c
653
pdinfo_t *last;
stand/efi/libefi/efipart.c
655
last = STAILQ_LAST(&hdinfo, pdinfo, pd_link);
stand/efi/libefi/efipart.c
656
if (last != NULL)
stand/efi/libefi/efipart.c
657
hd->pd_unit = last->pd_unit + 1;
stand/efi/libefi/efipart.c
698
if (last == NULL) {
stand/efi/libefi/efipart.c
705
hd->pd_parent = last;
stand/efi/libefi/efipart.c
707
STAILQ_INSERT_TAIL(&last->pd_part, hd, pd_link);
stand/efi/libefi/efipart.c
714
pdinfo_t *parent, *pd, *last;
stand/efi/libefi/efipart.c
750
last = STAILQ_LAST(&hdinfo, pdinfo, pd_link);
stand/efi/libefi/efipart.c
751
if (last != NULL)
stand/efi/libefi/efipart.c
752
hd->pd_unit = last->pd_unit + 1;
stand/efi/loader/copy.c
527
uint64_t *src, *dst, *last;
stand/efi/loader/copy.c
531
last = (uint64_t *)(uintptr_t)staging_end;
stand/efi/loader/copy.c
533
while (src < last)
stand/efi/loader/main.c
711
time_t now, then, last;
stand/efi/loader/main.c
713
last = 0;
stand/efi/loader/main.c
721
if (last != now) {
stand/efi/loader/main.c
724
last = now;
stand/kshim/bsd_kernel.h
147
#define va_start(ap, last) __builtin_va_start(ap, last)
stand/libsa/close.c
66
struct open_file *f, *last;
stand/libsa/close.c
91
TAILQ_FOREACH_REVERSE_SAFE(last, &files, file_list, f_link, f) {
stand/libsa/close.c
92
if (last->f_flags != 0)
stand/libsa/close.c
94
TAILQ_REMOVE(&files, last, f_link);
stand/libsa/close.c
95
free(last);
stand/libsa/environment.c
108
for (last = NULL, curr = environ; curr != NULL;
stand/libsa/environment.c
109
last = curr, curr = curr->ev_next) {
stand/libsa/environment.c
124
if (last == NULL) {
stand/libsa/environment.c
127
last->ev_next = ev;
stand/libsa/environment.c
128
ev->ev_prev = last;
stand/libsa/environment.c
65
struct env_var *ev, *curr, *last;
stand/libsa/ip.c
205
struct ip_queue *ipq, *last;
stand/libsa/ip.c
311
last = NULL;
stand/libsa/ip.c
327
last = ipq;
stand/libsa/ip.c
331
if ((ntohs(last->ipq_hdr->ip_off) & IP_MF) != 0) {
stand/libsa/ip.c
333
__func__, ntohs(last->ipq_hdr->ip_id),
stand/libsa/ip.c
334
inet_ntoa(last->ipq_hdr->ip_src)));
stand/libsa/ip.c
336
inet_ntoa(last->ipq_hdr->ip_dst),
stand/libsa/ip.c
337
(ntohs(last->ipq_hdr->ip_off) & IP_OFFMASK) * 8,
stand/libsa/ip.c
338
(ntohs(last->ipq_hdr->ip_off) & IP_MF) != 0));
stand/libsa/netif.c
320
struct iodesc *last;
stand/libsa/netif.c
326
last = TAILQ_LAST(&sockets, socket_list);
stand/libsa/netif.c
327
if (last != NULL)
stand/libsa/netif.c
328
s->io_id = last->io_id + 1;
stand/libsa/netif.c
350
struct iodesc *s, *last;
stand/libsa/netif.c
369
TAILQ_FOREACH_REVERSE_SAFE(last, &sockets, socket_list, io_link, s) {
stand/libsa/netif.c
370
if (last->io_netif != NULL)
stand/libsa/netif.c
372
TAILQ_REMOVE(&sockets, last, io_link);
stand/libsa/netif.c
373
free(last);
stand/libsa/open.c
104
struct open_file *f, *last;
stand/libsa/open.c
118
last = TAILQ_LAST(&files, file_list);
stand/libsa/open.c
119
if (last != NULL)
stand/libsa/open.c
120
f->f_id = last->f_id + 1;
stand/libsa/pkgfs.c
756
scan_tarfile(struct package *pkg, struct tarfile *last)
stand/libsa/pkgfs.c
763
cur = (last != NULL) ? last->tf_next : pkg->pkg_first;
stand/libsa/pkgfs.c
765
ofs = (last != NULL) ? last->tf_ofs + last->tf_size :
stand/libsa/pkgfs.c
776
if (last != NULL && pkg->pkg_ofs == last->tf_ofs) {
stand/libsa/pkgfs.c
777
if (cache_data(last, 0) == -1)
stand/libsa/pkgfs.c
834
if (last != NULL)
stand/libsa/pkgfs.c
835
last->tf_next = cur;
stand/libsa/zfs/zfsimpl.c
461
uint64_t last = vim->vim_phys->vimp_num_entries - 1;
stand/libsa/zfs/zfsimpl.c
471
while (last >= base) {
stand/libsa/zfs/zfsimpl.c
472
mid = base + ((last - base) >> 1);
stand/libsa/zfs/zfsimpl.c
482
last = mid - 1;
stand/uboot/glue.c
537
ub_env_enum(const char *last)
stand/uboot/glue.c
548
if (!syscall(API_ENV_ENUM, NULL, last, &env))
stand/uboot/glue.c
551
if (env == NULL || last == env)
sys/amd64/linux/linux_proto.h
1381
char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
sys/amd64/linux/linux_systrace_args.c
2714
iarg[a++] = p->last; /* l_uint */
sys/amd64/linux32/linux32_proto.h
1682
char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
sys/amd64/linux32/linux32_systrace_args.c
3230
iarg[a++] = p->last; /* l_uint */
sys/amd64/vmm/io/vioapic.c
326
uint64_t last, changed;
sys/amd64/vmm/io/vioapic.c
352
last = vioapic->rtbl[pin].reg;
sys/amd64/vmm/io/vioapic.c
377
changed = last ^ vioapic->rtbl[pin].reg;
sys/arm/allwinner/aw_cir.c
213
unsigned char val, last;
sys/arm/allwinner/aw_cir.c
263
last = 1;
sys/arm/allwinner/aw_cir.c
267
if (last) {
sys/arm/allwinner/aw_cir.c
278
last = 0;
sys/arm/allwinner/aw_cir.c
298
last = 1;
sys/arm/allwinner/if_awg.c
608
int error, nsegs, cur, first, last, i;
sys/arm/allwinner/if_awg.c
694
last = TX_SKIP(cur, TX_DESC_COUNT - 1);
sys/arm/allwinner/if_awg.c
695
sc->tx.buf_map[first].map = sc->tx.buf_map[last].map;
sys/arm/allwinner/if_awg.c
696
sc->tx.buf_map[last].map = map;
sys/arm/allwinner/if_awg.c
697
sc->tx.buf_map[last].mbuf = m;
sys/arm/arm/mpcore_timer.c
499
uint32_t first, last;
sys/arm/arm/mpcore_timer.c
518
last = tmr_gbl_read_4(sc, GBL_TIMER_COUNT_LOW);
sys/arm/arm/mpcore_timer.c
519
counts -= (int32_t)(last - first);
sys/arm/arm/mpcore_timer.c
520
first = last;
sys/arm/arm/pmap-v6.c
771
pmap_bootstrap_prepare(vm_paddr_t last)
sys/arm/arm/pmap-v6.c
789
last_paddr = pte1_roundup(last);
sys/arm/arm/pmap-v6.c
843
for (pa = KERNEL_V2P(KERNBASE); pa < last; pa += PTE1_SIZE)
sys/arm/arm/sp804.c
317
uint32_t first, last;
sys/arm/arm/sp804.c
325
last = sp804_timer_tc_get_timecount(&sc->tc);
sys/arm/arm/sp804.c
326
if (last == first)
sys/arm/arm/sp804.c
328
if (last > first) {
sys/arm/arm/sp804.c
329
counts -= (int32_t)(last - first);
sys/arm/arm/sp804.c
331
counts -= (int32_t)((0xFFFFFFFF - first) + last);
sys/arm/arm/sp804.c
333
first = last;
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
346
uint8_t *last;
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
359
last = (uint8_t *)msg + len;
sys/arm/broadcom/bcm2835/bcm2835_mbox.c
382
if ((uint8_t *)tag > last) {
sys/arm/freescale/imx/imx_i2c.c
656
i2c_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/arm/freescale/imx/imx_i2c.c
683
if (last) {
sys/arm/mv/a37x0_iic.c
366
a37x0_iic_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/arm/ti/am335x/am335x_dmtimer.c
385
uint32_t first, last;
sys/arm/ti/am335x/am335x_dmtimer.c
393
last = DMTIMER_READ4(sc, DMT_TCRR);
sys/arm/ti/am335x/am335x_dmtimer.c
394
if (last > first) {
sys/arm/ti/am335x/am335x_dmtimer.c
395
counts -= (int32_t)(last - first);
sys/arm/ti/am335x/am335x_dmtimer.c
397
counts -= (int32_t)((0xFFFFFFFF - first) + last);
sys/arm/ti/am335x/am335x_dmtimer.c
399
first = last;
sys/arm/ti/cpsw/if_cpsw.c
1603
struct cpsw_slot *last, *slot;
sys/arm/ti/cpsw/if_cpsw.c
1610
last = NULL;
sys/arm/ti/cpsw/if_cpsw.c
1628
last = slot;
sys/arm/ti/cpsw/if_cpsw.c
1713
cpsw_write_cp_slot(sc, &sc->rx, last);
sys/arm/ti/cpsw/if_cpsw.c
1841
struct cpsw_slot *first_new_slot, *last, *last_old_slot, *next, *slot;
sys/arm/ti/cpsw/if_cpsw.c
1846
last = NULL;
sys/arm/ti/cpsw/if_cpsw.c
1902
if (last != NULL)
sys/arm/ti/cpsw/if_cpsw.c
1903
cpsw_cpdma_write_bd_next(sc->swsc, last, slot);
sys/arm/ti/cpsw/if_cpsw.c
1951
last = slot;
sys/arm/ti/ti_pruss.c
113
int8_t last;
sys/arm/ti/ti_pruss.c
442
sc->sc_irq_devs[irq].last = -1;
sys/arm/ti/ti_pruss.c
818
if (hint > 0 || irq_sc->last > 0)
sys/arm/ti/ti_pruss.c
823
irq_sc->last = hint;
sys/arm64/arm64/gicv3_its.c
2007
uint64_t first, last, read;
sys/arm64/arm64/gicv3_its.c
2020
last = its_cmd_cwriter_offset(sc, cmd_last);
sys/arm64/arm64/gicv3_its.c
2024
if (first < last) {
sys/arm64/arm64/gicv3_its.c
2025
if (read < first || read >= last)
sys/arm64/arm64/gicv3_its.c
2027
} else if (read < first && read >= last)
sys/arm64/linux/linux_proto.h
1191
char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
sys/arm64/linux/linux_systrace_args.c
2336
iarg[a++] = p->last; /* l_uint */
sys/cam/ctl/ctl.c
10679
hdr->last = 1;
sys/cam/ctl/ctl.c
10697
hdr->last = 1;
sys/cam/ctl/ctl.c
2121
int last;
sys/cam/ctl/ctl.c
2132
last = (--port->wwpn_iid[iid].in_use == 0);
sys/cam/ctl/ctl.c
2135
if (last)
sys/cam/ctl/ctl.c
3811
ctl_ffz(uint32_t *mask, uint32_t first, uint32_t last)
sys/cam/ctl/ctl.c
3815
for (i = first; i < last; i++) {
sys/cam/ctl/ctl.h
157
int ctl_ffz(uint32_t *mask, uint32_t first, uint32_t last);
sys/cam/ctl/ctl_backend_block.c
1154
uint64_t off, uint64_t len, int last)
sys/cam/ctl/ctl_backend_block.c
1180
if (last && len == 0)
sys/cam/ctl/ctl_frontend_iscsi.c
1134
int error, last, wait;
sys/cam/ctl/ctl_frontend_iscsi.c
1177
last = refcount_release(&cs->cs_outstanding_ctl_pdus);
sys/cam/ctl/ctl_frontend_iscsi.c
1178
if (last != 0)
sys/cam/scsi/scsi_cd.h
249
uint8_t last;
sys/cddl/dev/dtrace/dtrace_debug.c
110
count = (uintptr_t) d->last - (uintptr_t) d->first;
sys/cddl/dev/dtrace/dtrace_debug.c
112
for (p = d->first; p < d->last; p++)
sys/cddl/dev/dtrace/dtrace_debug.c
127
char *last = dtrace_debug_bufr + count;
sys/cddl/dev/dtrace/dtrace_debug.c
131
while (p < last) {
sys/cddl/dev/dtrace/dtrace_debug.c
160
if (d->next == d->last)
sys/cddl/dev/dtrace/dtrace_debug.c
168
if (d->first == d->last)
sys/cddl/dev/dtrace/dtrace_debug.c
40
char *last;
sys/cddl/dev/dtrace/dtrace_debug.c
76
d->last = d->bufr + DTRACE_DEBUG_BUFR_SIZE - 1;
sys/cddl/dev/dtrace/dtrace_debug.c
77
*(d->last) = '\0';
sys/compat/linux/linux_file.c
1892
if (args->first > args->last)
sys/compat/linux/linux_file.c
1896
return (kern_close_range(td, flags, args->first, args->last));
sys/compat/linux/linux_util.c
261
char *temp, *string, *last;
sys/compat/linux/linux_util.c
267
last = "";
sys/compat/linux/linux_util.c
272
if (strcmp(last, de->entry.bsd_driver_name) != 0) {
sys/compat/linux/linux_util.c
273
last = de->entry.bsd_driver_name;
sys/compat/linuxkpi/common/include/linux/interval_tree.h
36
unsigned long last;
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
41
name##_iter_from(struct rb_node *rb, valtype start, valtype last) \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
47
if (LAST(node) >= start && START(node) <= last) \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
49
else if (START(node) > last) \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
58
name##_iter_first(struct rb_root_cached *root, valtype start, valtype last) \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
60
return (name##_iter_from(rb_first_cached(root), start, last)); \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
65
name##_iter_next(type *node, valtype start, valtype last) \
sys/compat/linuxkpi/common/include/linux/interval_tree_generic.h
67
return (name##_iter_from(rb_next(&node->field), start, last)); \
sys/compat/linuxkpi/common/include/linux/kfifo.h
137
(_kf)->total = (_kf)->count = (_kf)->first = (_kf)->last = 0; \
sys/compat/linuxkpi/common/include/linux/kfifo.h
45
(_kf).last = 0; \
sys/compat/linuxkpi/common/include/linux/kfifo.h
53
size_t last; \
sys/compat/linuxkpi/common/include/linux/kfifo.h
62
size_t last; \
sys/compat/linuxkpi/common/include/linux/kfifo.h
89
(_kf)->head[(_kf)->last] = (_e); \
sys/compat/linuxkpi/common/include/linux/kfifo.h
91
(_kf)->last++; \
sys/compat/linuxkpi/common/include/linux/kfifo.h
92
if ((_kf)->last > (_kf)->total) \
sys/compat/linuxkpi/common/include/linux/kfifo.h
93
(_kf)->last = 0; \
sys/compat/linuxkpi/common/include/linux/list.h
281
struct list_head *last)
sys/compat/linuxkpi/common/include/linux/list.h
283
first->prev->next = last->next;
sys/compat/linuxkpi/common/include/linux/list.h
284
last->next->prev = first->prev;
sys/compat/linuxkpi/common/include/linux/list.h
287
last->next = head;
sys/compat/linuxkpi/common/include/linux/list.h
288
head->prev = last;
sys/compat/linuxkpi/common/include/linux/list.h
296
struct list_head *last;
sys/compat/linuxkpi/common/include/linux/list.h
301
last = list->prev;
sys/compat/linuxkpi/common/include/linux/list.h
304
last->next = next;
sys/compat/linuxkpi/common/include/linux/list.h
305
next->prev = last;
sys/compat/linuxkpi/common/src/linux_compat.c
176
#define LAST(node) ((node)->last)
sys/compat/linuxkpi/common/src/linux_compat.c
491
vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
sys/compat/linuxkpi/common/src/linux_compat.c
546
*last = *first + vmap->vm_pfn_count - 1;
sys/compat/linuxkpi/common/src/linux_tasklet.c
67
struct tasklet_struct *last;
sys/compat/linuxkpi/common/src/linux_tasklet.c
72
last = TAILQ_LAST(&tw->head, tasklet_list);
sys/compat/linuxkpi/common/src/linux_tasklet.c
96
if (ts == last)
sys/ddb/db_command.c
241
struct db_command *c, *last;
sys/ddb/db_command.c
250
last = NULL;
sys/ddb/db_command.c
265
last = c;
sys/ddb/db_command.c
267
if (last == NULL)
sys/ddb/db_command.c
270
LIST_INSERT_AFTER(last, cmd, next);
sys/dev/aic7xxx/aic79xx_inline.h
235
bus_size_t len, int last);
sys/dev/aic7xxx/aic79xx_inline.h
245
void *sgptr, bus_addr_t addr, bus_size_t len, int last)
sys/dev/aic7xxx/aic79xx_inline.h
254
sg->len = aic_htole32(len | (last ? AHD_DMA_LAST_SEG : 0));
sys/dev/aic7xxx/aic79xx_inline.h
262
| (last ? AHD_DMA_LAST_SEG : 0));
sys/dev/ath/ath_hal/ar5212/ar2316.c
652
int totalD,totalF, totalMin,last, i;
sys/dev/ath/ath_hal/ar5212/ar2316.c
686
for (last=0,i=0; (i<numChannels) && (freq > data[i].channelValue);
sys/dev/ath/ath_hal/ar5212/ar2316.c
687
last = i++);
sys/dev/ath/ath_hal/ar5212/ar2316.c
688
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar2316.c
690
totalF = ar2316GetMaxPower(ah, &data[i]) - ar2316GetMaxPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2316.c
691
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2316.c
692
ar2316GetMaxPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2316.c
693
totalMin = ar2316GetMinPower(ah, &data[i]) - ar2316GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2316.c
694
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2316.c
695
ar2316GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2317.c
632
int totalD,totalF, totalMin,last, i;
sys/dev/ath/ath_hal/ar5212/ar2317.c
666
for (last=0,i=0; (i<numChannels) && (freq > data[i].channelValue);
sys/dev/ath/ath_hal/ar5212/ar2317.c
667
last = i++);
sys/dev/ath/ath_hal/ar5212/ar2317.c
668
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar2317.c
670
totalF = ar2317GetMaxPower(ah, &data[i]) - ar2317GetMaxPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2317.c
671
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2317.c
672
ar2317GetMaxPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2317.c
673
totalMin = ar2317GetMinPower(ah, &data[i]) - ar2317GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2317.c
674
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2317.c
675
ar2317GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2413.c
647
int totalD,totalF, totalMin,last, i;
sys/dev/ath/ath_hal/ar5212/ar2413.c
681
for (last=0,i=0; (i<numChannels) && (freq > data[i].channelValue);
sys/dev/ath/ath_hal/ar5212/ar2413.c
682
last = i++);
sys/dev/ath/ath_hal/ar5212/ar2413.c
683
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar2413.c
685
totalF = ar2413GetMaxPower(ah, &data[i]) - ar2413GetMaxPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2413.c
686
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2413.c
687
ar2413GetMaxPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2413.c
688
totalMin = ar2413GetMinPower(ah, &data[i]) - ar2413GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2413.c
689
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2413.c
690
ar2413GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2425.c
609
int totalD,totalF, totalMin,last, i;
sys/dev/ath/ath_hal/ar5212/ar2425.c
643
for (last=0,i=0; (i<numChannels) && (freq > data[i].channelValue);
sys/dev/ath/ath_hal/ar5212/ar2425.c
644
last = i++);
sys/dev/ath/ath_hal/ar5212/ar2425.c
645
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar2425.c
647
totalF = ar2425GetMaxPower(ah, &data[i]) - ar2425GetMaxPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2425.c
648
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2425.c
649
ar2425GetMaxPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar2425.c
650
totalMin = ar2425GetMinPower(ah, &data[i]) - ar2425GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar2425.c
651
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar2425.c
652
ar2425GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar5112.c
772
int numChannels=0,i,last;
sys/dev/ath/ath_hal/ar5212/ar5112.c
814
for (last=0,i=0;
sys/dev/ath/ath_hal/ar5212/ar5112.c
816
last=i++);
sys/dev/ath/ath_hal/ar5212/ar5112.c
817
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar5112.c
819
totalF = data[i].maxPower_t4 - data[last].maxPower_t4;
sys/dev/ath/ath_hal/ar5212/ar5112.c
820
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) + data[last].maxPower_t4*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar5112.c
822
totalMin = ar5112GetMinPower(ah,&data[i]) - ar5112GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar5112.c
823
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) + ar5112GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar5413.c
690
int totalD,totalF, totalMin,last, i;
sys/dev/ath/ath_hal/ar5212/ar5413.c
726
for (last=0,i=0; (i<numChannels) && (freq > data[i].channelValue);
sys/dev/ath/ath_hal/ar5212/ar5413.c
727
last = i++);
sys/dev/ath/ath_hal/ar5212/ar5413.c
728
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5212/ar5413.c
730
totalF = ar5413GetMaxPower(ah, &data[i]) - ar5413GetMaxPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar5413.c
731
*maxPow = (int8_t) ((totalF*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar5413.c
732
ar5413GetMaxPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5212/ar5413.c
733
totalMin = ar5413GetMinPower(ah, &data[i]) - ar5413GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5212/ar5413.c
734
*minPow = (int8_t) ((totalMin*(freq-data[last].channelValue) +
sys/dev/ath/ath_hal/ar5212/ar5413.c
735
ar5413GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar5416/ar2133.c
369
int numChannels=0,i,last;
sys/dev/ath/ath_hal/ar5416/ar2133.c
400
for (last=0,i=0;
sys/dev/ath/ath_hal/ar5416/ar2133.c
402
last=i++);
sys/dev/ath/ath_hal/ar5416/ar2133.c
403
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar5416/ar2133.c
405
totalF = data[i].maxPower_t4 - data[last].maxPower_t4;
sys/dev/ath/ath_hal/ar5416/ar2133.c
406
*maxPow = (int8_t) ((totalF*(chan->channel-data[last].channelValue) + data[last].maxPower_t4*totalD)/totalD);
sys/dev/ath/ath_hal/ar5416/ar2133.c
408
totalMin = ar2133GetMinPower(ah,&data[i]) - ar2133GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar5416/ar2133.c
409
*minPow = (int8_t) ((totalMin*(chan->channel-data[last].channelValue) + ar2133GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar9002/ar9280.c
286
int numChannels=0,i,last;
sys/dev/ath/ath_hal/ar9002/ar9280.c
317
for (last=0,i=0;
sys/dev/ath/ath_hal/ar9002/ar9280.c
319
last=i++);
sys/dev/ath/ath_hal/ar9002/ar9280.c
320
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar9002/ar9280.c
322
totalF = data[i].maxPower_t4 - data[last].maxPower_t4;
sys/dev/ath/ath_hal/ar9002/ar9280.c
323
*maxPow = (int8_t) ((totalF*(chan->channel-data[last].channelValue) + data[last].maxPower_t4*totalD)/totalD);
sys/dev/ath/ath_hal/ar9002/ar9280.c
325
totalMin = ar9280GetMinPower(ah,&data[i]) - ar9280GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar9002/ar9280.c
326
*minPow = (int8_t) ((totalMin*(chan->channel-data[last].channelValue) + ar9280GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/ath_hal/ar9002/ar9287.c
228
int numChannels=0,i,last;
sys/dev/ath/ath_hal/ar9002/ar9287.c
259
for (last=0,i=0;
sys/dev/ath/ath_hal/ar9002/ar9287.c
261
last=i++);
sys/dev/ath/ath_hal/ar9002/ar9287.c
262
totalD = data[i].channelValue - data[last].channelValue;
sys/dev/ath/ath_hal/ar9002/ar9287.c
264
totalF = data[i].maxPower_t4 - data[last].maxPower_t4;
sys/dev/ath/ath_hal/ar9002/ar9287.c
265
*maxPow = (int8_t) ((totalF*(chan->channel-data[last].channelValue) + data[last].maxPower_t4*totalD)/totalD);
sys/dev/ath/ath_hal/ar9002/ar9287.c
267
totalMin = ar9287GetMinPower(ah,&data[i]) - ar9287GetMinPower(ah, &data[last]);
sys/dev/ath/ath_hal/ar9002/ar9287.c
268
*minPow = (int8_t) ((totalMin*(chan->channel-data[last].channelValue) + ar9287GetMinPower(ah, &data[last])*totalD)/totalD);
sys/dev/ath/if_ath_tx.c
5748
struct ath_tid *tid, *next, *last;
sys/dev/ath/if_ath_tx.c
5791
last = TAILQ_LAST(&txq->axq_tidq, axq_t_s);
sys/dev/ath/if_ath_tx.c
5840
if (tid == last)
sys/dev/axgbe/xgbe-txrx.c
704
unsigned int last, context_next, context;
sys/dev/axgbe/xgbe-txrx.c
726
last = XGMAC_GET_BITS(packet->attributes, RX_PACKET_ATTRIBUTES,
sys/dev/axgbe/xgbe-txrx.c
748
"buf2 %d len %d frags %d error %d\n", __func__, last, context,
sys/dev/axgbe/xgbe-txrx.c
758
if (!last || context_next)
sys/dev/bge/if_bge.c
5016
struct mbuf *last;
sys/dev/bge/if_bge.c
5021
last = m;
sys/dev/bge/if_bge.c
5027
for (last = m; last->m_next != NULL; last = last->m_next);
sys/dev/bge/if_bge.c
5028
if (!(M_WRITABLE(last) && M_TRAILINGSPACE(last) >= padlen)) {
sys/dev/bge/if_bge.c
5036
last->m_next = n;
sys/dev/bge/if_bge.c
5037
last = n;
sys/dev/bge/if_bge.c
5042
memset(mtod(last, caddr_t) + last->m_len, 0, padlen);
sys/dev/bge/if_bge.c
5043
last->m_len += padlen;
sys/dev/bnxt/bnxt_en/bnxt.h
788
u8 last:1;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
771
bool last)
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
807
if (last && j == n)
sys/dev/bnxt/bnxt_en/bnxt_hwrm.h
134
bool last);
sys/dev/bnxt/bnxt_en/if_bnxt.c
1147
ctx->ctx_arr[last_type].last = 1;
sys/dev/bnxt/bnxt_en/if_bnxt.c
1154
rc = bnxt_hwrm_func_backing_store_cfg_v2(softc, ctxm, ctxm->last);
sys/dev/bnxt/bnxt_re/qplib_fp.c
2645
u32 start, last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2652
last = sq->swq_last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2653
if (start == last) {
sys/dev/bnxt/bnxt_re/qplib_fp.c
2657
if (sq->swq[last].wr_id == BNXT_QPLIB_FENCE_WRID) {
sys/dev/bnxt/bnxt_re/qplib_fp.c
2666
cqe->wr_id = sq->swq[last].wr_id;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2668
cqe->type = sq->swq[last].type;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2673
last, cqe->wr_id, cqe->status);
sys/dev/bnxt/bnxt_re/qplib_fp.c
2679
sq->swq[last].slots,
sys/dev/bnxt/bnxt_re/qplib_fp.c
2681
sq->swq_last = sq->swq[last].next_idx;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2696
u32 start, last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2716
last = rq->swq_last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2717
if (last == start)
sys/dev/bnxt/bnxt_re/qplib_fp.c
2724
cqe->wr_id = rq->swq[last].wr_id;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2728
last, cqe->wr_id, cqe->status);
sys/dev/bnxt/bnxt_re/qplib_fp.c
2733
rq->swq[last].slots,
sys/dev/bnxt/bnxt_re/qplib_fp.c
2735
rq->swq_last = rq->swq[last].next_idx;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2890
u32 start, last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2895
last = sq->swq_last;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2897
while (last != start) {
sys/dev/bnxt/bnxt_re/qplib_fp.c
2898
swq = &sq->swq[last];
sys/dev/bnxt/bnxt_re/qplib_fp.c
2906
last = swq->next_idx;
sys/dev/bxe/ecore_sp.c
2943
static inline int ecore_mcast_get_next_bin(struct ecore_mcast_obj *o, int last)
sys/dev/bxe/ecore_sp.c
2945
int i, j, inner_start = last % BIT_VEC64_ELEM_SZ;
sys/dev/bxe/ecore_sp.c
2947
for (i = last / BIT_VEC64_ELEM_SZ; i < ECORE_MCAST_VEC_SZ; i++) {
sys/dev/cxgbe/common/t4_hw.c
11519
int first, last, i;
sys/dev/cxgbe/common/t4_hw.c
11526
last = S_T7_FT_LAST;
sys/dev/cxgbe/common/t4_hw.c
11529
last = S_FT_LAST;
sys/dev/cxgbe/common/t4_hw.c
11532
for (filter_mask = 0, i = first; i <= last; i++) {
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
336
struct mbuf *m, *last;
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
346
last = m_last(m);
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
354
MPASS(padding <= M_TRAILINGSPACE(last));
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
355
bzero(mtod(last, uint8_t *) + last->m_len, padding);
sys/dev/cxgbe/cxgbei/icl_cxgbei.c
356
last->m_len += padding;
sys/dev/cxgbe/iw_cxgbe/ev.c
82
const u32 last = first + sc->vres.stag.size - 32;
sys/dev/cxgbe/iw_cxgbe/ev.c
85
for (i = 0, offset = first; offset <= last; i++, offset += 32) {
sys/dev/cxgbe/iw_cxgbe/id_table.c
56
obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last);
sys/dev/cxgbe/iw_cxgbe/id_table.c
62
alloc->last += arc4random() % RANDOM_SKIP;
sys/dev/cxgbe/iw_cxgbe/id_table.c
64
alloc->last = obj + 1;
sys/dev/cxgbe/iw_cxgbe/id_table.c
65
if (alloc->last >= alloc->max)
sys/dev/cxgbe/iw_cxgbe/id_table.c
66
alloc->last = 0;
sys/dev/cxgbe/iw_cxgbe/id_table.c
96
alloc->last = arc4random() % RANDOM_SKIP;
sys/dev/cxgbe/iw_cxgbe/id_table.c
98
alloc->last = 0;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
95
u32 last; /* hint for find */
sys/dev/cxgbe/t4_sge.c
6041
struct mbuf *m, *last;
sys/dev/cxgbe/t4_sge.c
6063
last = NULL;
sys/dev/cxgbe/t4_sge.c
6121
if (last != NULL)
sys/dev/cxgbe/t4_sge.c
6122
last->m_nextpkt = m;
sys/dev/cxgbe/t4_sge.c
6123
last = m;
sys/dev/cxgbe/t4_sge.c
6152
struct mbuf *m, *last;
sys/dev/cxgbe/t4_sge.c
6177
last = NULL;
sys/dev/cxgbe/t4_sge.c
6207
if (last != NULL)
sys/dev/cxgbe/t4_sge.c
6208
last->m_nextpkt = m;
sys/dev/cxgbe/t4_sge.c
6209
last = m;
sys/dev/cxgbe/tom/t4_cpl_io.c
1007
last = !!(flags & CXGBE_ISO_F);
sys/dev/cxgbe/tom/t4_cpl_io.c
1011
V_CPL_TX_DATA_ISO_FIRST(1) | V_CPL_TX_DATA_ISO_LAST(last) |
sys/dev/cxgbe/tom/t4_cpl_io.c
2457
struct mbuf *m, *top, *last;
sys/dev/cxgbe/tom/t4_cpl_io.c
2477
last = NULL;
sys/dev/cxgbe/tom/t4_cpl_io.c
2517
last->m_next = m;
sys/dev/cxgbe/tom/t4_cpl_io.c
2518
last = m;
sys/dev/cxgbe/tom/t4_cpl_io.c
991
unsigned int last;
sys/dev/dpaa2/dpaa2_ni.c
3033
.last = false
sys/dev/dpaa2/dpaa2_ni.c
3071
ctx.last = true;
sys/dev/dpaa2/dpaa2_ni.c
3211
if (ctx->last) {
sys/dev/dpaa2/dpaa2_ni.c
382
bool last;
sys/dev/dpaa2/dpaa2_swp.c
922
dpaa2_swp_cyc_diff(uint8_t ringsize, uint8_t first, uint8_t last)
sys/dev/dpaa2/dpaa2_swp.c
925
return ((first <= last)
sys/dev/dpaa2/dpaa2_swp.c
926
? (last - first) : ((2 * ringsize) - (first - last)));
sys/dev/drm2/drmP.h
1688
u32 last; /* protected by dev->vbl_lock, used */
sys/dev/drm2/drm_linux_list.h
158
struct list_head *last = list->prev;
sys/dev/drm2/drm_linux_list.h
163
last->next = next;
sys/dev/drm2/drm_linux_list.h
164
next->prev = last;
sys/dev/dwc/dwc1000_dma.c
195
uint32_t len, uint32_t flags, bool first, bool last)
sys/dev/dwc/dwc1000_dma.c
204
if (last)
sys/dev/dwc/dwc1000_dma.c
210
if (last)
sys/dev/dwc/dwc1000_dma.c
253
int last;
sys/dev/dwc/dwc1000_dma.c
297
last = sc->tx_desc_head;
sys/dev/dwc/dwc1000_dma.c
301
sc->txbuf_map[idx].last_desc_idx = last;
sys/dev/e1000/if_em.h
374
#define UPDATE_VF_REG(reg, last, cur) \
sys/dev/e1000/if_em.h
377
if (new < last) \
sys/dev/e1000/if_em.h
379
last = new; \
sys/dev/fdc/fdc.c
1591
struct resource *last;
sys/dev/fdc/fdc.c
1602
last = NULL;
sys/dev/fdc/fdc.c
1604
if (fdc->resio[i] != NULL && fdc->resio[i] != last) {
sys/dev/fdc/fdc.c
1607
last = fdc->resio[i];
sys/dev/hpt27xx/list.h
91
struct list_head *last = list->prev;
sys/dev/hpt27xx/list.h
97
last->next = at;
sys/dev/hpt27xx/list.h
98
at->prev = last;
sys/dev/hptnr/list.h
90
struct list_head *last = list->prev;
sys/dev/hptnr/list.h
96
last->next = at;
sys/dev/hptnr/list.h
97
at->prev = last;
sys/dev/hptrr/list.h
100
at->prev = last;
sys/dev/hptrr/list.h
93
struct list_head *last = list->prev;
sys/dev/hptrr/list.h
99
last->next = at;
sys/dev/ice/ice_ddp_common.c
266
bool last = ((i + 1) == count);
sys/dev/ice/ice_ddp_common.c
270
last, &offset, &info, NULL);
sys/dev/ice/ice_ddp_common.c
350
bool last = ((idx + 1) == count);
sys/dev/ice/ice_ddp_common.c
355
if (!last) {
sys/dev/ice/ice_ddp_common.c
358
last = ice_is_buffer_metadata((struct ice_buf_hdr *)next_buf);
sys/dev/ice/ice_ddp_common.c
361
return last;
sys/dev/ice/ice_ddp_common.c
397
bool last = false;
sys/dev/ice/ice_ddp_common.c
403
last = ice_is_last_download_buffer(bh, i, count);
sys/dev/ice/ice_ddp_common.c
405
status = ice_aq_download_pkg(hw, bh, ICE_PKG_BUF_SIZE, last,
sys/dev/ice/ice_ddp_common.c
417
if (last)
sys/dev/ice/ice_flow.c
1193
seg->fields[fld].src.last = last_loc;
sys/dev/ice/ice_flow.h
251
u16 last; /* Length or offset where the upper value is located */
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
332
int idx = 0, nbytes, last, first = 1;
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
355
last = nbytes == len && !(flags & IIC_M_NOSTOP);
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
356
if (last) {
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
369
if (last)
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
412
int idx = 0, nbytes, last, first = 1;
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
433
last = len == 0 && !(flags & IIC_M_NOSTOP);
sys/dev/iicbus/controller/cadence/cdnc_i2c.c
434
if (last) {
sys/dev/iicbus/controller/opencores/iicoc.c
243
iicoc_iicbus_read(device_t dev, char *buf, int len, int *read, int last,
sys/dev/iicbus/controller/opencores/iicoc.h
95
int iicoc_iicbus_read(device_t dev, char *buf, int len, int *read, int last,
sys/dev/iicbus/controller/rockchip/rk_i2c.c
427
rk_i2c_start_xfer(struct rk_i2c_softc *sc, struct iic_msg *msg, boolean_t last)
sys/dev/iicbus/controller/rockchip/rk_i2c.c
453
if (last)
sys/dev/iicbus/controller/twsi/twsi.c
389
twsi_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/dev/iicbus/controller/twsi/twsi.c
404
last_byte = ((*read == len - 1) && last) ? 1 : 0;
sys/dev/iicbus/controller/vybrid/vf_i2c.c
465
i2c_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/dev/iicbus/controller/vybrid/vf_i2c.c
494
if (last) {
sys/dev/iicbus/iic.c
224
iicuio_move(struct iic_cdevpriv *priv, struct uio *uio, int last)
sys/dev/iicbus/iic.c
256
((uio->uio_resid <= sizeof(buffer)) ? last : 0), 0);
sys/dev/iicbus/iic.c
464
CP(*s32, iicswab, last);
sys/dev/iicbus/iic.c
563
error = iicuio_move(priv, &ubuf, s->last);
sys/dev/iicbus/iic.c
73
uint32_t last;
sys/dev/iicbus/iic.c
97
static int iicuio_move(struct iic_cdevpriv *priv, struct uio *uio, int last);
sys/dev/iicbus/iic.h
50
int last;
sys/dev/iicbus/iicbb.c
376
iicbb_readbyte(device_t dev, bool last, uint8_t *data)
sys/dev/iicbus/iicbb.c
406
iicbb_sendbit(dev, last);
sys/dev/iicbus/iicbb.c
407
I2C_DEBUG(printf("r%02x%c ", *data, last ? '-' : '+'));
sys/dev/iicbus/iicbb.c
537
iicbb_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/dev/iicbus/iicbb.c
543
err = iicbb_readbyte(dev, (len == 1) ? last : 0,
sys/dev/iicbus/iiconf.c
336
iicbus_read(device_t bus, char *buf, int len, int *read, int last, int delay)
sys/dev/iicbus/iiconf.c
344
return (IICBUS_READ(device_get_parent(bus), buf, len, read, last, delay));
sys/dev/iicbus/mux/iicmux.c
158
iicmux_read(device_t dev, char *buf, int len, int *bytes, int last, int delay)
sys/dev/iicbus/mux/iicmux.c
162
return (iicbus_read(sc->busdev, buf, len, bytes, last, delay));
sys/dev/iommu/iommu.h
57
iommu_gaddr_t last; /* Greatest end in subtree */
sys/dev/iommu/iommu_gas.c
1094
(uintmax_t)entry->first, (uintmax_t)entry->last,
sys/dev/iommu/iommu_gas.c
163
free_down = MAX(child->free_down, bound - child->last);
sys/dev/iommu/iommu_gas.c
172
bound = child->last;
sys/dev/iommu/iommu_gas.c
174
delta += entry->last - bound;
sys/dev/iommu/iommu_gas.c
177
entry->last = bound;
sys/dev/iommu/iommu_gas.c
206
v = MAX(v, entry->start - l->last);
sys/dev/iommu/iommu_gas.c
434
first->last + min_free <= curr->start)
sys/dev/iommu/iommu_gas.c
462
iommu_gas_match_one(a, first->last, curr->start,
sys/dev/iommu/iommu_gas.c
487
while (curr != NULL && curr->last < addr)
sys/dev/iommu/iommu_gas.c
506
iommu_gas_match_one(a, first->last, curr->start,
sys/dev/ixgbe/if_ixv.c
1780
#define UPDATE_STAT_32(reg, last, count) \
sys/dev/ixgbe/if_ixv.c
1783
if (current < last) \
sys/dev/ixgbe/if_ixv.c
1785
last = current; \
sys/dev/ixgbe/if_ixv.c
1790
#define UPDATE_STAT_36(lsb, msb, last, count) \
sys/dev/ixgbe/if_ixv.c
1795
if (current < last) \
sys/dev/ixgbe/if_ixv.c
1797
last = current; \
sys/dev/ixl/i40e_nvm.c
1719
bool last;
sys/dev/ixl/i40e_nvm.c
1723
last = (transaction == I40E_NVM_LCB) || (transaction == I40E_NVM_SA);
sys/dev/ixl/i40e_nvm.c
1729
bytes, last, &cmd_details);
sys/dev/ixl/i40e_nvm.c
1758
bool last;
sys/dev/ixl/i40e_nvm.c
1762
last = (transaction & I40E_NVM_LCB);
sys/dev/ixl/i40e_nvm.c
1768
last, &cmd_details);
sys/dev/ixl/i40e_nvm.c
1799
bool last;
sys/dev/ixl/i40e_nvm.c
1803
last = (transaction & I40E_NVM_LCB);
sys/dev/ixl/i40e_nvm.c
1810
(u16)cmd->data_size, bytes, last,
sys/dev/mlx4/mlx4_core/mlx4.h
242
u32 last;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
118
obj = find_aligned_range(bitmap->table, bitmap->last,
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
129
if (obj == bitmap->last) {
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
130
bitmap->last = (obj + cnt);
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
131
if (bitmap->last >= bitmap->max)
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
132
bitmap->last = 0;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
163
bitmap->last = min(bitmap->last, obj);
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
179
bitmap->last = 0;
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
49
obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
58
bitmap->last = (obj + 1);
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
59
if (bitmap->last == bitmap->max)
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
60
bitmap->last = 0;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
274
struct mlx5_fc *counter = NULL, *last = NULL, *tmp;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
300
last = list_last_entry(&fc_stats->counters, struct mlx5_fc, list);
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
305
mlx5_fc_stats_query_counter_range(dev, counter, last->id);
sys/dev/mthca/mthca_allocator.c
47
obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last);
sys/dev/mthca/mthca_allocator.c
73
alloc->last = min(alloc->last, obj);
sys/dev/mthca/mthca_allocator.c
88
alloc->last = 0;
sys/dev/mthca/mthca_dev.h
181
u32 last;
sys/dev/mthca/mthca_provider.h
237
void *last;
sys/dev/mthca/mthca_provider.h
255
void *last;
sys/dev/mthca/mthca_qp.c
1228
qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
sys/dev/mthca/mthca_qp.c
1229
qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
sys/dev/mthca/mthca_qp.c
1650
prev_wqe = qp->sq.last;
sys/dev/mthca/mthca_qp.c
1651
qp->sq.last = wqe;
sys/dev/mthca/mthca_qp.c
1851
prev_wqe = qp->rq.last;
sys/dev/mthca/mthca_qp.c
1852
qp->rq.last = wqe;
sys/dev/mthca/mthca_qp.c
1991
prev_wqe = qp->sq.last;
sys/dev/mthca/mthca_qp.c
1992
qp->sq.last = wqe;
sys/dev/mthca/mthca_qp.c
829
qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
sys/dev/mthca/mthca_qp.c
832
qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
sys/dev/mthca/mthca_srq.c
195
srq->last = get_wqe(srq, srq->max - 1);
sys/dev/mthca/mthca_srq.c
508
prev_wqe = srq->last;
sys/dev/mthca/mthca_srq.c
509
srq->last = wqe;
sys/dev/mthca/mthca_srq.c
519
srq->last = prev_wqe;
sys/dev/netmap/netmap_mem2.c
347
int last;
sys/dev/netmap/netmap_mem2.c
349
last = (--nmd->refcount == 0);
sys/dev/netmap/netmap_mem2.c
350
if (last)
sys/dev/netmap/netmap_mem2.c
354
if (last)
sys/dev/ocs_fc/ocs_hw.c
3883
sge[1].last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
3885
sge[0].last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4497
data->last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4548
data->last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4655
data->last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4657
data[-1].last = FALSE;
sys/dev/ocs_fc/ocs_hw.c
4724
lsp->last = 0;
sys/dev/ocs_fc/ocs_hw.c
4786
data->last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4788
data[-1].last = FALSE;
sys/dev/ocs_fc/ocs_hw.c
4854
data->last = TRUE;
sys/dev/ocs_fc/ocs_hw.c
4856
data[-1].last = FALSE;
sys/dev/ocs_fc/ocs_hw.c
5092
ocs_hw_firmware_write(ocs_hw_t *hw, ocs_dma_t *dma, uint32_t size, uint32_t offset, int last, ocs_hw_fw_cb_t cb, void *arg)
sys/dev/ocs_fc/ocs_hw.c
5095
return ocs_hw_firmware_write_lancer(hw, dma, size, offset, last, cb, arg);
sys/dev/ocs_fc/ocs_hw.c
5124
ocs_hw_firmware_write_lancer(ocs_hw_t *hw, ocs_dma_t *dma, uint32_t size, uint32_t offset, int last, ocs_hw_fw_cb_t cb, void *arg)
sys/dev/ocs_fc/ocs_hw.c
5152
if (sli_cmd_common_write_object(&hw->sli, mbxdata, SLI4_BMBX_SIZE, noc, last,
sys/dev/ocs_fc/ocs_hw.c
6564
sge[i].last = (i == num_buffers - 1 ? 1 : 0);
sys/dev/ocs_fc/ocs_hw.c
91
static ocs_hw_rtn_e ocs_hw_firmware_write_lancer(ocs_hw_t *hw, ocs_dma_t *dma, uint32_t size, uint32_t offset, int last, ocs_hw_fw_cb_t cb, void *arg);
sys/dev/ocs_fc/ocs_hw_queues.c
2410
data[0].last = 0;
sys/dev/ocs_fc/ocs_hw_queues.c
2443
data[1].last = 0;
sys/dev/ocs_fc/ocs_hw_queues.c
2450
data[2].last = TRUE;
sys/dev/ocs_fc/ocs_ioctl.c
680
int last = 0;
sys/dev/ocs_fc/ocs_ioctl.c
703
last = 1;
sys/dev/ocs_fc/ocs_ioctl.c
707
last, ocs_fw_write_cb, &result);
sys/dev/ocs_fc/ocs_ioctl.c
719
if (last) {
sys/dev/ocs_fc/ocs_mgmt.c
622
int last = 0;
sys/dev/ocs_fc/ocs_mgmt.c
653
last = 1;
sys/dev/ocs_fc/ocs_mgmt.c
657
ocs_hw_firmware_write(&ocs->hw, &dma, xfer_size, offset, last, ocs_mgmt_fw_write_cb, &result);
sys/dev/ocs_fc/ocs_mgmt.c
680
if (last) {
sys/dev/ocs_fc/sli4.h
481
last:1;
sys/dev/ocs_fc/sli4.h
497
last:1;
sys/dev/ocs_fc/sli4.h
523
last:1;
sys/dev/ocs_fc/sli4.h
547
last:1;
sys/dev/ow/ow.c
431
int first, second, i, dir, prior, last, err, retries;
sys/dev/ow/ow.c
438
last = -2;
sys/dev/ow/ow.c
442
while (last != -1) {
sys/dev/ow/ow.c
449
last = -1;
sys/dev/ow/ow.c
492
last = i;
sys/dev/ow/ow.c
526
prior = last;
sys/dev/pcf/pcf.c
419
pcf_read(device_t dev, char *buf, int len, int *read, int last,
sys/dev/pcf/pcf.c
433
if (len == 1 && last)
sys/dev/pcf/pcf.c
450
if (len == 1 && last)
sys/dev/pcf/pcf.c
455
else if (len == 2 && last)
sys/dev/ppbus/ppb_1284.c
333
byte_peripheral_outbyte(device_t bus, char *buffer, int last)
sys/dev/ppbus/ppb_1284.c
365
if (!last) {
sys/dev/qat/qat_common/adf_heartbeat.c
158
u16 last = prev[thr].resp_heartbeat_cnt;
sys/dev/qat/qat_common/adf_heartbeat.c
161
resp == last) {
sys/dev/qlnx/qlnxe/ecore_cxt.c
1070
size += (ilt_clients[i].last.val -
sys/dev/qlnx/qlnxe/ecore_cxt.c
1299
clients[ILT_CLI_CDUC].last.reg = ILT_CFG_REG(CDUC, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1303
clients[ILT_CLI_QM].last.reg = ILT_CFG_REG(QM, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1307
clients[ILT_CLI_TM].last.reg = ILT_CFG_REG(TM, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1311
clients[ILT_CLI_SRC].last.reg = ILT_CFG_REG(SRC, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1315
clients[ILT_CLI_CDUT].last.reg = ILT_CFG_REG(CDUT, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1319
clients[ILT_CLI_TSDM].last.reg = ILT_CFG_REG(TSDM, LAST_ILT);
sys/dev/qlnx/qlnxe/ecore_cxt.c
169
struct ilt_cfg_pair last;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1691
ilt_clients[i].last.reg,
sys/dev/qlnx/qlnxe/ecore_cxt.c
1692
ilt_clients[i].last.val);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1782
for (; line <= clients[i].last.val - p_mngr->pf_start_line;
sys/dev/qlnx/qlnxe/ecore_cxt.c
585
p_cli->last.val = *p_line-1;
sys/dev/qlnx/qlnxe/ecore_cxt.c
589
client_id, p_cli->first.val, p_cli->last.val,
sys/dev/qlnx/qlnxe/ecore_cxt.c
621
p_cli->last.val = 0;
sys/dev/qlxge/qls_hw.h
991
uint16_t last;
sys/dev/rtwn/pci/rtwn_pci_attach.c
359
ring->last = ring->cur = 0;
sys/dev/rtwn/pci/rtwn_pci_attach.c
472
tx_ring->last = tx_ring->cur = 0;
sys/dev/rtwn/pci/rtwn_pci_rx.c
281
__func__, qid, ring->last, ring->cur);
sys/dev/rtwn/pci/rtwn_pci_rx.c
286
while(ring->last != ring->cur) {
sys/dev/rtwn/pci/rtwn_pci_rx.c
287
data = &ring->tx_data[ring->last];
sys/dev/rtwn/pci/rtwn_pci_rx.c
289
((uint8_t *)ring->desc + sc->txdesc_len * ring->last);
sys/dev/rtwn/pci/rtwn_pci_rx.c
312
ring->last = (ring->last + 1) % RTWN_PCI_TX_LIST_COUNT;
sys/dev/rtwn/pci/rtwn_pci_var.h
64
int last;
sys/dev/safexcel/safexcel.c
1980
safexcel_res_descr_add(struct safexcel_ring *ring, bool first, bool last,
sys/dev/safexcel/safexcel.c
1999
rdesc->last_seg = last;
sys/dev/safexcel/safexcel.c
2016
safexcel_cmd_descr_add(struct safexcel_ring *ring, bool first, bool last,
sys/dev/safexcel/safexcel.c
2035
cdesc->last_seg = last;
sys/dev/safexcel/safexcel.c
2119
bool first, last;
sys/dev/safexcel/safexcel.c
2183
last = i == sg->sg_nseg - 1;
sys/dev/safexcel/safexcel.c
2185
cdesc = safexcel_cmd_descr_add(ring, first, last,
sys/dev/safexcel/safexcel.c
2211
last = i == sg->sg_nseg - 1;
sys/dev/safexcel/safexcel.c
2213
if (safexcel_res_descr_add(ring, first, last,
sys/dev/sfxge/common/efx_impl.h
1280
efx_mac_stat_t last;
sys/dev/sfxge/common/efx_mac.c
662
(unsigned int)rngp->last) {
sys/dev/sfxge/common/efx_mac.c
667
EFSYS_ASSERT3U(rngp->first, <=, rngp->last);
sys/dev/sfxge/common/efx_mac.c
668
EFSYS_ASSERT3U(rngp->last, <, EFX_MAC_NSTATS);
sys/dev/sfxge/common/efx_mac.c
675
(unsigned int)rngp->last < el_min)
sys/dev/sfxge/common/efx_mac.c
678
high = MIN((unsigned int)rngp->last, el_max);
sys/dev/smartpqi/smartpqi_request.c
1238
if (l->block.last < l->block.first ||
sys/dev/smartpqi/smartpqi_request.c
1239
l->block.last >=
sys/dev/smartpqi/smartpqi_request.c
1275
l->row.last = l->block.last / l->row.blks_per_row;
sys/dev/smartpqi/smartpqi_request.c
1278
l->row.offset_last = (uint32_t)(l->block.last -
sys/dev/smartpqi/smartpqi_request.c
1279
(l->row.last * l->row.blks_per_row));
sys/dev/smartpqi/smartpqi_request.c
1281
l->col.last = l->row.offset_last / l->strip_sz;
sys/dev/smartpqi/smartpqi_request.c
1294
if (l->row.first != l->row.last || l->col.first != l->col.last) {
sys/dev/smartpqi/smartpqi_request.c
1380
l->group.last = (l->block.last % l->stripesz) /
sys/dev/smartpqi/smartpqi_request.c
1383
if (l->group.first != l->group.last) {
sys/dev/smartpqi/smartpqi_request.c
1403
l->r5or6.row.last = l->block.last / l->stripesz;
sys/dev/smartpqi/smartpqi_request.c
1405
if (l->r5or6.row.first != l->r5or6.row.last) {
sys/dev/smartpqi/smartpqi_request.c
1426
(uint32_t)((l->block.last % l->stripesz) %
sys/dev/smartpqi/smartpqi_request.c
1431
l->r5or6.col.last = l->r5or6.row.offset_last / l->strip_sz;
sys/dev/smartpqi/smartpqi_request.c
1433
if (l->r5or6.col.first != l->r5or6.col.last) {
sys/dev/smartpqi/smartpqi_request.c
1593
DBG_INFO("%-25s: 0x%lx\n", "block.last", l->block.last);
sys/dev/smartpqi/smartpqi_request.c
1598
DBG_INFO("%-25s: 0x%lx\n", "row.last", l->row.last);
sys/dev/smartpqi/smartpqi_request.c
1604
DBG_INFO("%-25s: 0x%x\n", "col.last", l->col.last);
sys/dev/smartpqi/smartpqi_request.c
1610
DBG_INFO("%-25s: 0x%lx\n", "r5or6.row.last", l->r5or6.row.last);
sys/dev/smartpqi/smartpqi_request.c
1620
DBG_INFO("%-25s: 0x%x\n", "r5or6.col.last", l->r5or6.col.last);
sys/dev/smartpqi/smartpqi_request.c
1627
DBG_INFO("%-25s: 0x%x\n", "group.last", l->group.last);
sys/dev/smartpqi/smartpqi_request.c
1803
l->block.last = l->block.first + l->block.cnt - 1;
sys/dev/smartpqi/smartpqi_structures.h
1016
uint64_t last; /* last row */
sys/dev/smartpqi/smartpqi_structures.h
1025
uint32_t last; /* last column of req */
sys/dev/smartpqi/smartpqi_structures.h
1030
uint64_t last; /* last block number of req */
sys/dev/smartpqi/smartpqi_structures.h
1048
uint32_t last; /* last group */
sys/dev/sym/sym_hipd.c
177
struct sym_quehead *last = list->blink;
sys/dev/sym/sym_hipd.c
183
last->flink = at;
sys/dev/sym/sym_hipd.c
184
at->blink = last;
sys/dev/usb/controller/ehci.c
1002
#define EHCI_REMOVE_FS_TD(std,last) (last) = _ehci_remove_fs_td(std,last)
sys/dev/usb/controller/ehci.c
1004
_ehci_remove_fs_td(ehci_sitd_t *std, ehci_sitd_t *last)
sys/dev/usb/controller/ehci.c
1006
DPRINTFN(11, "%p from %p\n", std, last);
sys/dev/usb/controller/ehci.c
1019
return ((last == std) ? std->prev : last);
sys/dev/usb/controller/ehci.c
1022
#define EHCI_REMOVE_HS_TD(std,last) (last) = _ehci_remove_hs_td(std,last)
sys/dev/usb/controller/ehci.c
1024
_ehci_remove_hs_td(ehci_itd_t *std, ehci_itd_t *last)
sys/dev/usb/controller/ehci.c
1026
DPRINTFN(11, "%p from %p\n", std, last);
sys/dev/usb/controller/ehci.c
1039
return ((last == std) ? std->prev : last);
sys/dev/usb/controller/ehci.c
1042
#define EHCI_REMOVE_QH(sqh,last) (last) = _ehci_remove_qh(sqh,last)
sys/dev/usb/controller/ehci.c
1044
_ehci_remove_qh(ehci_qh_t *sqh, ehci_qh_t *last)
sys/dev/usb/controller/ehci.c
1046
DPRINTFN(11, "%p from %p\n", sqh, last);
sys/dev/usb/controller/ehci.c
1061
last = ((last == sqh) ? sqh->prev : last);
sys/dev/usb/controller/ehci.c
1067
return (last);
sys/dev/usb/controller/ehci.c
918
#define EHCI_APPEND_FS_TD(std,last) (last) = _ehci_append_fs_td(std,last)
sys/dev/usb/controller/ehci.c
920
_ehci_append_fs_td(ehci_sitd_t *std, ehci_sitd_t *last)
sys/dev/usb/controller/ehci.c
922
DPRINTFN(11, "%p to %p\n", std, last);
sys/dev/usb/controller/ehci.c
926
std->next = last->next;
sys/dev/usb/controller/ehci.c
927
std->sitd_next = last->sitd_next;
sys/dev/usb/controller/ehci.c
929
std->prev = last;
sys/dev/usb/controller/ehci.c
936
last->next = std;
sys/dev/usb/controller/ehci.c
937
last->sitd_next = std->sitd_self;
sys/dev/usb/controller/ehci.c
939
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/ehci.c
944
#define EHCI_APPEND_HS_TD(std,last) (last) = _ehci_append_hs_td(std,last)
sys/dev/usb/controller/ehci.c
946
_ehci_append_hs_td(ehci_itd_t *std, ehci_itd_t *last)
sys/dev/usb/controller/ehci.c
948
DPRINTFN(11, "%p to %p\n", std, last);
sys/dev/usb/controller/ehci.c
952
std->next = last->next;
sys/dev/usb/controller/ehci.c
953
std->itd_next = last->itd_next;
sys/dev/usb/controller/ehci.c
955
std->prev = last;
sys/dev/usb/controller/ehci.c
962
last->next = std;
sys/dev/usb/controller/ehci.c
963
last->itd_next = std->itd_self;
sys/dev/usb/controller/ehci.c
965
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/ehci.c
970
#define EHCI_APPEND_QH(sqh,last) (last) = _ehci_append_qh(sqh,last)
sys/dev/usb/controller/ehci.c
972
_ehci_append_qh(ehci_qh_t *sqh, ehci_qh_t *last)
sys/dev/usb/controller/ehci.c
974
DPRINTFN(11, "%p to %p\n", sqh, last);
sys/dev/usb/controller/ehci.c
979
return (last);
sys/dev/usb/controller/ehci.c
983
sqh->next = last->next;
sys/dev/usb/controller/ehci.c
984
sqh->qh_link = last->qh_link;
sys/dev/usb/controller/ehci.c
986
sqh->prev = last;
sys/dev/usb/controller/ehci.c
994
last->next = sqh;
sys/dev/usb/controller/ehci.c
995
last->qh_link = sqh->qh_self;
sys/dev/usb/controller/ehci.c
997
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/ohci.c
655
#define OHCI_APPEND_QH(sed,last) (last) = _ohci_append_qh(sed,last)
sys/dev/usb/controller/ohci.c
657
_ohci_append_qh(ohci_ed_t *sed, ohci_ed_t *last)
sys/dev/usb/controller/ohci.c
659
DPRINTFN(11, "%p to %p\n", sed, last);
sys/dev/usb/controller/ohci.c
664
return (last);
sys/dev/usb/controller/ohci.c
668
sed->next = last->next;
sys/dev/usb/controller/ohci.c
669
sed->ed_next = last->ed_next;
sys/dev/usb/controller/ohci.c
672
sed->prev = last;
sys/dev/usb/controller/ohci.c
680
last->next = sed;
sys/dev/usb/controller/ohci.c
681
last->ed_next = sed->ed_self;
sys/dev/usb/controller/ohci.c
683
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/ohci.c
688
#define OHCI_REMOVE_QH(sed,last) (last) = _ohci_remove_qh(sed,last)
sys/dev/usb/controller/ohci.c
690
_ohci_remove_qh(ohci_ed_t *sed, ohci_ed_t *last)
sys/dev/usb/controller/ohci.c
692
DPRINTFN(11, "%p from %p\n", sed, last);
sys/dev/usb/controller/ohci.c
707
last = ((last == sed) ? sed->prev : last);
sys/dev/usb/controller/ohci.c
713
return (last);
sys/dev/usb/controller/uhci.c
888
#define UHCI_APPEND_TD(std,last) (last) = _uhci_append_td(std,last)
sys/dev/usb/controller/uhci.c
890
_uhci_append_td(uhci_td_t *std, uhci_td_t *last)
sys/dev/usb/controller/uhci.c
892
DPRINTFN(11, "%p to %p\n", std, last);
sys/dev/usb/controller/uhci.c
896
std->next = last->next;
sys/dev/usb/controller/uhci.c
897
std->td_next = last->td_next;
sys/dev/usb/controller/uhci.c
899
std->prev = last;
sys/dev/usb/controller/uhci.c
906
last->next = std;
sys/dev/usb/controller/uhci.c
907
last->td_next = std->td_self;
sys/dev/usb/controller/uhci.c
909
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/uhci.c
914
#define UHCI_APPEND_QH(sqh,last) (last) = _uhci_append_qh(sqh,last)
sys/dev/usb/controller/uhci.c
916
_uhci_append_qh(uhci_qh_t *sqh, uhci_qh_t *last)
sys/dev/usb/controller/uhci.c
918
DPRINTFN(11, "%p to %p\n", sqh, last);
sys/dev/usb/controller/uhci.c
923
return (last);
sys/dev/usb/controller/uhci.c
927
sqh->h_next = last->h_next;
sys/dev/usb/controller/uhci.c
928
sqh->qh_h_next = last->qh_h_next;
sys/dev/usb/controller/uhci.c
930
sqh->h_prev = last;
sys/dev/usb/controller/uhci.c
940
last->h_next = sqh;
sys/dev/usb/controller/uhci.c
941
last->qh_h_next = sqh->qh_self;
sys/dev/usb/controller/uhci.c
943
usb_pc_cpu_flush(last->page_cache);
sys/dev/usb/controller/uhci.c
950
#define UHCI_REMOVE_TD(std,last) (last) = _uhci_remove_td(std,last)
sys/dev/usb/controller/uhci.c
952
_uhci_remove_td(uhci_td_t *std, uhci_td_t *last)
sys/dev/usb/controller/uhci.c
954
DPRINTFN(11, "%p from %p\n", std, last);
sys/dev/usb/controller/uhci.c
967
return ((last == std) ? std->prev : last);
sys/dev/usb/controller/uhci.c
970
#define UHCI_REMOVE_QH(sqh,last) (last) = _uhci_remove_qh(sqh,last)
sys/dev/usb/controller/uhci.c
972
_uhci_remove_qh(uhci_qh_t *sqh, uhci_qh_t *last)
sys/dev/usb/controller/uhci.c
974
DPRINTFN(11, "%p from %p\n", sqh, last);
sys/dev/usb/controller/uhci.c
989
last = ((last == sqh) ? sqh->h_prev : last);
sys/dev/usb/controller/uhci.c
995
return (last);
sys/dev/usb/storage/cfumass.c
463
int last;
sys/dev/usb/storage/cfumass.c
480
last = refcount_release(&sc->sc_queued);
sys/dev/usb/storage/cfumass.c
481
if (last != 0)
sys/dev/usb/usb_hub_acpi.c
128
const int last = sizeof(typelist) / sizeof(typelist[0]);
sys/dev/usb/usb_hub_acpi.c
134
return (type < last) ? typelist[type] : "Unknown";
sys/dev/virtio/block/virtio_blk.c
1403
int last;
sys/dev/virtio/block/virtio_blk.c
1406
last = 0;
sys/dev/virtio/block/virtio_blk.c
1408
while ((req = virtqueue_drain(vq, &last)) != NULL) {
sys/dev/virtio/console/virtio_console.c
1203
int last;
sys/dev/virtio/console/virtio_console.c
1205
last = 0;
sys/dev/virtio/console/virtio_console.c
1207
while ((buf = virtqueue_drain(vq, &last)) != NULL)
sys/dev/virtio/console/virtio_console.c
684
int last;
sys/dev/virtio/console/virtio_console.c
687
last = 0;
sys/dev/virtio/console/virtio_console.c
693
while ((control = virtqueue_drain(vq, &last)) != NULL)
sys/dev/virtio/network/if_vtnet.c
1533
int last;
sys/dev/virtio/network/if_vtnet.c
1542
last = 0;
sys/dev/virtio/network/if_vtnet.c
1544
while ((m = virtqueue_drain(vq, &last)) != NULL) {
sys/dev/virtio/network/if_vtnet.c
2383
int last;
sys/dev/virtio/network/if_vtnet.c
2392
last = 0;
sys/dev/virtio/network/if_vtnet.c
2394
while ((txhdr = virtqueue_drain(vq, &last)) != NULL) {
sys/dev/virtio/scsi/virtio_scsi.c
1906
int last;
sys/dev/virtio/scsi/virtio_scsi.c
1909
last = 0;
sys/dev/virtio/scsi/virtio_scsi.c
1911
while (virtqueue_drain(vq, &last) != NULL)
sys/dev/virtio/scsi/virtio_scsi.c
1986
int last;
sys/dev/virtio/scsi/virtio_scsi.c
1988
last = 0;
sys/dev/virtio/scsi/virtio_scsi.c
1992
while ((req = virtqueue_drain(vq, &last)) != NULL)
sys/dev/virtio/virtqueue.c
765
virtqueue_drain(struct virtqueue *vq, int *last)
sys/dev/virtio/virtqueue.c
771
idx = *last;
sys/dev/virtio/virtqueue.c
782
*last = idx;
sys/dev/virtio/virtqueue.h
71
void *virtqueue_drain(struct virtqueue *vq, int *last);
sys/dev/vmm/vmm_dev.c
1314
vm_ooffset_t first, last;
sys/dev/vmm/vmm_dev.c
1326
last = *offset + len;
sys/dev/vmm/vmm_dev.c
1327
if ((nprot & PROT_EXEC) || first < 0 || first >= last)
sys/dev/vmm/vmm_dev.c
1336
if (seglen >= last)
sys/dev/vmm/vmm_dev.c
802
vm_ooffset_t segoff, first, last;
sys/dev/vmm/vmm_dev.c
807
last = first + mapsize;
sys/dev/vmm/vmm_dev.c
808
if ((nprot & PROT_EXEC) || first < 0 || first >= last)
sys/dev/vmm/vmm_dev.c
830
if (first >= gpa && last <= gpa + len)
sys/dev/vmm/vmm_mem.c
266
vm_ooffset_t last;
sys/dev/vmm/vmm_mem.c
285
last = first + len;
sys/dev/vmm/vmm_mem.c
286
if (first >= last || last > seg->len)
sys/dev/vmm/vmm_mem.c
289
if ((gpa | first | last) & PAGE_MASK)
sys/dev/vnic/thunder_bgx_fdt.c
151
char last;
sys/dev/vnic/thunder_bgx_fdt.c
195
last = phy_name[sz - 1];
sys/dev/vnic/thunder_bgx_fdt.c
196
if (last == '\0' || last == '@' || isdigit(last))
sys/dev/vt/vt_font.c
139
unsigned int i, last = 0;
sys/dev/vt/vt_font.c
143
if (i > 0 && vfm[i].vfm_src <= last)
sys/dev/vt/vt_font.c
151
last = vfm[i].vfm_src + vfm[i].vfm_len;
sys/dev/xdma/xdma.h
127
bool last;
sys/dev/xdma/xdma_sglist.c
92
sg[i].last = 0;
sys/dev/xdma/xdma_sglist.c
96
sg[nsegs - 1].last = 1;
sys/fs/autofs/autofs.c
389
int error = 0, request_error, last;
sys/fs/autofs/autofs.c
474
last = refcount_release(&ar->ar_refcount);
sys/fs/autofs/autofs.c
475
if (last) {
sys/fs/ext2fs/ext2_alloc.c
1293
ext2_fix_bitmap_tail(unsigned char *bitmap, int first, int last)
sys/fs/ext2fs/ext2_alloc.c
1297
for (i = first; i <= last; i++)
sys/fs/ext2fs/ext2_alloc.c
810
int first, last;
sys/fs/ext2fs/ext2_alloc.c
814
last = first + EXT2_DESCS_PER_BLOCK(fs) - 1;
sys/fs/ext2fs/ext2_alloc.c
816
if (cg == first || cg == first + 1 || cg == last)
sys/fs/ext2fs/ext2_htree.c
546
struct ext2fs_direct_2 *ep, *last;
sys/fs/ext2fs/ext2_htree.c
623
last = (struct ext2fs_direct_2 *)block1;
sys/fs/ext2fs/ext2_htree.c
629
last = (struct ext2fs_direct_2 *)
sys/fs/ext2fs/ext2_htree.c
630
((char *)last + entry_len);
sys/fs/ext2fs/ext2_htree.c
632
memcpy((void *)last, (void *)ep, entry_len);
sys/fs/ext2fs/ext2_htree.c
633
last->e2d_reclen = htole16(entry_len);
sys/fs/ext2fs/ext2_htree.c
643
last->e2d_reclen = htole16(block1 + blksize - (char *)last -
sys/fs/ext2fs/ext2_htree.c
647
ext2_append_entry(block1, blksize, last, entry, csum_size);
sys/fs/ext2fs/ext2_inode.c
128
e2fs_lbn_t nb, nlbn, last;
sys/fs/ext2fs/ext2_inode.c
139
last = lastbn;
sys/fs/ext2fs/ext2_inode.c
141
last /= factor;
sys/fs/ext2fs/ext2_inode.c
171
bzero((caddr_t)&bap[last + 1],
sys/fs/ext2fs/ext2_inode.c
172
(NINDIR(fs) - (last + 1)) * sizeof(e2fs_daddr_t));
sys/fs/ext2fs/ext2_inode.c
173
if (last == -1)
sys/fs/ext2fs/ext2_inode.c
187
for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
sys/fs/ext2fs/ext2_inode.c
206
last = lastbn % factor;
sys/fs/ext2fs/ext2_inode.c
210
last, level - 1, &blkcount)) != 0)
sys/fs/fdescfs/fdesc_vfsops.c
188
int last;
sys/fs/fdescfs/fdesc_vfsops.c
206
last = min(fdp->fd_nfiles, lim);
sys/fs/fdescfs/fdesc_vfsops.c
208
for (i = fdp->fd_freefile; i < last; i++)
sys/fs/nfs/nfsrvstate.h
227
time_t last;
sys/fs/nfs/nfsrvstate.h
246
#define ls_lastrecall ls_un.deleg.last
sys/fs/tmpfs/tmpfs_subr.c
713
bool last;
sys/fs/tmpfs/tmpfs_subr.c
718
last = refcount_release(&node->tn_refcount);
sys/fs/tmpfs/tmpfs_subr.c
719
if (node->tn_attached && (detach || last)) {
sys/fs/tmpfs/tmpfs_subr.c
725
if (!last)
sys/geom/eli/g_eli_ctl.c
196
int *force, *last, *nargs, error;
sys/geom/eli/g_eli_ctl.c
217
last = gctl_get_paraml(req, "last", sizeof(*last));
sys/geom/eli/g_eli_ctl.c
218
if (last == NULL) {
sys/geom/eli/g_eli_ctl.c
235
if (*last) {
sys/geom/part/g_part.c
443
struct g_part_entry *entry, *last;
sys/geom/part/g_part.c
445
last = NULL;
sys/geom/part/g_part.c
453
last = entry;
sys/geom/part/g_part.c
459
if (last == NULL)
sys/geom/part/g_part.c
462
LIST_INSERT_AFTER(last, entry, gpe_entry);
sys/geom/part/g_part.c
724
struct g_part_entry *delent, *last, *entry;
sys/geom/part/g_part.c
755
delent = last = NULL;
sys/geom/part/g_part.c
766
last = entry;
sys/geom/part/g_part.c
807
if (last == NULL)
sys/geom/part/g_part.c
810
LIST_INSERT_AFTER(last, entry, gpe_entry);
sys/geom/part/g_part_apm.c
252
uint32_t last;
sys/geom/part/g_part_apm.c
265
last = MIN(pp->mediasize / pp->sectorsize, UINT32_MAX) - 1;
sys/geom/part/g_part_apm.c
268
basetable->gpt_last = last;
sys/geom/part/g_part_apm.c
272
table->ddr.ddr_blkcount = last + 1;
sys/geom/part/g_part_gpt.c
1037
} else if (table->lba[GPT_ELT_SECHDR] != last) {
sys/geom/part/g_part_gpt.c
1327
quad_t lba, last;
sys/geom/part/g_part_gpt.c
1331
last = pp->mediasize / pp->sectorsize - 1;
sys/geom/part/g_part_gpt.c
1337
table->lba[GPT_ELT_SECHDR] = last;
sys/geom/part/g_part_gpt.c
1338
table->lba[GPT_ELT_SECTBL] = last - tblsz;
sys/geom/part/g_part_gpt.c
1345
min = end = last - tblsz - 1;
sys/geom/part/g_part_gpt.c
446
quad_t lba, last;
sys/geom/part/g_part_gpt.c
451
last = (pp->mediasize / pp->sectorsize) - 1;
sys/geom/part/g_part_gpt.c
459
table->lba[elt] = last;
sys/geom/part/g_part_gpt.c
495
if (hdr->hdr_lba_alt > last && geom_part_check_integrity)
sys/geom/part/g_part_gpt.c
500
if (hdr->hdr_lba_start < 2 || hdr->hdr_lba_start >= last)
sys/geom/part/g_part_gpt.c
503
if (hdr->hdr_lba_end < hdr->hdr_lba_start || hdr->hdr_lba_end >= last)
sys/geom/part/g_part_gpt.c
513
if (hdr->hdr_lba_table < 2 || hdr->hdr_lba_table >= last)
sys/geom/part/g_part_gpt.c
521
if (lba >= last)
sys/geom/part/g_part_gpt.c
938
uint64_t last;
sys/geom/part/g_part_gpt.c
943
last = (pp->mediasize / pp->sectorsize) - 1;
sys/geom/part/g_part_ldm.c
442
uint64_t offset, last;
sys/geom/part/g_part_ldm.c
454
last =
sys/geom/part/g_part_ldm.c
457
last = pp->mediasize / pp->sectorsize - 1;
sys/geom/part/g_part_ldm.c
472
db->ph.db_offset = last - LDM_DB_SIZE;
sys/geom/part/g_part_ldm.c
489
if (hdr.start > last ||
sys/geom/part/g_part_ldm.c
490
hdr.start + hdr.size - 1 > last ||
sys/geom/part/g_part_ldm.c
493
hdr.db_offset + LDM_DB_SIZE - 1 > last ||
sys/geom/part/g_part_ldm.c
505
last);
sys/geom/part/g_part_ldm.c
774
struct ldm_volume *volume, *last;
sys/geom/part/g_part_ldm.c
959
last = NULL;
sys/geom/part/g_part_ldm.c
963
last = volume;
sys/geom/part/g_part_ldm.c
965
if (last != NULL)
sys/geom/part/g_part_ldm.c
966
LIST_INSERT_AFTER(last, &blk->u.vol, entry);
sys/geom/uzip/g_uzip.c
400
if (err != 0 && sc->toc[blk].last != 0) {
sys/geom/uzip/g_uzip.c
639
last_blk->last = 1;
sys/geom/uzip/g_uzip.c
643
if (sc->toc[i].last == 0) {
sys/geom/uzip/g_uzip.c
67
unsigned char last:1;
sys/i386/i386/geode.c
159
static unsigned last;
sys/i386/i386/geode.c
163
if (c < last)
sys/i386/i386/geode.c
165
last = c;
sys/i386/linux/linux_proto.h
1676
char last_l_[PADL_(l_uint)]; l_uint last; char last_r_[PADR_(l_uint)];
sys/i386/linux/linux_systrace_args.c
3261
iarg[a++] = p->last; /* l_uint */
sys/kern/init_main.c
262
int last;
sys/kern/init_main.c
275
last = SI_SUB_DUMMY;
sys/kern/init_main.c
298
if (sip->subsystem > last)
sys/kern/init_main.c
302
if (sip->subsystem != last && verbose_sysinit != 0) {
sys/kern/init_main.c
334
last = sip->subsystem;
sys/kern/kern_intr.c
216
char *last;
sys/kern/kern_intr.c
254
last = &ie->ie_fullname[sizeof(ie->ie_fullname) - 2];
sys/kern/kern_intr.c
257
if (*last == '+') {
sys/kern/kern_intr.c
258
*last = '*';
sys/kern/kern_intr.c
261
*last = '+';
sys/kern/kern_linker.c
198
int last;
sys/kern/kern_linker.c
230
last = SI_SUB_DUMMY;
sys/kern/kern_linker.c
237
if ((*sipp)->subsystem > last)
sys/kern/kern_linker.c
243
last = (*sipp)->subsystem;
sys/kern/kern_linker.c
253
int last;
sys/kern/kern_linker.c
289
last = SI_SUB_DUMMY;
sys/kern/kern_linker.c
294
if ((*sipp)->subsystem > last)
sys/kern/kern_linker.c
300
last = (*sipp)->subsystem;
sys/kern/kern_switch.c
498
int i, last, idx;
sys/kern/kern_switch.c
506
last = RQSW_IDX(lvl_max);
sys/kern/kern_switch.c
509
if (i == last)
sys/kern/kern_switch.c
515
for (++i; i < last; ++i) {
sys/kern/kern_switch.c
522
MPASS(i == last);
sys/kern/kern_tc.c
2057
unsigned u, *last;
sys/kern/kern_tc.c
2061
last = DPCPU_PTR(tc_cpu_ticks_last);
sys/kern/kern_tc.c
2064
if (u < *last)
sys/kern/kern_tc.c
2066
*last = u;
sys/kern/kern_tc.c
536
struct fftimehands *last;
sys/kern/kern_tc.c
540
last = ffth + NUM_ELEMENTS(ffth) - 1;
sys/kern/kern_tc.c
541
for (cur = ffth; cur < last; cur++)
sys/kern/kern_tc.c
543
last->next = ffth;
sys/kern/kern_timeout.c
1523
int cpu, last;
sys/kern/kern_timeout.c
1530
cpu = last = addr;
sys/kern/kern_timeout.c
1533
last = mp_maxid;
sys/kern/kern_timeout.c
1536
while (cpu <= last) {
sys/kern/kern_timeout.c
435
sbintime_t first, last, lookahead, max, tmp_max;
sys/kern/kern_timeout.c
456
first = last = now;
sys/kern/kern_timeout.c
458
last += lookahead;
sys/kern/kern_timeout.c
459
last &= (0xffffffffffffffffLLU << (32 - CC_HASH_SHIFT));
sys/kern/kern_timeout.c
460
lastb = callout_hash(last) - 1;
sys/kern/kern_timeout.c
461
max = last;
sys/kern/kern_timeout.c
508
} else if (c->c_time > last) {
sys/kern/kern_timeout.c
522
if (tmp_max < last)
sys/kern/kern_timeout.c
523
last = tmp_max;
sys/kern/kern_timeout.c
534
cc->cc_firstevent = last;
sys/kern/kern_timeout.c
535
cpu_new_callout(curcpu, last, first);
sys/kern/subr_asan.c
211
int8_t last = (addr & KASAN_SHADOW_MASK) + 1;
sys/kern/subr_asan.c
213
*byte = last;
sys/kern/subr_asan.c
316
int8_t last = (addr & KASAN_SHADOW_MASK) + 1;
sys/kern/subr_asan.c
318
if (__predict_true(*byte == 0 || last <= *byte)) {
sys/kern/subr_asan.c
328
int8_t *byte, last;
sys/kern/subr_asan.c
336
last = ((addr + 1) & KASAN_SHADOW_MASK) + 1;
sys/kern/subr_asan.c
338
if (__predict_true(*byte == 0 || last <= *byte)) {
sys/kern/subr_asan.c
348
int8_t *byte, last;
sys/kern/subr_asan.c
356
last = ((addr + 3) & KASAN_SHADOW_MASK) + 1;
sys/kern/subr_asan.c
358
if (__predict_true(*byte == 0 || last <= *byte)) {
sys/kern/subr_asan.c
368
int8_t *byte, last;
sys/kern/subr_asan.c
376
last = ((addr + 7) & KASAN_SHADOW_MASK) + 1;
sys/kern/subr_asan.c
378
if (__predict_true(*byte == 0 || last <= *byte)) {
sys/kern/subr_bus.c
1660
next_matching_driver(devclass_t dc, device_t dev, driverlink_t last)
sys/kern/subr_bus.c
1664
for (dl = TAILQ_NEXT(last, link); dl; dl = TAILQ_NEXT(dl, link))
sys/kern/subr_bus.c
1669
return (TAILQ_NEXT(last, link));
sys/kern/subr_unit.c
1092
uh, uh->low, uh->high, uh->first, uh->last, uh->busy, uh->alloc);
sys/kern/subr_unit.c
475
uh->last = 1 + (high - low);
sys/kern/subr_unit.c
708
uh->last += upp->len;
sys/kern/subr_unit.c
741
if (up == NULL && uh->last > 0) {
sys/kern/subr_unit.c
743
uh->last--;
sys/kern/subr_unit.c
791
u_int i, last, tl;
sys/kern/subr_unit.c
803
uh->last--;
sys/kern/subr_unit.c
820
uh->last = uh->high - uh->low - i;
sys/kern/subr_unit.c
880
last = uh->high - uh->low - (item - uh->low);
sys/kern/subr_unit.c
881
if (uh->last > last)
sys/kern/subr_unit.c
882
uh->last = last;
sys/kern/subr_unit.c
936
uh->last++;
sys/kern/uipc_mbuf.c
1538
m_length(struct mbuf *m0, struct mbuf **last)
sys/kern/uipc_mbuf.c
1549
if (last != NULL)
sys/kern/uipc_mbuf.c
1550
*last = m;
sys/kern/uipc_shm.c
282
int fault_type, vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
sys/kern/uipc_shm.c
301
*last = *first + atop(pagesizes[psind]) - 1;
sys/kern/uipc_socket.c
1989
bool listening, last __diagused;
sys/kern/uipc_socket.c
2036
last = refcount_release(&so->so_count);
sys/kern/uipc_socket.c
2037
KASSERT(!last, ("%s: released last reference for %p",
sys/kern/uipc_socket.c
4755
bool last __diagused;
sys/kern/uipc_socket.c
4788
last = refcount_release(&head->so_count);
sys/kern/uipc_socket.c
4789
KASSERT(!last, ("%s: released last reference for %p",
sys/libkern/memmem.c
36
char *cur, *last;
sys/libkern/memmem.c
53
last = __DECONST(char *, cl) + l_len - s_len;
sys/libkern/memmem.c
55
for (cur = __DECONST(char *, cl); cur <= last; cur++)
sys/net/altq/altq_cdnr.h
282
u_int64_t last;
sys/net/altq/altq_hfsc.c
1187
struct hfsc_class *p, *last;
sys/net/altq/altq_hfsc.c
1198
last = TAILQ_LAST(&hif->hif_eligible, elighead);
sys/net/altq/altq_hfsc.c
1199
ASSERT(last != NULL);
sys/net/altq/altq_hfsc.c
1200
if (last->cl_e <= cl->cl_e) {
sys/net/altq/altq_hfsc.c
1271
struct hfsc_class *p, *last;
sys/net/altq/altq_hfsc.c
1283
last = TAILQ_LAST(&cl->cl_parent->cl_actc, acthead);
sys/net/altq/altq_hfsc.c
1284
ASSERT(last != NULL);
sys/net/altq/altq_hfsc.c
1285
if (last->cl_vt <= cl->cl_vt) {
sys/net/altq/altq_rio.c
261
microtime(&prec->last);
sys/net/altq/altq_rio.c
340
t = (now.tv_sec - prec->last.tv_sec);
sys/net/altq/altq_rio.c
345
(now.tv_usec - prec->last.tv_usec);
sys/net/altq/altq_rio.c
442
microtime(&rp->rio_precstate[i].last);
sys/net/altq/altq_rio.h
67
struct timeval last; /* timestamp when queue becomes idle */
sys/net/if_lagg.c
2455
struct lagg_port *lp, *last = NULL;
sys/net/if_lagg.c
2463
if (last != NULL) {
sys/net/if_lagg.c
2470
lagg_enqueue(last->lp_ifp, m0);
sys/net/if_lagg.c
2472
last = lp;
sys/net/if_lagg.c
2475
if (last == NULL) {
sys/net/if_lagg.c
2480
if ((last = lagg_link_active(sc, last)) == NULL) {
sys/net/if_lagg.c
2487
ret = lagg_enqueue(last->lp_ifp, m);
sys/net/if_ovpn.c
1180
uint32_t last, _last_active;
sys/net/if_ovpn.c
1186
last = 0;
sys/net/if_ovpn.c
1189
if (_last_active > last)
sys/net/if_ovpn.c
1190
last = _last_active;
sys/net/if_ovpn.c
1193
if (last + peer->keepalive.timeout > time_uptime) {
sys/net/if_ovpn.c
1195
(peer->keepalive.timeout - (time_uptime - last)) * hz,
sys/net/radix.c
960
struct radix_node *rn, *last = NULL; /* shut up gcc */
sys/net/radix.c
972
last = rn;
sys/net/radix.c
992
rn = last;
sys/net/radix.c
993
lastb = last->rn_bit;
sys/net/route/nhgrp_ctl.c
149
uint32_t i, last, xmin;
sys/net/route/nhgrp_ctl.c
155
last = 0;
sys/net/route/nhgrp_ctl.c
159
if ((wn[i].storage != last) &&
sys/net/route/nhgrp_ctl.c
160
((wn[i].storage - last < xmin) || xmin == 0)) {
sys/net/route/nhgrp_ctl.c
161
xmin = wn[i].storage - last;
sys/net/route/nhgrp_ctl.c
163
last = wn[i].storage;
sys/net/rtsock.c
355
struct socket *last;
sys/net/rtsock.c
357
last = NULL;
sys/net/rtsock.c
366
if (last != NULL) {
sys/net/rtsock.c
371
rts_append_data(last, n);
sys/net/rtsock.c
373
last = rcb->rcb_socket;
sys/net/rtsock.c
375
if (last != NULL)
sys/net/rtsock.c
376
rts_append_data(last, m);
sys/net80211/ieee80211_crypto_gcm.c
182
size_t last = x + xlen - xpos;
sys/net80211/ieee80211_crypto_gcm.c
183
memcpy(tmp, xpos, last);
sys/net80211/ieee80211_crypto_gcm.c
184
memset(tmp + last, 0, sizeof(tmp) - last);
sys/net80211/ieee80211_crypto_gcm.c
207
size_t i, n, last;
sys/net80211/ieee80211_crypto_gcm.c
228
last = x + xlen - xpos;
sys/net80211/ieee80211_crypto_gcm.c
229
if (last) {
sys/net80211/ieee80211_crypto_gcm.c
232
for (i = 0; i < last; i++)
sys/net80211/ieee80211_hwmp.c
1233
struct timeval *last, struct timeval *minint)
sys/net80211/ieee80211_hwmp.c
1240
if (last != NULL && minint != NULL) {
sys/net80211/ieee80211_hwmp.c
1241
if (ratecheck(last, minint) == 0)
sys/net80211/ieee80211_hwmp.c
1243
getmicrouptime(last);
sys/net80211/ieee80211_superg.c
612
ff_flush(struct mbuf *head, struct mbuf *last)
sys/net80211/ieee80211_superg.c
618
for (m = head; m != last; m = next) {
sys/netgraph/netflow/netflow.c
1068
rec->last = htonl(MILLIUPTIME(fle->f.last));
sys/netgraph/netflow/netflow.c
344
fle->f.first = fle->f.last = time_uptime;
sys/netgraph/netflow/netflow.c
422
fle6->f.first = fle6->f.last = time_uptime;
sys/netgraph/netflow/netflow.c
742
fle->f.last = time_uptime;
sys/netgraph/netflow/netflow.c
865
fle6->f.last = time_uptime;
sys/netgraph/netflow/netflow.c
90
#define INACTIVE(fle) (time_uptime - fle->f.last > priv->nfinfo_inact_t)
sys/netgraph/netflow/netflow.h
120
uint32_t last; /* System uptime at end of a flow */
sys/netgraph/netflow/netflow.h
98
uint32_t last; /* System uptime at end of a flow */
sys/netgraph/netflow/netflow_v9.c
277
rec->last = htonl(MILLIUPTIME(fed->last));
sys/netgraph/netflow/netflow_v9.c
308
rec->last = htonl(MILLIUPTIME(fed6->last));
sys/netgraph/netflow/netflow_v9.h
59
uint32_t last; /* System uptime at end of a flow (LAST_SWITCHED) */
sys/netgraph/netflow/netflow_v9.h
84
uint32_t last; /* System uptime at end of a flow (LAST_SWITCHED) */
sys/netgraph/netflow/ng_netflow.h
261
long last; /* uptime on last packet */
sys/netgraph/netflow/ng_netflow.h
279
long last; /* uptime on last packet */
sys/netgraph/ng_ppp.c
1563
frag->last = (shdr & MP_SHORT_LAST_FLAG) != 0;
sys/netgraph/ng_ppp.c
1580
frag->last = (lhdr & MP_LONG_LAST_FLAG) != 0;
sys/netgraph/ng_ppp.c
1686
while (!qent->last) {
sys/netgraph/ng_ppp.c
1726
if (qent->last) {
sys/netgraph/ng_ppp.c
1764
|| qent->last || qnext->first) {
sys/netgraph/ng_ppp.c
190
uint8_t last; /* Last in packet? */
sys/netgraph/ng_ppp.c
1909
if (beg != NULL && qent->last) {
sys/netgraph/ng_pptpgre.c
1029
if (last == NULL)
sys/netgraph/ng_pptpgre.c
1032
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_pptpgre.c
1033
last = np;
sys/netgraph/ng_pptpgre.c
1177
struct ng_pptpgre_roq *np, *last = NULL;
sys/netgraph/ng_pptpgre.c
1186
last = np = SLIST_FIRST(&hpriv->roq);
sys/netgraph/ng_pptpgre.c
1194
if (PPTP_SEQ_DIFF(np->seq, last->seq) > 1)
sys/netgraph/ng_pptpgre.c
1200
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_pptpgre.c
1201
last = np;
sys/netgraph/ng_pptpgre.c
1204
hpriv->recvSeq = last->seq;
sys/netgraph/ng_pptpgre.c
761
struct ng_pptpgre_roq *last = NULL; /* last packet in the sendq */
sys/netgraph/ng_pptpgre.c
912
last = &t; \
sys/netgraph/ng_pptpgre.c
972
last = np;
sys/netgraph/ng_pptpgre.c
990
if (last == NULL)
sys/netgraph/ng_pptpgre.c
993
SLIST_INSERT_AFTER(last, np, next);
sys/netgraph/ng_pptpgre.c
994
last = np;
sys/netinet/in_fib_dxr.c
691
uint32_t last = first | DXR_RANGE_MASK;
sys/netinet/in_fib_dxr.c
700
if (start > last)
sys/netinet/in_fib_dxr.c
757
uint32_t last = first | DXR_RANGE_MASK;
sys/netinet/in_fib_dxr.c
790
if (oend >= last)
sys/netinet/in_pcb.c
181
SYSCTL_PROC(_net_inet_ip_portrange, OID_AUTO, last,
sys/netinet/in_pcb.c
2527
struct inpcb *last;
sys/netinet/in_pcb.c
2533
last = NULL;
sys/netinet/in_pcb.c
2536
CK_LIST_FOREACH(last, pcbhash, inp_hash_wild) {
sys/netinet/in_pcb.c
2537
if (CK_LIST_NEXT(last, inp_hash_wild) == NULL) {
sys/netinet/in_pcb.c
2538
CK_LIST_INSERT_AFTER(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2548
CK_LIST_FOREACH(last, pcbhash, inp_hash_wild) {
sys/netinet/in_pcb.c
2549
if (!in_pcbjailed(last, PR_IP4))
sys/netinet/in_pcb.c
2551
if (CK_LIST_NEXT(last, inp_hash_wild) == NULL) {
sys/netinet/in_pcb.c
2552
CK_LIST_INSERT_AFTER(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2562
CK_LIST_FOREACH_FROM(last, pcbhash, inp_hash_wild) {
sys/netinet/in_pcb.c
2563
if (last->inp_laddr.s_addr == INADDR_ANY)
sys/netinet/in_pcb.c
2565
if (CK_LIST_NEXT(last, inp_hash_wild) == NULL) {
sys/netinet/in_pcb.c
2566
CK_LIST_INSERT_AFTER(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2571
if (last == NULL)
sys/netinet/in_pcb.c
2574
CK_LIST_INSERT_BEFORE(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2584
struct inpcb *last;
sys/netinet/in_pcb.c
2590
last = NULL;
sys/netinet/in_pcb.c
2594
CK_LIST_FOREACH(last, pcbhash, inp_hash_wild) {
sys/netinet/in_pcb.c
2595
if (!in_pcbjailed(last, PR_IP6))
sys/netinet/in_pcb.c
2597
if (CK_LIST_NEXT(last, inp_hash_wild) == NULL) {
sys/netinet/in_pcb.c
2598
CK_LIST_INSERT_AFTER(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2608
CK_LIST_FOREACH_FROM(last, pcbhash, inp_hash_wild) {
sys/netinet/in_pcb.c
2609
if (IN6_IS_ADDR_UNSPECIFIED(&last->in6p_laddr))
sys/netinet/in_pcb.c
2611
if (CK_LIST_NEXT(last, inp_hash_wild) == NULL) {
sys/netinet/in_pcb.c
2612
CK_LIST_INSERT_AFTER(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
2617
if (last == NULL)
sys/netinet/in_pcb.c
2620
CK_LIST_INSERT_BEFORE(last, inp, inp_hash_wild);
sys/netinet/in_pcb.c
763
u_short aux, first, last, lport;
sys/netinet/in_pcb.c
782
last = V_ipport_hilastauto;
sys/netinet/in_pcb.c
789
last = V_ipport_lowlastauto; /* 600 */
sys/netinet/in_pcb.c
793
last = V_ipport_lastauto;
sys/netinet/in_pcb.c
802
if (first > last) {
sys/netinet/in_pcb.c
804
first = last;
sys/netinet/in_pcb.c
805
last = aux;
sys/netinet/in_pcb.c
830
*lastport = first + (arc4random() % (last - first));
sys/netinet/in_pcb.c
832
count = last - first;
sys/netinet/in_pcb.c
838
if (*lastport < first || *lastport > last)
sys/netinet/ip_carp.c
383
struct in_addr last, cur, in;
sys/netinet/ip_carp.c
408
last = cur;
sys/netinet/ip_carp.c
413
ntohl(in.s_addr) > ntohl(last.s_addr) &&
sys/netinet/libalias/alias_proxy.c
110
struct proxy_entry *last;
sys/netinet/libalias/alias_proxy.c
211
entry->last = NULL;
sys/netinet/libalias/alias_proxy.c
223
entry->last = NULL;
sys/netinet/libalias/alias_proxy.c
224
la->proxyList->last = entry;
sys/netinet/libalias/alias_proxy.c
229
ptr->last = entry;
sys/netinet/libalias/alias_proxy.c
230
entry->last = ptr->last;
sys/netinet/libalias/alias_proxy.c
239
entry->last = ptr_last;
sys/netinet/libalias/alias_proxy.c
250
if (entry->last != NULL)
sys/netinet/libalias/alias_proxy.c
251
entry->last->next = entry->next;
sys/netinet/libalias/alias_proxy.c
256
entry->next->last = entry->last;
sys/netinet/sctp_asconf.c
1343
int last;
sys/netinet/sctp_asconf.c
1356
last = (sctp_local_addr_count(stcb) == 0);
sys/netinet/sctp_asconf.c
1358
last = (sctp_local_addr_count(stcb) == 1);
sys/netinet/sctp_asconf.c
1360
if (last) {
sys/netinet/sctp_output.c
10331
struct sctp_tmit_chunk *chk, *at, *tp1, *last;
sys/netinet/sctp_output.c
10458
last = at;
sys/netinet/sctp_output.c
10463
if (last) {
sys/netinet/sctp_output.c
10464
advance_peer_ack_point = last->rec.data.tsn;
sys/netinet/sctp_pcb.c
2919
uint16_t first, last, candidate;
sys/netinet/sctp_pcb.c
2924
last = MODULE_GLOBAL(ipport_hilastauto);
sys/netinet/sctp_pcb.c
2931
last = MODULE_GLOBAL(ipport_lowlastauto);
sys/netinet/sctp_pcb.c
2934
last = MODULE_GLOBAL(ipport_lastauto);
sys/netinet/sctp_pcb.c
2936
if (first > last) {
sys/netinet/sctp_pcb.c
2940
first = last;
sys/netinet/sctp_pcb.c
2941
last = temp;
sys/netinet/sctp_pcb.c
2943
count = last - first + 1; /* number of candidates */
sys/netinet/sctp_pcb.c
2956
if (candidate == last)
sys/netinet/sctp_sysctl.c
358
xladdr.last = 1;
sys/netinet/sctp_sysctl.c
436
xinpcb.last = 0;
sys/netinet/sctp_sysctl.c
478
xstcb.last = 0;
sys/netinet/sctp_sysctl.c
526
xraddr.last = 0;
sys/netinet/sctp_sysctl.c
565
xraddr.last = 1;
sys/netinet/sctp_sysctl.c
580
xstcb.last = 1;
sys/netinet/sctp_sysctl.c
591
xinpcb.last = 1;
sys/netinet/sctp_uio.h
1165
uint32_t last;
sys/netinet/sctp_uio.h
1184
uint32_t last;
sys/netinet/sctp_uio.h
1215
uint32_t last;
sys/netinet/sctp_uio.h
1222
uint32_t last;
sys/netinet/sctputil.c
7138
struct mbuf *sp, *last;
sys/netinet/sctputil.c
7174
for (last = m; last->m_next; last = last->m_next);
sys/netinet/sctputil.c
7175
last->m_next = sp;
sys/netinet/tcp_reass.c
313
tcp_reass_append(struct tcpcb *tp, struct tseg_qent *last,
sys/netinet/tcp_reass.c
319
tcp_log_reassm(tp, last, NULL, th->th_seq, tlen, TCP_R_LOG_APPEND, 0);
sys/netinet/tcp_reass.c
321
last->tqe_len += tlen;
sys/netinet/tcp_reass.c
322
last->tqe_m->m_pkthdr.len += tlen;
sys/netinet/tcp_reass.c
324
last->tqe_flags |= (tcp_get_flags(th) & TH_FIN);
sys/netinet/tcp_reass.c
325
last->tqe_last->m_next = m;
sys/netinet/tcp_reass.c
326
last->tqe_last = mlast;
sys/netinet/tcp_reass.c
327
last->tqe_mbuf_cnt += lenofoh;
sys/netinet/tcp_reass.c
332
tcp_reass_log_new_in(tp, last->tqe_start, lenofoh, last->tqe_m,
sys/netinet/tcp_reass.c
334
last);
sys/netinet/tcp_reass.c
518
struct tseg_qent *q, *last, *first;
sys/netinet/tcp_reass.c
618
last = TAILQ_LAST_FAST(&tp->t_segq, tseg_qent, tqe_q);
sys/netinet/tcp_reass.c
619
if (last != NULL) {
sys/netinet/tcp_reass.c
621
SEQ_LT((th->th_seq + *tlenp), (last->tqe_start + last->tqe_len))) {
sys/netinet/tcp_reass.c
630
if ((SEQ_GEQ(th->th_seq, last->tqe_start)) &&
sys/netinet/tcp_reass.c
631
(SEQ_GEQ((last->tqe_start + last->tqe_len), th->th_seq))) {
sys/netinet/tcp_reass.c
642
if (SEQ_GT((last->tqe_start + last->tqe_len), th->th_seq)) {
sys/netinet/tcp_reass.c
643
i = (last->tqe_start + last->tqe_len) - th->th_seq;
sys/netinet/tcp_reass.c
646
tcp_log_reassm(tp, last, NULL, 0, i, TCP_R_LOG_TRIM, 3);
sys/netinet/tcp_reass.c
656
*tlenp = last->tqe_len;
sys/netinet/tcp_reass.c
657
*seq_start = last->tqe_start;
sys/netinet/tcp_reass.c
661
if (last->tqe_flags & TH_FIN) {
sys/netinet/tcp_reass.c
669
tcp_reass_append(tp, last, m, th, *tlenp, mlast, lenofoh);
sys/netinet/tcp_reass.c
671
*seq_start = last->tqe_start;
sys/netinet/tcp_reass.c
672
*tlenp = last->tqe_len;
sys/netinet/tcp_reass.c
674
} else if (SEQ_GT(th->th_seq, (last->tqe_start + last->tqe_len))) {
sys/netinet/tcp_reass.c
686
if (last->tqe_flags & TH_FIN) {
sys/netinet/tcp_reass.c
697
p = last;
sys/netinet6/nd6.h
315
struct nd_opt_hdr *last; /* multiple opts */
sys/netinet6/nd6.h
328
#define nd_opts_last nd_opt_each.last
sys/netipsec/ipsec.c
1233
index_cur = replay->last >> IPSEC_REDUNDANT_BIT_SHIFTS;
sys/netipsec/ipsec.c
1295
if (seq == 0 && replay->last == 0) {
sys/netipsec/ipsec.c
1301
tl = (uint32_t)replay->last; /* Top of window, lower part */
sys/netipsec/ipsec.c
1302
th = (uint32_t)(replay->last >> 32); /* Top of window, high part */
sys/netipsec/ipsec.c
1423
if (seq == 0 && replay->last == 0) {
sys/netipsec/ipsec.c
1429
tl = (uint32_t)replay->last; /* Top of window, lower part */
sys/netipsec/ipsec.c
1430
th = (uint32_t)(replay->last >> 32); /* Top of window, high part */
sys/netipsec/ipsec.c
1452
replay->last = ((uint64_t)seqh << 32) | seq;
sys/netipsec/ipsec.c
1502
replay->last = ((uint64_t)seqh << 32) | seq;
sys/netipsec/key.c
4779
(sav->replay->last > UINT32_80PCT))))) {
sys/netipsec/key_debug.c
819
rpl->count, rpl->bitmap_size, rpl->wsize, rpl->last);
sys/netipsec/keydb.h
230
u_int64_t last; /* (m) used by receiver */
sys/netlink/netlink_domain.c
667
struct nl_buf *first, *last, *nb, *next;
sys/netlink/netlink_domain.c
786
last = nb;
sys/netlink/netlink_domain.c
788
if (last == NULL)
sys/netlink/netlink_domain.c
792
TAILQ_FIRST(&sb->nl_queue) = last;
sys/netlink/netlink_domain.c
793
last->tailq.tqe_prev = &TAILQ_FIRST(&sb->nl_queue);
sys/netlink/netlink_domain.c
801
for (nb = first; nb != last; nb = next) {
sys/netlink/netlink_domain.c
809
if (last != NULL && partlen > 0 && __predict_true(error == 0))
sys/netpfil/ipfilter/netinet/ip_proxy.c
297
aproxy_t *last;
sys/netpfil/ipfilter/netinet/ip_proxy.c
326
last = NULL;
sys/netpfil/ipfilter/netinet/ip_proxy.c
331
if (last != NULL)
sys/netpfil/ipfilter/netinet/ip_proxy.c
332
last->apr_next = apn;
sys/netpfil/ipfilter/netinet/ip_proxy.c
335
last = apn;
sys/netpfil/ipfilter/netinet/ip_proxy.c
341
if (last != NULL)
sys/netpfil/ipfilter/netinet/ip_proxy.c
342
last->apr_next = apn;
sys/netpfil/ipfilter/netinet/ip_proxy.c
345
last = apn;
sys/netpfil/ipfilter/netinet/radix_ipf.c
105
u_32_t *last;
sys/netpfil/ipfilter/netinet/radix_ipf.c
108
last = NULL;
sys/netpfil/ipfilter/netinet/radix_ipf.c
109
maskbits = count_mask_bits(mask, &last);
sys/netpfil/ipfilter/netinet/radix_ipf.c
110
if (last == NULL) {
sys/netpfil/ipfilter/netinet/radix_ipf.c
114
masklen = last - (u_32_t *)mask;
sys/netpfil/ipfilter/netinet/radix_ipf.c
115
lastmask = *last;
sys/netpfil/ipfw/ip_dummynet.c
2598
ip_dn_destroy(int last)
sys/netpfil/ipfw/ip_dummynet.c
2604
if (last) {
sys/netpfil/ipfw/ip_fw2.c
3778
int i, last;
sys/netpfil/ipfw/ip_fw2.c
3791
last = IS_DEFAULT_VNET(curvnet) ? 1 : 0;
sys/netpfil/ipfw/ip_fw2.c
3803
ipfw_destroy_tables(chain, last);
sys/netpfil/ipfw/ip_fw2.c
3804
ipfw_eaction_uninit(chain, last);
sys/netpfil/ipfw/ip_fw2.c
3812
ipfw_bpf_uninit(last);
sys/netpfil/ipfw/ip_fw_bpf.c
179
ipfw_bpf_uninit(int last __unused)
sys/netpfil/ipfw/ip_fw_dynamic.c
3092
ipfw_obj_dyntlv *dst, *last;
sys/netpfil/ipfw/ip_fw_dynamic.c
3111
last = NULL;
sys/netpfil/ipfw/ip_fw_dynamic.c
3122
last = dst; \
sys/netpfil/ipfw/ip_fw_dynamic.c
3135
if (last != NULL)
sys/netpfil/ipfw/ip_fw_dynamic.c
3136
last->head.flags = IPFW_DF_LAST; /* XXX: unused */
sys/netpfil/ipfw/ip_fw_eaction.c
323
ipfw_eaction_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/ip_fw_eaction.c
336
IPFW_DEL_OBJ_REWRITER(last, eaction_opcodes);
sys/netpfil/ipfw/ip_fw_table.c
2760
ipfw_destroy_tables(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/ip_fw_table.c
2763
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/ip_fw_table.c
2764
IPFW_DEL_OBJ_REWRITER(last, opcodes);
sys/netpfil/ipfw/ip_fw_table.c
2776
ipfw_table_value_destroy(ch, last);
sys/netpfil/ipfw/ip_fw_table.h
186
void ipfw_table_value_destroy(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/ip_fw_table_value.c
679
ipfw_table_value_destroy(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/ip_fw_table_value.c
682
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/nat64/ip_fw_nat64.c
107
int last;
sys/netpfil/ipfw/nat64/ip_fw_nat64.c
110
last = IS_DEFAULT_VNET(curvnet) ? 1: 0;
sys/netpfil/ipfw/nat64/ip_fw_nat64.c
111
nat64stl_uninit(ch, last);
sys/netpfil/ipfw/nat64/ip_fw_nat64.c
112
nat64clat_uninit(ch, last);
sys/netpfil/ipfw/nat64/ip_fw_nat64.c
113
nat64lsn_uninit(ch, last);
sys/netpfil/ipfw/nat64/ip_fw_nat64.h
52
void nat64stl_uninit(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/nat64/ip_fw_nat64.h
54
void nat64lsn_uninit(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/nat64/ip_fw_nat64.h
56
void nat64clat_uninit(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/nat64/nat64clat_control.c
533
nat64clat_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/nat64/nat64clat_control.c
536
IPFW_DEL_OBJ_REWRITER(last, opcodes);
sys/netpfil/ipfw/nat64/nat64clat_control.c
537
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/nat64/nat64lsn_control.c
931
nat64lsn_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/nat64/nat64lsn_control.c
934
IPFW_DEL_OBJ_REWRITER(last, opcodes);
sys/netpfil/ipfw/nat64/nat64lsn_control.c
935
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/nat64/nat64lsn_control.c
949
if (last != 0)
sys/netpfil/ipfw/nat64/nat64stl_control.c
538
nat64stl_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/nat64/nat64stl_control.c
541
IPFW_DEL_OBJ_REWRITER(last, opcodes);
sys/netpfil/ipfw/nat64/nat64stl_control.c
542
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/nptv6/nptv6.c
1020
nptv6_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/ipfw/nptv6/nptv6.c
1023
if (last && nptv6_ifaddr_event != NULL)
sys/netpfil/ipfw/nptv6/nptv6.c
1025
IPFW_DEL_OBJ_REWRITER(last, opcodes);
sys/netpfil/ipfw/nptv6/nptv6.c
1026
IPFW_DEL_SOPT_HANDLER(last, scodes);
sys/netpfil/ipfw/nptv6/nptv6.h
62
void nptv6_uninit(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/pmod/pmod.h
32
void tcpmod_uninit(struct ip_fw_chain *ch, int last);
sys/netpfil/ipfw/pmod/tcpmod.c
244
tcpmod_uninit(struct ip_fw_chain *ch, int last)
sys/netpfil/pf/pf.h
694
u_int32_t last;
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
78
u64 start, u64 last,
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
86
if (unlikely(start == last))
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
89
for (node = rbt_ib_umem_iter_first(root, start, last - 1); node;
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
90
node = rbt_ib_umem_iter_next(node, start, last - 1)) {
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
92
ret_val = cb(umem->umem, start, last, cookie) || ret_val;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2005
struct ib_send_wr *wr = NULL, *last, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2042
last = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2137
if (!last)
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2140
last->next = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2141
last = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2199
struct ib_recv_wr *wr = NULL, *last, *next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2225
last = NULL;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2253
if (!last)
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2256
last->next = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
2257
last = next;
sys/ofed/drivers/infiniband/core/ib_uverbs_uapi.c
472
static void uapi_remove_range(struct uverbs_api *uapi, u32 start, u32 last)
sys/ofed/drivers/infiniband/core/ib_uverbs_uapi.c
478
if (iter.index > last)
sys/ofed/include/rdma/ib_umem_odp.h
124
u64 start, u64 last);
sys/ofed/include/rdma/ib_umem_odp.h
126
u64 start, u64 last);
sys/ofed/include/rdma/rdmavt_qp.h
409
u32 last; /* last QP number allocated */
sys/powerpc/mpc85xx/i2c.c
352
i2c_read(device_t dev, char *buf, int len, int *read, int last, int delay)
sys/powerpc/mpc85xx/i2c.c
382
if ((*read == len - 2) && last) {
sys/powerpc/mpc85xx/i2c.c
387
if ((*read == len - 1) && last) {
sys/powerpc/mpc85xx/i2c.c
97
static int i2c_read(device_t dev, char *buf, int len, int *read, int last, int delay);
sys/riscv/riscv/timer.c
281
uint64_t first, last;
sys/riscv/riscv/timer.c
316
last = get_timecount();
sys/riscv/riscv/timer.c
317
counts -= (int64_t)(last - first);
sys/riscv/riscv/timer.c
318
first = last;
sys/sys/_stdarg.h
41
#define va_start(ap, last) __builtin_va_start((ap), (last))
sys/sys/_unrhdr.h
45
u_int last; /* items free at end */
sys/sys/mbuf.h
1760
struct mbuf *last;
sys/sys/mbuf.h
1766
last = m;
sys/sys/mbuf.h
1768
mc->mc_q.stqh_last = &STAILQ_NEXT(last, m_stailq);
sys/teken/teken_wcwidth.h
15
teken_char_t last;
sys/teken/teken_wcwidth.h
25
if (ucs < table[0].first || ucs > table[max].last)
sys/teken/teken_wcwidth.h
29
if (ucs > table[mid].last)
sys/ufs/ffs/ffs_inode.c
711
ufs2_daddr_t nb, nlbn, last;
sys/ufs/ffs/ffs_inode.c
726
last = lastbn;
sys/ufs/ffs/ffs_inode.c
728
last /= factor;
sys/ufs/ffs/ffs_inode.c
753
for (i = last + 1; i < NINDIR(fs); i++)
sys/ufs/ffs/ffs_inode.c
775
for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
sys/ufs/ffs/ffs_inode.c
796
last = lastbn % factor;
sys/ufs/ffs/ffs_inode.c
800
last, level - 1, &blkcount);
sys/ufs/ffs/ffs_snapshot.c
1147
ufs1_daddr_t last, *bap;
sys/ufs/ffs/ffs_snapshot.c
1173
last = howmany(remblks, blksperindir);
sys/ufs/ffs/ffs_snapshot.c
1174
if (last > NINDIR(fs))
sys/ufs/ffs/ffs_snapshot.c
1175
last = NINDIR(fs);
sys/ufs/ffs/ffs_snapshot.c
1179
error = (*acctfunc)(snapvp, &bap[0], &bap[last], fs,
sys/ufs/ffs/ffs_snapshot.c
1188
for (lbn++, level--, i = 0; i < last; i++) {
sys/ufs/ffs/ffs_snapshot.c
1431
ufs2_daddr_t last, *bap;
sys/ufs/ffs/ffs_snapshot.c
1457
last = howmany(remblks, blksperindir);
sys/ufs/ffs/ffs_snapshot.c
1458
if (last > NINDIR(fs))
sys/ufs/ffs/ffs_snapshot.c
1459
last = NINDIR(fs);
sys/ufs/ffs/ffs_snapshot.c
1463
error = (*acctfunc)(snapvp, &bap[0], &bap[last], fs,
sys/ufs/ffs/ffs_snapshot.c
1472
for (lbn++, level--, i = 0; i < last; i++) {
sys/ufs/ffs/ffs_snapshot.c
1654
int error, last, loc;
sys/ufs/ffs/ffs_snapshot.c
1701
last = NINDIR(fs);
sys/ufs/ffs/ffs_snapshot.c
1703
last = fs->fs_size - blkno;
sys/ufs/ffs/ffs_snapshot.c
1704
for (loc = 0; loc < last; loc++) {
sys/vm/device_pager.c
399
vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
sys/vm/device_pager.c
406
fault_type, max_prot, first, last));
sys/vm/device_pager.c
68
int fault_type, vm_prot_t, vm_pindex_t *first, vm_pindex_t *last);
sys/vm/phys_pager.c
232
vm_pindex_t *last)
sys/vm/phys_pager.c
246
if (end > *last)
sys/vm/phys_pager.c
247
end = *last;
sys/vm/phys_pager.c
249
*last = end;
sys/vm/phys_pager.c
266
vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
sys/vm/phys_pager.c
269
fault_type, max_prot, first, last));
sys/vm/phys_pager.c
56
int fault_type, vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last);
sys/vm/swap_pager.c
2274
vm_pindex_t last;
sys/vm/swap_pager.c
2287
last = pindex + count;
sys/vm/swap_pager.c
2289
for (sb = swblk_iter_limit_init(&srcblks, srcobject, pindex, last),
sys/vm/swap_pager.c
2292
limit = MIN(last - srcblks.index, SWAP_META_PAGES);
sys/vm/swap_pager.c
2353
vm_pindex_t last;
sys/vm/swap_pager.c
2365
last = pindex + count;
sys/vm/swap_pager.c
2366
for (sb = swblk_iter_limit_init(&blks, object, pindex, last),
sys/vm/swap_pager.c
2369
limit = MIN(last - blks.index, SWAP_META_PAGES);
sys/vm/vm_fault.c
497
vm_pindex_t last)
sys/vm/vm_fault.c
503
MPASS(first <= last);
sys/vm/vm_fault.c
504
vm_page_iter_limit_init(&pages, object, last + 1);
sys/vm/vm_fault.c
510
KASSERT(pages.index == last,
sys/vm/vm_fault.c
512
__func__, object, (uintmax_t)first, (uintmax_t)last,
sys/vm/vm_glue.c
184
vm_offset_t end, last, start;
sys/vm/vm_glue.c
188
last = (vm_offset_t)addr + len;
sys/vm/vm_glue.c
190
end = round_page(last);
sys/vm/vm_glue.c
191
if (last < (vm_offset_t)addr || end < (vm_offset_t)addr)
sys/vm/vm_mmap.c
1083
vm_offset_t addr, end, last, start;
sys/vm/vm_mmap.c
1094
last = addr + size;
sys/vm/vm_mmap.c
1096
end = round_page(last);
sys/vm/vm_mmap.c
1097
if (last < addr || end < addr)
sys/vm/vm_mmap.c
1264
vm_offset_t addr, end, last, start;
sys/vm/vm_mmap.c
1274
last = addr + size;
sys/vm/vm_mmap.c
1276
end = round_page(last);
sys/vm/vm_mmap.c
1277
if (last < addr || end < addr)
sys/vm/vm_object.c
536
bool last;
sys/vm/vm_object.c
543
last = refcount_release(&object->ref_count);
sys/vm/vm_object.c
546
if (!last)
sys/vm/vm_pageout.c
2078
int last;
sys/vm/vm_pageout.c
2083
last = atomic_load_int(&lowmem_ticks);
sys/vm/vm_pageout.c
2084
while ((u_int)(ticks - last) / hz >= lowmem_period) {
sys/vm/vm_pageout.c
2085
if (atomic_fcmpset_int(&lowmem_ticks, &last, ticks) == 0)
sys/vm/vm_pager.h
179
vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
sys/vm/vm_pager.h
186
fault_type, max_prot, first, last));
sys/vm/vm_pager.h
292
vm_pindex_t *last);
sys/vm/vm_pager.h
313
vm_pindex_t *last);
sys/vm/vnode_pager.c
154
bool last;
sys/vm/vnode_pager.c
175
last = refcount_release(&object->ref_count);
sys/vm/vnode_pager.c
177
if (last)
sys/x86/iommu/intel_dmar.h
390
struct timespec last, curr; \
sys/x86/iommu/intel_dmar.h
399
timespecadd(&curr, &dmar_hw_timeout, &last); \
sys/x86/iommu/intel_dmar.h
407
if (!forever && timespeccmp(&last, &curr, <)) { \
sys/x86/iommu/iommu_utils.c
779
entry->start, entry->end, entry->first, entry->last,
sys/x86/x86/delay.c
100
now += mask - last + u + 1;
sys/x86/x86/delay.c
102
now += u - last;
sys/x86/x86/delay.c
103
last = u;
sys/x86/x86/delay.c
75
u_int last, mask, u;
sys/x86/x86/delay.c
95
last = func(tc) & mask;
sys/x86/x86/delay.c
99
if (u < last)
sys/x86/x86/pvclock.c
134
uint64_t now, last, ret;
sys/x86/x86/pvclock.c
141
last = atomic_load_acq_64(&pvclock_last_systime);
sys/x86/x86/pvclock.c
143
if (last > now) {
sys/x86/x86/pvclock.c
144
ret = last;
sys/x86/x86/pvclock.c
147
} while (!atomic_fcmpset_rel_64(&pvclock_last_systime, &last,
sys/x86/x86/pvclock.c
161
uint64_t now, last, ret;
sys/x86/x86/pvclock.c
167
last = atomic_load_acq_64(&pvclock_last_systime);
sys/x86/x86/pvclock.c
169
if (last > now) {
sys/x86/x86/pvclock.c
170
ret = last;
sys/x86/x86/pvclock.c
173
} while (!atomic_fcmpset_rel_64(&pvclock_last_systime, &last,
tests/sys/netinet/ip6_v4mapped_test.c
100
sysctlsz = sizeof(save_ports.last);
tests/sys/netinet/ip6_v4mapped_test.c
101
error = sysctlbyname("net.inet.ip.portrange.last", &save_ports.last,
tests/sys/netinet/ip6_v4mapped_test.c
108
if (sysctlsz != sizeof(save_ports.last)) {
tests/sys/netinet/ip6_v4mapped_test.c
110
"(expected %zu, actual %zu)\n", sizeof(save_ports.last),
tests/sys/netinet/ip6_v4mapped_test.c
143
sysctlsz = sizeof(save_ports.last);
tests/sys/netinet/ip6_v4mapped_test.c
145
NULL, &save_ports.last, sysctlsz);
tests/sys/netinet/ip6_v4mapped_test.c
190
&save_ports.last, sizeof(save_ports.last));
tests/sys/netinet/ip6_v4mapped_test.c
59
int last;
tests/sys/sys/queue_test.c
265
const struct stailq_id_elem *last;
tests/sys/sys/queue_test.c
270
last = STAILQ_LAST(stailq, stailq_id_elem, ie_entry);
tests/sys/sys/queue_test.c
271
ATF_REQUIRE_MSG(last->ie_id == 0,
tests/sys/sys/queue_test.c
273
stailq, last->ie_id);
tools/diag/prtblknos/prtblknos.c
153
ufs_lbn_t i, last;
tools/diag/prtblknos/prtblknos.c
176
last = howmany(lastlbn - lbn, blksperindir) < NINDIR(fs) ?
tools/diag/prtblknos/prtblknos.c
179
for (i = 0; i < last; i++) {
tools/diag/prtblknos/prtblknos.c
188
for (i = 0; i < last; i++) {
tools/tools/drm/radeon/mkregtable/mkregtable.c
280
struct list_head *last = list->prev;
tools/tools/drm/radeon/mkregtable/mkregtable.c
285
last->next = next;
tools/tools/drm/radeon/mkregtable/mkregtable.c
286
next->prev = last;
tools/tools/net80211/w00t/expand/expand.c
117
struct queue *last = NULL;
tools/tools/net80211/w00t/expand/expand.c
129
last = q;
tools/tools/net80211/w00t/expand/expand.c
144
assert(last);
tools/tools/net80211/w00t/expand/expand.c
145
last->next = q;
tools/tools/net80211/w00t/expand/expand.c
173
if (gettimeofday(&p->last, NULL) == -1)
tools/tools/net80211/w00t/expand/expand.c
381
el = elapsed(&p->last, &tv);
tools/tools/net80211/w00t/expand/expand.c
77
struct timeval last;
tools/tools/net80211/w00t/prga/prga.c
251
if (gettimeofday(&p->last, NULL) == -1)
tools/tools/net80211/w00t/prga/prga.c
259
int last = 0;
tools/tools/net80211/w00t/prga/prga.c
276
last = 1;
tools/tools/net80211/w00t/prga/prga.c
284
if (!last)
tools/tools/net80211/w00t/prga/prga.c
317
printf("Sening %sfrag [%d/%d] [len=%d]\n", last ? "last " : "",
tools/tools/net80211/w00t/prga/prga.c
320
if (last) {
tools/tools/net80211/w00t/prga/prga.c
345
el = elapsed(&p->last, &now);
tools/tools/net80211/w00t/prga/prga.c
391
if (gettimeofday(&p->last, NULL) == -1)
tools/tools/net80211/w00t/prga/prga.c
414
el = elapsed(&p->last, &now);
tools/tools/net80211/w00t/prga/prga.c
64
struct timeval last;
tools/tools/net80211/w00t/redir/redir.c
158
struct queue *last = NULL;
tools/tools/net80211/w00t/redir/redir.c
170
last = q;
tools/tools/net80211/w00t/redir/redir.c
185
assert(last);
tools/tools/net80211/w00t/redir/redir.c
186
last->next = q;
tools/tools/net80211/w00t/redir/redir.c
249
if (gettimeofday(&p->last, NULL) == -1)
tools/tools/net80211/w00t/redir/redir.c
478
struct queue *last = p->q;
tools/tools/net80211/w00t/redir/redir.c
542
while (last) {
tools/tools/net80211/w00t/redir/redir.c
543
if (!last->next) {
tools/tools/net80211/w00t/redir/redir.c
544
last->next = q;
tools/tools/net80211/w00t/redir/redir.c
548
last = last->next;
tools/tools/net80211/w00t/redir/redir.c
583
el = elapsed(&p->last, &tv);
tools/tools/net80211/w00t/redir/redir.c
86
struct timeval last;
tools/tools/net80211/wesside/wesside/wesside.c
1791
if (gettimeofday(&fragstate.last, NULL) == -1)
tools/tools/net80211/wesside/wesside/wesside.c
2490
el = now.tv_sec - fragstate.last.tv_sec;
tools/tools/net80211/wesside/wesside/wesside.c
2493
el = now.tv_usec - fragstate.last.tv_usec;
tools/tools/net80211/wesside/wesside/wesside.c
2498
el += 1000*1000 - fragstate.last.tv_usec;
tools/tools/net80211/wesside/wesside/wesside.c
86
struct timeval last;
tools/tools/netmap/lb.c
189
int last;
tools/tools/netmap/lb.c
481
g->last = 1;
tools/tools/netmap/lb.c
945
uint32_t last = p->last_tail,
tools/tools/netmap/lb.c
951
for ( ; last != stop; last = nm_ring_next(ring, last)) {
tools/tools/netmap/lb.c
952
struct netmap_slot *rs = &ring->slot[last];
tools/tools/netmap/lb.c
958
p->last_tail = last;
usr.bin/calendar/io.c
83
char *last;
usr.bin/calendar/io.c
94
last = sep + strlen(sep) - 1;
usr.bin/calendar/io.c
95
while (last > walk && isspace(*last))
usr.bin/calendar/io.c
96
last--;
usr.bin/calendar/io.c
97
*(last+1) = 0;
usr.bin/diff/diffreg.c
1465
int last = lastline;
usr.bin/diff/diffreg.c
1469
for (; pos > last; pos--) {
usr.bin/diff3/diff3.c
136
static int last[4];
usr.bin/diff3/diff3.c
517
last[i] = rold->to;
usr.bin/diff3/diff3.c
558
delta = last[3] - last[i];
usr.bin/fetch/fetch.c
191
struct timeval last; /* time of last update */
usr.bin/fetch/fetch.c
230
elapsed = xs->last.tv_sec - xs->start.tv_sec;
usr.bin/fetch/fetch.c
265
delta = ((double)xs->last.tv_sec + (xs->last.tv_usec / 1.e6))
usr.bin/fetch/fetch.c
293
if (!force && now.tv_sec <= xs->last.tv_sec)
usr.bin/fetch/fetch.c
295
xs->last2 = xs->last;
usr.bin/fetch/fetch.c
296
xs->last = now;
usr.bin/fetch/fetch.c
319
xs->last.tv_sec >= xs->start.tv_sec + 3) ||
usr.bin/fetch/fetch.c
337
xs->last2 = xs->last = xs->start;
usr.bin/fetch/fetch.c
368
gettimeofday(&xs->last, NULL);
usr.bin/fortune/fortune/fortune.c
870
FILEDESC *fp, *last = NULL;
usr.bin/fortune/fortune/fortune.c
885
last = fp;
usr.bin/fortune/fortune/fortune.c
910
for (fp = File_tail; fp != last; fp = fp->prev)
usr.bin/fortune/fortune/fortune.c
916
last->percent = percent;
usr.bin/jot/jot.c
331
putdata(double x, bool last)
usr.bin/jot/jot.c
359
if (!last)
usr.bin/m4/gnum4.c
67
} *first, *last;
usr.bin/m4/gnum4.c
93
if (last) {
usr.bin/m4/gnum4.c
94
last->next = n;
usr.bin/m4/gnum4.c
95
last = n;
usr.bin/m4/gnum4.c
98
last = first = n;
usr.bin/mail/cmd2.c
302
int *ip, last;
usr.bin/mail/cmd2.c
304
last = 0;
usr.bin/mail/cmd2.c
310
last = *ip;
usr.bin/mail/cmd2.c
312
if (last != 0) {
usr.bin/mail/cmd2.c
313
dot = &message[last-1];
usr.bin/mail/cmd2.c
314
last = first(0, MDELETED);
usr.bin/mail/cmd2.c
315
if (last != 0) {
usr.bin/mail/cmd2.c
316
dot = &message[last-1];
usr.bin/mkimg/image.c
136
static struct chunk *last = NULL;
usr.bin/mkimg/image.c
139
ch = (last != NULL && last->ch_block <= blk)
usr.bin/mkimg/image.c
140
? last : TAILQ_FIRST(&image_chunks);
usr.bin/mkimg/image.c
144
last = ch;
usr.bin/mkuzip/mkuz_fqueue.c
110
for (ip = fqp->last; ip != NULL; ip = ip->prev) {
usr.bin/mkuzip/mkuz_fqueue.c
125
while (fqp->last == NULL || !mkuz_fqueue_check(fqp, cmp_cb, cap)) {
usr.bin/mkuzip/mkuz_fqueue.c
128
if (cmp_cb(fqp->last->this, cap)) {
usr.bin/mkuzip/mkuz_fqueue.c
129
mip = fqp->last;
usr.bin/mkuzip/mkuz_fqueue.c
130
fqp->last = mip->prev;
usr.bin/mkuzip/mkuz_fqueue.c
131
if (fqp->last == NULL) {
usr.bin/mkuzip/mkuz_fqueue.c
141
newfirst = newlast = fqp->last;
usr.bin/mkuzip/mkuz_fqueue.c
143
for (ip = fqp->last->prev; ip != NULL; ip = ip->prev) {
usr.bin/mkuzip/mkuz_fqueue.c
153
fqp->last = newlast;
usr.bin/mkuzip/mkuz_fqueue.c
170
while (fqp->last == NULL) {
usr.bin/mkuzip/mkuz_fqueue.c
176
ip = fqp->last;
usr.bin/mkuzip/mkuz_fqueue.c
177
fqp->last = ip->prev;
usr.bin/mkuzip/mkuz_fqueue.c
178
if (fqp->last == NULL) {
usr.bin/mkuzip/mkuz_fqueue.c
199
while (fqp->last == NULL) {
usr.bin/mkuzip/mkuz_fqueue.c
205
rchain = fqp->last;
usr.bin/mkuzip/mkuz_fqueue.c
206
fqp->first = fqp->last = NULL;
usr.bin/mkuzip/mkuz_fqueue.c
71
fqp->last = ip;
usr.bin/mkuzip/mkuz_fqueue.c
92
fqp->last = cip_l;
usr.bin/mkuzip/mkuz_fqueue.h
31
struct mkuz_bchain_link *last;
usr.bin/ncal/ncal.c
783
int last; /* the first day of next month */
usr.bin/ncal/ncal.c
802
last = firstday(y + 1, 1);
usr.bin/ncal/ncal.c
804
last = firstday(y, m + 2);
usr.bin/ncal/ncal.c
831
for (j = firstm + i, k = 0; j < last; j += 7, k += dw) {
usr.bin/ncal/ncal.c
852
for (j = firstm, k = 0; j < last; k += dw, j += 7)
usr.bin/ncal/ncal.c
874
int last; /* the first day of next month */
usr.bin/ncal/ncal.c
912
last = sndaysb(&dt);
usr.bin/ncal/ncal.c
937
for (j = firstsm + 7 * i, k = 0; j < last && k != dw * 7;
usr.bin/netstat/sctp.c
162
if (xladdr->last == 1)
usr.bin/netstat/sctp.c
169
if (xstcb->last == 1)
usr.bin/netstat/sctp.c
177
if (xladdr->last == 1)
usr.bin/netstat/sctp.c
184
if (xraddr->last == 1)
usr.bin/netstat/sctp.c
218
if (xladdr->last == 1)
usr.bin/netstat/sctp.c
239
if (xraddr->last == 1)
usr.bin/netstat/sctp.c
401
if (xladdr->last) {
usr.bin/netstat/sctp.c
464
if (aflag && (xladdr_total == 0) && xstcb->last && !process_closed) {
usr.bin/netstat/sctp.c
469
while (xstcb->last == 0 && *offset < buflen) {
usr.bin/netstat/sctp.c
515
while (xinpcb->last == 0 && offset < len) {
usr.bin/pathchk/pathchk.c
100
int last;
usr.bin/pathchk/pathchk.c
129
last = *end == '\0';
usr.bin/pathchk/pathchk.c
150
if (last)
usr.bin/rpcgen/rpc_hout.c
369
const char *last = NULL;
usr.bin/rpcgen/rpc_hout.c
377
last = l->assignment;
usr.bin/rpcgen/rpc_hout.c
380
if (last == NULL) {
usr.bin/rpcgen/rpc_hout.c
383
f_print(fout, " = %s + %d", last, count++);
usr.bin/seq/seq.c
147
last = e_atof(argv[argc - 1]);
usr.bin/seq/seq.c
156
errx(1, "zero %screment", (first < last) ? "in" : "de");
usr.bin/seq/seq.c
161
incr = (first < last) ? 1.0 : -1.0;
usr.bin/seq/seq.c
163
if (incr <= 0.0 && first < last)
usr.bin/seq/seq.c
166
if (incr >= 0.0 && first > last)
usr.bin/seq/seq.c
180
fmt = generate_format(first, incr, last, equalize, pad);
usr.bin/seq/seq.c
182
for (step = 1, cur = first; incr > 0 ? cur <= last : cur >= last;
usr.bin/seq/seq.c
200
asprintf(&last_print, fmt, last) < 0 ||
usr.bin/seq/seq.c
464
generate_format(double first, double incr, double last, int equalize, char pad)
usr.bin/seq/seq.c
474
if (first > last)
usr.bin/seq/seq.c
475
last = first - incr * floor((first - last) / incr);
usr.bin/seq/seq.c
477
last = first + incr * floor((last - first) / incr);
usr.bin/seq/seq.c
492
width2 = sprintf(buf, "%g", last);
usr.bin/seq/seq.c
89
double first, last, incr, prev, cur, step;
usr.bin/seq/seq.c
95
last = incr = prev = 0.0;
usr.bin/sockstat/main.c
389
while ((offset < len) && (xinpcb->last == 0)) {
usr.bin/sockstat/main.c
416
if (xladdr->last == 1)
usr.bin/sockstat/main.c
481
(xstcb->last == 1))) {
usr.bin/sockstat/main.c
487
if (xstcb->last == 1)
usr.bin/sockstat/main.c
516
if (xladdr->last == 1)
usr.bin/sockstat/main.c
561
if (xraddr->last == 1)
usr.bin/systat/keyboard.c
111
gettimeofday(&last, NULL);
usr.bin/systat/keyboard.c
53
struct timeval last, intvl, now, tm;
usr.bin/systat/keyboard.c
57
gettimeofday(&last, NULL);
usr.bin/systat/keyboard.c
66
tm.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
usr.bin/systat/keyboard.c
67
tm.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
usr.bin/systat/keyboard.c
79
gettimeofday(&last, NULL);
usr.bin/tabs/tabs.c
200
long last, stop;
usr.bin/tabs/tabs.c
202
for (last = *nstops = 0, tok = strtok(arg, ","); tok != NULL;
usr.bin/tabs/tabs.c
214
stop += last;
usr.bin/tabs/tabs.c
216
if (last > stop)
usr.bin/tabs/tabs.c
218
last = stops[(*nstops)++] = stop;
usr.bin/tail/forward.c
243
if (last != file) {
usr.bin/tail/forward.c
246
last = file;
usr.bin/tail/forward.c
326
last = --file;
usr.bin/tail/forward.c
72
static const file_info_t *last;
usr.bin/users/users.cc
66
set<string>::iterator last = names.end();
usr.bin/users/users.cc
67
--last;
usr.bin/users/users.cc
68
copy(names.begin(), last, ostream_iterator<string>(cout, " "));
usr.bin/users/users.cc
69
cout << *last << endl;
usr.bin/vmstat/vmstat.c
1078
cur.cp_time[state] -= last.cp_time[state];
usr.bin/vmstat/vmstat.c
1079
last.cp_time[state] = tmp;
usr.bin/vmstat/vmstat.c
1082
busy_seconds = cur.snap_time - last.snap_time;
usr.bin/vmstat/vmstat.c
1093
&last.dinfo->devices[di], busy_seconds,
usr.bin/vmstat/vmstat.c
413
last.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
usr.bin/vmstat/vmstat.c
712
tmp_dinfo = last.dinfo;
usr.bin/vmstat/vmstat.c
713
last.dinfo = cur.dinfo;
usr.bin/vmstat/vmstat.c
715
last.snap_time = cur.snap_time;
usr.bin/vmstat/vmstat.c
90
static struct statinfo cur, last;
usr.sbin/acpi/acpidump/acpi.c
3008
sdt_from_rsdt(ACPI_TABLE_HEADER *rsdp, const char *sig, ACPI_TABLE_HEADER *last)
usr.sbin/acpi/acpidump/acpi.c
3027
if (last != NULL) {
usr.sbin/acpi/acpidump/acpi.c
3028
if (sdt == last)
usr.sbin/acpi/acpidump/acpi.c
3029
last = NULL;
usr.sbin/autofs/popen.c
148
struct pid *cur, *last = NULL;
usr.sbin/autofs/popen.c
158
last = cur;
usr.sbin/autofs/popen.c
163
if (last == NULL)
usr.sbin/autofs/popen.c
166
SLIST_REMOVE_AFTER(last, next);
usr.sbin/bhyve/pci_nvme.c
2458
uint64_t *last = prp_list;
usr.sbin/bhyve/pci_nvme.c
2463
if ((prp_list == last) && (bytes > PAGE_SIZE)) {
usr.sbin/bhyve/pci_nvme.c
2472
last = prp_list + (NVME_PRP2_ITEMS - 1);
usr.sbin/bluetooth/bthidd/bthidd.c
231
static struct timeval last = { 0, 0 };
usr.sbin/bluetooth/bthidd/bthidd.c
236
if (now.tv_sec - last.tv_sec >= tval) {
usr.sbin/bluetooth/bthidd/bthidd.c
237
last = now;
usr.sbin/bluetooth/bthidd/btuinput.c
432
static struct timespec last = { 0, 0 };
usr.sbin/bluetooth/bthidd/btuinput.c
441
elapsed = now.tv_sec - last.tv_sec;
usr.sbin/bluetooth/bthidd/btuinput.c
442
if (now.tv_nsec < last.tv_nsec)
usr.sbin/bluetooth/bthidd/btuinput.c
454
last = now;
usr.sbin/fifolog/lib/fifolog_int.c
218
fifolog_int_findend(const struct fifolog_file *ff, off_t *last)
usr.sbin/fifolog/lib/fifolog_int.c
235
*last = o;
usr.sbin/fifolog/lib/fifolog_int.c
254
*last = o;
usr.sbin/fifolog/lib/fifolog_write.h
54
time_t last;
usr.sbin/fifolog/lib/fifolog_write_poll.c
349
if (now != f->last)
usr.sbin/fifolog/lib/fifolog_write_poll.c
373
f->last = now;
usr.sbin/fifolog/lib/libfifolog_int.h
45
const char *fifolog_int_findend(const struct fifolog_file *ff, off_t *last);
usr.sbin/i2c/i2c.c
231
cmd.last = 1;
usr.sbin/i2c/i2c.c
354
cmd.last = 0;
usr.sbin/i2c/i2c.c
371
cmd.last = 0;
usr.sbin/i2c/i2c.c
385
cmd.last = 0;
usr.sbin/i2c/i2c.c
405
cmd.last = 0;
usr.sbin/i2c/i2c.c
418
cmd.last = 0;
usr.sbin/i2c/i2c.c
430
cmd.last = 1;
usr.sbin/iostat/iostat.c
137
static struct statinfo cur, last;
usr.sbin/iostat/iostat.c
325
last.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
usr.sbin/iostat/iostat.c
326
if (last.dinfo == NULL)
usr.sbin/iostat/iostat.c
509
tmp_dinfo = last.dinfo;
usr.sbin/iostat/iostat.c
510
last.dinfo = cur.dinfo;
usr.sbin/iostat/iostat.c
513
last.snap_time = cur.snap_time;
usr.sbin/iostat/iostat.c
596
cur.tk_nin -= last.tk_nin;
usr.sbin/iostat/iostat.c
597
last.tk_nin = tmp;
usr.sbin/iostat/iostat.c
599
cur.tk_nout -= last.tk_nout;
usr.sbin/iostat/iostat.c
600
last.tk_nout = tmp;
usr.sbin/iostat/iostat.c
603
etime = cur.snap_time - last.snap_time;
usr.sbin/iostat/iostat.c
610
cur.cp_time[i] -= last.cp_time[i];
usr.sbin/iostat/iostat.c
611
last.cp_time[i] = tmp;
usr.sbin/iostat/iostat.c
833
havelast ? &last.dinfo->devices[di] : NULL, etime,
usr.sbin/lpr/chkprintcap/chkprintcap.c
228
struct dirlist *dp, *dp2, *last;
usr.sbin/lpr/chkprintcap/chkprintcap.c
242
last = NULL;
usr.sbin/lpr/chkprintcap/chkprintcap.c
246
last = dp2;
usr.sbin/lpr/chkprintcap/chkprintcap.c
249
if (last) {
usr.sbin/lpr/chkprintcap/chkprintcap.c
250
LIST_INSERT_AFTER(last, dp, link);
usr.sbin/lpr/lpd/printjob.c
886
char *cp, last[sizeof(line)];
usr.sbin/lpr/lpd/printjob.c
944
strcpy(last, line);
usr.sbin/lpr/lpd/printjob.c
946
if (strcmp(last, line) != 0)
usr.sbin/lpr/lpd/printjob.c
950
switch (sendfile(pp, '\3', last+1, *last, dfcopies)) {
usr.sbin/makefs/cd9660.c
1502
cd9660node *last = dirNode;
usr.sbin/makefs/cd9660.c
1528
if (dirNode != last) {
usr.sbin/makefs/cd9660.c
1529
last->ptnext = dirNode;
usr.sbin/makefs/cd9660.c
1530
dirNode->ptprev = last;
usr.sbin/makefs/cd9660.c
1532
last = dirNode;
usr.sbin/makefs/cd9660/iso9660_rrip.c
224
struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST;
usr.sbin/makefs/cd9660/iso9660_rrip.c
226
pre_ce = last = NULL;
usr.sbin/makefs/cd9660/iso9660_rrip.c
244
last = temp;
usr.sbin/makefs/cd9660/iso9660_rrip.c
252
pre_ce = last;
usr.sbin/makefs/cd9660/iso9660_rrip.c
267
last = CE;
usr.sbin/makefs/cd9660/iso9660_rrip.c
270
for (temp = TAILQ_NEXT(last, rr_ll); temp != NULL;
usr.sbin/makefs/cd9660/iso9660_rrip.c
281
if (last != NULL)
usr.sbin/makefs/cd9660/iso9660_rrip.c
282
TAILQ_INSERT_AFTER(&node->head, last, ST, rr_ll);
usr.sbin/makefs/cd9660/iso9660_rrip.c
285
last = ST;
usr.sbin/makefs/cd9660/iso9660_rrip.c
288
if (last != NULL)
usr.sbin/makefs/cd9660/iso9660_rrip.c
289
last->last_in_suf = 1;
usr.sbin/makefs/cd9660/iso9660_rrip.c
889
cd9660_susp_ES(struct ISO_SUSP_ATTRIBUTES *last __unused, cd9660node *node __unused)
usr.sbin/makefs/mtree.c
827
fsnode *last, *node, *parent;
usr.sbin/makefs/mtree.c
893
last = NULL;
usr.sbin/makefs/mtree.c
927
last = node;
usr.sbin/makefs/mtree.c
928
node = last->next;
usr.sbin/makefs/mtree.c
947
if (last != NULL)
usr.sbin/makefs/mtree.c
948
last->next = node;
usr.sbin/makefs/mtree.c
957
last->next = NULL;
usr.sbin/moused/moused/moused.c
2448
drift->last.x += act->dx;
usr.sbin/moused/moused/moused.c
2449
drift->last.y += act->dy;
usr.sbin/moused/moused/moused.c
2455
drift->previous = drift->last;
usr.sbin/moused/moused/moused.c
2456
drift->last.x = act->dx;
usr.sbin/moused/moused/moused.c
2457
drift->last.y = act->dy;
usr.sbin/moused/moused/moused.c
2460
if ((u_int)abs(drift->last.x) + abs(drift->last.y) > drift->distance) {
usr.sbin/moused/moused/moused.c
2462
act->dx = drift->previous.x + drift->last.x;
usr.sbin/moused/moused/moused.c
2463
act->dy = drift->previous.y + drift->last.y;
usr.sbin/moused/moused/moused.c
2466
drift->last.x = drift->last.y = 0;
usr.sbin/moused/moused/moused.c
396
struct drift_xy last; /* steps in last drift_time */
usr.sbin/nvram/nvram.c
49
struct deletelist *last;
usr.sbin/nvram/nvram.c
79
dl->last = dl;
usr.sbin/nvram/nvram.c
81
dl->last->next = malloc(sizeof(*dl));
usr.sbin/nvram/nvram.c
82
if (dl->last->next == NULL)
usr.sbin/nvram/nvram.c
84
dl->last = dl->last->next;
usr.sbin/nvram/nvram.c
85
bzero(dl->last, sizeof(*dl));
usr.sbin/nvram/nvram.c
87
dl->last->name = optarg;
usr.sbin/pciconf/pciconf.c
474
print_tree_entry(struct pci_tree_entry *e, const char *indent, bool last,
usr.sbin/pciconf/pciconf.c
483
printf("%s%c--- ", indent, last ? '`' : '|');
usr.sbin/pciconf/pciconf.c
515
asprintf(&indent_buf, "%s%c ", indent, last ? ' ' : '|');
usr.sbin/pciconf/pciconf.c
531
bool last, new_bus;
usr.sbin/pciconf/pciconf.c
576
last = true;
usr.sbin/pciconf/pciconf.c
579
last = false;
usr.sbin/pciconf/pciconf.c
581
print_tree_entry(e, " ", last, verbose);
usr.sbin/pkg/dns_utils.c
82
compute_weight(struct dns_srvinfo **d, int first, int last)
usr.sbin/pkg/dns_utils.c
89
for (i = 0; i <= last; i++)
usr.sbin/pkg/dns_utils.c
95
chosen = malloc(sizeof(int) * (last - first + 1));
usr.sbin/pkg/dns_utils.c
97
for (i = 0; i <= last; i++) {
usr.sbin/pmcstudy/eval_expr.c
426
struct expression *exp=NULL, *last=NULL, *at;
usr.sbin/pmcstudy/eval_expr.c
471
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
474
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
483
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
486
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
489
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
492
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/pmcstudy/eval_expr.c
496
at = alloc_and_hook_expr(&exp, &last);
usr.sbin/ppp/async.c
192
struct mbuf *nbp, **last;
usr.sbin/ppp/async.c
202
last = &nbp;
usr.sbin/ppp/async.c
208
*last = async_Decode(&p->async, *ch++);
usr.sbin/ppp/async.c
209
if (*last != NULL)
usr.sbin/ppp/async.c
210
last = &(*last)->m_nextpkt;
usr.sbin/ppp/chat.c
242
int last;
usr.sbin/ppp/chat.c
244
for (last = c->abort.num; last > i; last--) {
usr.sbin/ppp/chat.c
245
c->abort.string[last].data = c->abort.string[last-1].data;
usr.sbin/ppp/chat.c
246
c->abort.string[last].len = c->abort.string[last-1].len;
usr.sbin/ppp/hdlc.c
144
struct mbuf *last;
usr.sbin/ppp/hdlc.c
152
for (last = bp; last->m_next; last = last->m_next)
usr.sbin/ppp/hdlc.c
155
if (last->m_size - last->m_offset - last->m_len >= 2) {
usr.sbin/ppp/hdlc.c
156
cp = MBUF_CTOP(last) + last->m_len;
usr.sbin/ppp/hdlc.c
157
last->m_len += 2;
usr.sbin/ppp/hdlc.c
160
last->m_next = tail;
usr.sbin/ppp/mbuf.c
355
q->last = q->top;
usr.sbin/ppp/mbuf.c
370
if (queue->last) {
usr.sbin/ppp/mbuf.c
371
queue->last->m_nextpkt = bp;
usr.sbin/ppp/mbuf.c
372
queue->last = bp;
usr.sbin/ppp/mbuf.c
374
queue->last = queue->top = bp;
usr.sbin/ppp/mbuf.h
44
struct mbuf *last;
usr.sbin/ppp/mp.c
418
struct mbuf *q, *last;
usr.sbin/ppp/mp.c
459
last = NULL;
usr.sbin/ppp/mp.c
464
if (last)
usr.sbin/ppp/mp.c
465
last->m_nextpkt = m;
usr.sbin/ppp/mp.c
476
if (last)
usr.sbin/ppp/mp.c
477
last->m_nextpkt = m;
usr.sbin/ppp/mp.c
529
last = NULL;
usr.sbin/ppp/mp.c
584
last = NULL;
usr.sbin/ppp/mp.c
589
last = q;
usr.sbin/ppp/mp.c
596
last = NULL;
usr.sbin/ppp/mp.c
597
for (q = mp->inbufs; q; last = q, q = q->m_nextpkt) {
usr.sbin/ppp/mp.c
603
if (last)
usr.sbin/ppp/mp.c
604
last->m_nextpkt = m;
usr.sbin/ppp/mp.c
844
unsigned long first, last;
usr.sbin/ppp/mp.c
847
last = mp_ReadHeader(mp, lm, &mh) ? mh.seq : 0;
usr.sbin/ppp/mp.c
849
first, last, (unsigned long)mp->seq.next_in,
usr.sbin/ppp/nat_cmd.c
520
struct mbuf **last;
usr.sbin/ppp/nat_cmd.c
561
last = &bp->m_nextpkt;
usr.sbin/ppp/nat_cmd.c
567
*last = m_get(len, MB_NATIN);
usr.sbin/ppp/nat_cmd.c
568
memcpy(MBUF_CTOP(*last), fptr, len);
usr.sbin/ppp/nat_cmd.c
570
last = &(*last)->m_nextpkt;
usr.sbin/ppp/throughput.c
284
char *time_buf, *last;
usr.sbin/ppp/throughput.c
287
last = time_buf + strlen(time_buf);
usr.sbin/ppp/throughput.c
288
if (last > time_buf && *--last == '\n')
usr.sbin/ppp/throughput.c
289
*last = '\0';
usr.sbin/pppctl/pppctl.c
124
char *last;
usr.sbin/pppctl/pppctl.c
147
last = Buffer+len-1;
usr.sbin/pppctl/pppctl.c
149
last = prompt;
usr.sbin/pppctl/pppctl.c
150
if (last) {
usr.sbin/pppctl/pppctl.c
151
last++;
usr.sbin/pppctl/pppctl.c
152
write(STDOUT_FILENO, Buffer, last-Buffer);
usr.sbin/pppctl/pppctl.c
156
for (last = Buffer+len-2; last > Buffer && *last != ' '; last--)
usr.sbin/pppctl/pppctl.c
158
if (last > Buffer+3 && !strncmp(last-3, " on", 3)) {
usr.sbin/pppctl/pppctl.c
180
if ((last = strrchr(Buffer, '\n')) == NULL)
usr.sbin/pppctl/pppctl.c
184
flush = last - Buffer + 1;
usr.sbin/quot/quot.c
108
static ino_t last;
usr.sbin/quot/quot.c
121
if (ipbuf == NULL || ino < last || ino >= last + INOCNT(super)) {
usr.sbin/quot/quot.c
136
last = rounddown(ino, INOCNT(super));
usr.sbin/quot/quot.c
137
off = (off_t)ino_to_fsba(super, last) << super->fs_fshift;
usr.sbin/rpc.statd/procs.c
226
MonList *last = NULL;
usr.sbin/rpc.statd/procs.c
238
if (last) last->next = next;
usr.sbin/rpc.statd/procs.c
246
last = lp;
usr.sbin/syslogd/syslogd.c
1737
struct iovec *last;
usr.sbin/syslogd/syslogd.c
1742
last = &il->iov[il->iovcnt - 1];
usr.sbin/syslogd/syslogd.c
1743
if (diff >= last->iov_len) {
usr.sbin/syslogd/syslogd.c
1746
il->totalsize -= last->iov_len;
usr.sbin/syslogd/syslogd.c
1749
last->iov_len -= diff;
usr.sbin/ypldap/ber.c
160
u_char cur, last = 0;
usr.sbin/ypldap/ber.c
171
if ((cur == 0 && last & 0x80) ||
usr.sbin/ypldap/ber.c
172
(cur == 0xff && (last & 0x80) == 0))
usr.sbin/ypldap/ber.c
175
last = cur;
usr.sbin/ypldap/ber.c
189
u_char cur, last = 0;
usr.sbin/ypldap/ber.c
200
if ((cur == 0 && last & 0x80) ||
usr.sbin/ypldap/ber.c
201
(cur == 0xff && (last & 0x80) == 0))
usr.sbin/ypldap/ber.c
204
last = cur;