Searched refs:last (Results 276 - 300 of 917) sorted by relevance

<<11121314151617181920>>

/freebsd-current/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha256.c169 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = local
185 last = (unsigned int)inp_len + frag - (frag << (1 + n4x));
186 if (last > frag && ((last + 13 + 9) % 64) < (x4 - 1)) {
188 last -= x4 - 1;
215 unsigned int len = (i == (x4 - 1) ? last : frag);
264 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64;
294 unsigned int len = (i == (x4 - 1) ? last : frag),
373 unsigned int len = (i == (x4 - 1) ? last
828 unsigned int frag, last, packlen, inp_len; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h178 /// Return the last line entry if the line table isn't empty.
180 /// \returns An optional line entry with the last line entry if the line
182 std::optional<LineEntry> last() const { function in class:llvm::gsym::LineTable
/freebsd-current/lib/geom/part/
H A Dgeom_part.c326 off_t last, size, start, new_size; local
385 s = find_geomcfg(gp, "last");
389 last = (off_t)strtoimax(s, NULL, 0);
416 new_size = ALIGNDOWN(last + offset + 1, alignment) -
449 off_t first, last, a_first; local
543 s = find_geomcfg(gp, "last");
547 last = (off_t)strtoimax(s, NULL, 0);
550 last = ALIGNDOWN(last + offset + 1, alignment) - 1;
585 if (a_first <= last) {
626 off_t first, last, sector, end; local
[all...]
/freebsd-current/sys/dev/rtwn/pci/
H A Drtwn_pci_var.h64 int last; member in struct:rtwn_tx_ring
/freebsd-current/sys/net/altq/
H A Daltq_rio.c261 microtime(&prec->last);
340 t = (now.tv_sec - prec->last.tv_sec);
345 (now.tv_usec - prec->last.tv_usec);
442 microtime(&rp->rio_precstate[i].last);
/freebsd-current/tools/diag/prtblknos/
H A Dprtblknos.c148 /* dummy print to flush out last extent */
157 ufs_lbn_t i, last; local
180 last = howmany(lastlbn - lbn, blksperindir) < NINDIR(fs) ?
183 for (i = 0; i < last; i++) {
192 for (i = 0; i < last; i++) {
/freebsd-current/usr.sbin/ppp/
H A Dmp.c302 /* We're adding a link - do a last validation on our parameters */
418 struct mbuf *q, *last; local
459 last = NULL;
464 if (last)
465 last->m_nextpkt = m;
476 if (last)
477 last->m_nextpkt = m;
529 last = NULL;
584 last = NULL;
589 last
844 unsigned long first, last; local
[all...]
H A Dmbuf.h44 struct mbuf *last; member in struct:mqueue
/freebsd-current/usr.sbin/rpc.statd/
H A Dprocs.c226 MonList *last = NULL; local
238 if (last) last->next = next;
246 last = lp;
/freebsd-current/sys/dev/virtio/
H A Dvirtqueue.h71 void *virtqueue_drain(struct virtqueue *vq, int *last);
/freebsd-current/contrib/nvi/common/
H A Dsearch.c292 size_t coff, last, len; local
396 * line character by character until find the last acceptable
401 last = match[0].rm_so++;
423 if (!LF_ISSET(SEARCH_EOL) && last >= len)
426 rm->cno = last;
/freebsd-current/sys/vm/
H A Dvm_pager.h179 vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last)
186 fault_type, max_prot, first, last));
292 vm_pindex_t *last);
309 vm_pindex_t *last);
178 vm_pager_populate(vm_object_t object, vm_pindex_t pidx, int fault_type, vm_prot_t max_prot, vm_pindex_t *first, vm_pindex_t *last) argument
/freebsd-current/sys/arm/arm/
H A Dmpcore_timer.c499 uint32_t first, last; local
518 last = tmr_gbl_read_4(sc, GBL_TIMER_COUNT_LOW);
519 counts -= (int32_t)(last - first);
520 first = last;
/freebsd-current/sys/dev/pcf/
H A Dpcf.c89 * before the last char is read.
419 pcf_read(device_t dev, char *buf, int len, int *read, int last, argument
433 if (len == 1 && last)
450 if (len == 1 && last)
451 /* ok, last data byte already in S0, no I2C activity
455 else if (len == 2 && last)
/freebsd-current/usr.bin/tail/
H A Dforward.c72 static const file_info_t *last; variable
187 * rlines -- display the last offset lines of the file.
243 if (last != file) {
246 last = file;
326 last = --file;
/freebsd-current/sys/dev/acpica/
H A Dacpi_timer.c400 uint32_t last, this; local
415 last = acpi_timer_read();
418 delta = acpi_TimerDelta(this, last);
426 last = this;
/freebsd-current/sys/dev/mlx4/mlx4_core/
H A Dmlx4_alloc.c49 obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
58 bitmap->last = (obj + 1);
59 if (bitmap->last == bitmap->max)
60 bitmap->last = 0;
118 obj = find_aligned_range(bitmap->table, bitmap->last,
129 if (obj == bitmap->last) {
130 bitmap->last = (obj + cnt);
131 if (bitmap->last >= bitmap->max)
132 bitmap->last = 0;
163 bitmap->last
[all...]
/freebsd-current/sys/contrib/vchiq/interface/compat/
H A Dlist.h148 struct list_head *last = list->prev; local
153 last->next = next;
154 next->prev = last;
/freebsd-current/contrib/wpa/src/drivers/
H A Ddriver_common.c195 int last; local
222 last = *end == '\0';
240 if (last)
/freebsd-current/contrib/bc/src/
H A Dlex.c306 l->last = l->t;
311 // If the last token was EOF, someone called this one too many times.
312 if (BC_ERR(l->last == BC_LEX_EOF)) bc_lex_err(l, BC_ERR_PARSE_EOF);
399 l->t = l->last = BC_LEX_INVALID;
/freebsd-current/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.c208 struct ISO_SUSP_ATTRIBUTES *temp, *pre_ce, *last, *CE, *ST; local
210 pre_ce = last = NULL;
228 last = temp;
233 * Remember the last entry after which we
236 pre_ce = last;
251 last = CE;
254 for (temp = TAILQ_NEXT(last, rr_ll); temp != NULL;
265 if (last != NULL)
266 TAILQ_INSERT_AFTER(&node->head, last, ST, rr_ll);
269 last
[all...]
/freebsd-current/sys/teken/
H A Dteken_wcwidth.h15 teken_char_t last; member in struct:interval
25 if (ucs < table[0].first || ucs > table[max].last)
29 if (ucs > table[mid].last)
/freebsd-current/sys/dev/vt/
H A Dvt_font.c139 unsigned int i, last = 0; local
143 if (i > 0 && vfm[i].vfm_src <= last)
151 last = vfm[i].vfm_src + vfm[i].vfm_len;
/freebsd-current/sys/i386/i386/
H A Dgeode.c159 static unsigned last; local
163 if (c < last)
165 last = c;
/freebsd-current/stand/uboot/
H A Dglue.c537 ub_env_enum(const char *last) argument
543 * It's OK to pass only the name piece as last (and not the whole
548 if (!syscall(API_ENV_ENUM, NULL, last, &env))
551 if (env == NULL || last == env)

Completed in 397 milliseconds

<<11121314151617181920>>