/freebsd/sys/netinet/ |
H A D | accf_dns.c | 47 unsigned long moff; /* Offset of the beginning of m. */ member 77 if (p->offset < p->moff) \ 79 while (p->offset >= p->moff + p->m->m_len) { \ 80 p->moff += p->m->m_len; \ 89 val = *(mtod(p->m, unsigned char *) + (p->offset - p->moff)); \ 110 q.moff = 0; in skippacket()
|
H A D | tcp_output.c | 910 u_int moff; in tcp_default_output() local 950 moff = len % max_len; in tcp_default_output() 951 if (moff != 0) { in tcp_default_output() 952 len -= moff; in tcp_default_output() 1025 u_int moff; in tcp_default_output() local 1081 mb = sbsndptr_noadv(&so->so_snd, off, &moff); in tcp_default_output() 1083 m_copydata(mb, moff, len, in tcp_default_output() 1096 m->m_next = tcp_m_copym(mb, moff, in tcp_default_output()
|
/freebsd/sys/dev/ata/ |
H A D | ata-lowlevel.c | 817 int todo, done, off, moff, resid, size, i; in ata_pio_read() local 835 moff = bio->bio_ma_offset + off; in ata_pio_read() 837 bio->bio_ma[moff / PAGE_SIZE]); in ata_pio_read() 838 moff %= PAGE_SIZE; in ata_pio_read() 839 size = min(size, PAGE_SIZE - moff); in ata_pio_read() 840 addr = (void *)(page + moff); in ata_pio_read() 903 int todo, done, off, moff, resid, size, i; in ata_pio_write() local 921 moff = bio->bio_ma_offset + off; in ata_pio_write() 923 bio->bio_ma[moff / PAGE_SIZE]); in ata_pio_write() 924 moff %= PAGE_SIZE; in ata_pio_write() [all …]
|
/freebsd/sys/sys/ |
H A D | sockbuf.h | 242 sbsndptr_noadv(struct sockbuf *sb, u_int off, u_int *moff); 244 sbsndmbuf(struct sockbuf *sb, u_int off, u_int *moff);
|
/freebsd/sys/kern/ |
H A D | uipc_sockbuf.c | 1720 sbsndptr_noadv(struct sockbuf *sb, uint32_t off, uint32_t *moff) in sbsndptr_noadv() argument 1726 *moff = off; in sbsndptr_noadv() 1736 *moff = off; in sbsndptr_noadv() 1773 sbsndmbuf(struct sockbuf *sb, u_int off, u_int *moff) in sbsndmbuf() argument 1795 *moff = off; in sbsndmbuf()
|
H A D | uipc_mbuf.c | 715 int remain, moff, nsize; in m_dup() local 725 moff = 0; in m_dup() 758 int chunk = min(nsize - n->m_len, m->m_len - moff); in m_dup() 760 m_copydata(m, moff, chunk, n->m_data + n->m_len); in m_dup() 761 moff += chunk; in m_dup() 764 if (moff == m->m_len) { in m_dup() 766 moff = 0; in m_dup()
|
H A D | uipc_socket.c | 2724 int moff, type = 0; local 2970 moff = 0; 2991 if (len > m->m_len - moff) 2992 len = m->m_len - moff; 3006 error = m_unmapped_uiomove(m, moff, uio, 3009 error = uiomove(mtod(m, char *) + moff, 3030 if (len == m->m_len - moff) { 3035 moff = 0; 3055 moff += len; 3149 uio->uio_resid -= m_length(m, NULL) - moff;
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_arc.c | 470 static const int moff[12] = variable 1269 pp->day += moff[month - 1]; in arc_receive()
|
/freebsd/sys/dev/cxgbe/ |
H A D | t4_main.c | 5035 uint32_t mtype, uint32_t moff) in copy_cfg_file_to_card() argument 5095 rc = validate_mt_off_len(sc, mtype, moff, cflen, &addr); in copy_cfg_file_to_card() 5099 __func__, mtype, moff, cflen, rc); in copy_cfg_file_to_card() 5141 uint32_t mtype, moff, finicsum, cfcsum, param, val; in apply_cfg_and_initialize() local 5154 moff = 0; in apply_cfg_and_initialize() 5158 moff = t4_flash_cfg_addr(sc); in apply_cfg_and_initialize() 5161 V_FW_CAPS_CONFIG_CMD_MEMADDR64K_CF(moff >> 16) | in apply_cfg_and_initialize() 5176 moff = G_FW_PARAMS_PARAM_Z(val) << 16; in apply_cfg_and_initialize() 5179 V_FW_CAPS_CONFIG_CMD_MEMADDR64K_CF(moff >> 16) | in apply_cfg_and_initialize() 5182 rc = copy_cfg_file_to_card(sc, cfg_file, mtype, moff); in apply_cfg_and_initialize() [all …]
|
H A D | adapter.h | 351 int16_t moff; /* offset of metadata from cl */ member
|
H A D | t4_sge.c | 1727 return ((void *)(sd->cl + sd->moff)); in cl_metadata() 5053 sd->moff = rxb->size2; in refill_fl() 5056 sd->moff = 0; in refill_fl()
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 12963 uint32_t moff; in bbr_output_wtime() local 12992 moff = len % (uint32_t)maxseg; in bbr_output_wtime() 12993 if (moff != 0) { in bbr_output_wtime() 12994 len -= moff; in bbr_output_wtime() 13067 uint32_t moff; in bbr_output_wtime() local 13141 mb = sbsndptr_noadv(sb, sb_offset, &moff); in bbr_output_wtime() 13143 m_copydata(mb, moff, (int)len, in bbr_output_wtime() 13156 if ((len + moff) > (sbavail(sb) + ((flags & (TH_FIN | TH_SYN)) ? 1 : 0))) { in bbr_output_wtime() 13159 tp, bbr, len, moff, in bbr_output_wtime() 13167 tp, bbr, len, moff, sbavail(sb), sb_offset, tp->snd_una); in bbr_output_wtime() [all …]
|
H A D | rack.c | 21346 uint32_t moff; in rack_output() local 21378 moff = len % (u_int)max_len; in rack_output() 21379 if (moff != 0) { in rack_output() 21381 len -= moff; in rack_output() 21474 uint32_t moff; in rack_output() local 21507 mb = sbsndptr_noadv(sb, sb_offset, &moff); in rack_output() 21509 s_moff = moff; in rack_output() 21511 m_copydata(mb, moff, (int)len, in rack_output() 21536 mb, moff, &len, in rack_output()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_itt.inl | 827 KMP_ITT_DEBUG_PRINT("[sin end] moff( %d )\n", mark);
|
/freebsd/share/dict/ |
H A D | web2 | 118058 moff
|