Home
last modified time | relevance | path

Searched refs:cend (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/kern/
H A Dtty_outq.c149 size_t cbegin, cend, clen; in ttyoutq_read() local
165 cend = MIN(MIN(to->to_end, to->to_begin + len), in ttyoutq_read()
167 clen = cend - cbegin; in ttyoutq_read()
174 if (cend == to->to_end) { in ttyoutq_read()
178 } else if (cend == TTYOUTQ_DATASIZE) { in ttyoutq_read()
210 size_t cbegin, cend, clen; in ttyoutq_read_uio() local
226 cend = MIN(MIN(to->to_end, to->to_begin + uio->uio_resid), in ttyoutq_read_uio()
228 clen = cend - cbegin; in ttyoutq_read_uio()
237 if (cend == TTYOUTQ_DATASIZE || cend == to->to_end) { in ttyoutq_read_uio()
H A Dtty_inq.c175 size_t cbegin, cend, clen; in ttyinq_read_uio() local
191 cend = MIN(MIN(ti->ti_linestart, ti->ti_begin + rlen), in ttyinq_read_uio()
193 clen = cend - cbegin; in ttyinq_read_uio()
204 if (cend == TTYINQ_DATASIZE || cend == ti->ti_end) { in ttyinq_read_uio()
/f-stack/freebsd/vm/
H A Dvm_mmap.c814 vm_offset_t addr, cend, end, first_addr; in kern_mincore() local
873 cend = current->end; in kern_mincore()
874 if (cend > end) in kern_mincore()
875 cend = end; in kern_mincore()
877 for (; addr < cend; addr += PAGE_SIZE) { in kern_mincore()