HomeSort by: relevance | last modified time | path
    Searched defs:roff (Results 1 - 11 of 11) sorted by relevancy

  /src/usr.bin/gprof/
Makefile 3 SUBDIR.roff=PSD.doc
  /src/sbin/fsck_ffs/
Makefile 12 SUBDIR.roff= SMM.doc
  /src/sys/netipsec/
ipsec_mbuf.c 368 int roff; local in function:m_striphdr
373 m1 = m_getptr(m, skip, &roff);
378 if (roff == 0) {
384 } else if (roff + hlen >= m1->m_len) {
394 if (roff + hlen > m1->m_len) {
395 adjlen = roff + hlen - m1->m_len;
409 adjlen = m1->m_len - roff;
422 memmove(mtod(m1, u_char *) + roff,
423 mtod(m1, u_char *) + roff + hlen,
424 m1->m_len - (roff + hlen))
    [all...]
ipsec_output.c 154 int hlen, roff, iphlen; local in function:ipsec_process_done
169 mo = m_makespace(m, sizeof(struct ip), hlen, &roff);
176 mo = m_makespace(m, sizeof(struct ip6_hdr), hlen, &roff);
197 udp = (struct udphdr *)(mtod(mo, char *) + roff);
xform_esp.c 684 int hlen, rlen, tlen, padlen, blks, alen, i, roff; local in function:esp_output
771 mo = m_makespace(m, skip, hlen, &roff);
783 memcpy(mtod(mo, char *) + roff, &sav->spi, sizeof(uint32_t));
795 memcpy(mtod(mo,char *) + roff + sizeof(uint32_t), &replay,
xform_ipcomp.c 515 int skip, rlen, roff, flags; local in function:ipcomp_output_cb
547 mo = m_makespace(m, skip, IPCOMP_HLENGTH, &roff);
556 ipcomp = (struct ipcomp *)(mtod(mo, char *) + roff);
xform_ah.c 891 int error, rplen, authsize, ahsize, maxpacketsize, roff; local in function:ah_output
957 mi = m_makespace(m, skip, ahsize, &roff);
970 * contiguous memory, at roff bytes offset into the returned mbuf.
972 ah = (struct newah *)(mtod(mi, char *) + roff);
  /src/sys/dev/rasops/
rasops.c 1530 int col, roff; local in function:rasops_copyrows_rotated_cw
1533 for (roff = 0; roff < num; roff++)
1535 rasops_copychar(cookie, src + roff, dst + roff,
1538 for (roff = num - 1; roff >= 0; roff--)
1540 rasops_copychar(cookie, src + roff, dst + roff
1646 int col, roff; local in function:rasops_copyrows_rotated_ccw
    [all...]
  /src/usr.sbin/makemandb/
makemandb.c 41 #include "dist/roff.h"
876 struct roff_meta *roff; local in function:begin_parse
882 roff = mparse_result(mp);
883 if (roff == NULL) {
885 warnx("Not a roff(7) page");
889 if (roff->macroset == MACROSET_MDOC) {
891 proff_node(roff->first->child, rec, roff, mdocs);
892 } else if (roff->macroset == MACROSET_MAN) {
894 proff_node(roff->first->child, rec, roff, mans)
    [all...]
  /src/sys/dev/pci/
if_txp.c 715 uint32_t roff, woff; local in function:txp_rx_reclaim
720 roff = le32toh(*r->r_roff);
722 idx = roff / sizeof(struct txp_rx_desc);
725 while (roff != woff) {
810 roff += sizeof(struct txp_rx_desc);
811 if (roff == (RX_ENTRIES * sizeof(struct txp_rx_desc))) {
813 roff = 0;
  /src/sys/arch/arm/cortex/
gicv3_its.c 328 u_int woff, roff; local in function:gits_wait
337 roff = gits_read_8(its, GITS_CREADR) & GITS_CREADR_Offset;
338 if (woff == roff)

Completed in 29 milliseconds