Home
last modified time | relevance | path

Searched refs:moffset (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/net/
H A Dbpf_zerocopy.c294 u_int count, moffset, page, poffset; in bpf_zerocopy_append_mbuf() local
318 moffset = 0; in bpf_zerocopy_append_mbuf()
326 count = min(m->m_len - moffset, len); in bpf_zerocopy_append_mbuf()
328 bcopy(mtod(m, u_char *) + moffset, in bpf_zerocopy_append_mbuf()
339 moffset += count; in bpf_zerocopy_append_mbuf()
340 if (moffset == m->m_len) { in bpf_zerocopy_append_mbuf()
342 moffset = 0; in bpf_zerocopy_append_mbuf()
/freebsd/lib/libc/regex/
H A Dregcomp.c297 g->moffset = -1; in regcomp_internal()
1888 g->moffset = 0;
1937 g->moffset += offset;
1940 g->moffset = offset;
1952 g->moffset += offset;
1955 g->moffset = offset;
1970 g->moffset += offset;
1973 g->moffset = offset;
1993 g->moffset += offset;
1995 g->moffset = offset;
[all …]
H A Dregex2.h189 int moffset; /* latest point at which must may be located */ member
H A Dengine.c283 if (dp != NULL && g->moffset > -1) { in matcher()
286 nstart = stepback(start, dp, g->moffset); in matcher()
/freebsd/sys/fs/fuse/
H A Dfuse_kernel.h944 uint64_t moffset; member
954 uint64_t moffset; member
/freebsd/sys/geom/raid3/
H A Dg_raid3.c1706 off_t boffset, moffset; in g_raid3_sync_request() local
1773 moffset = sc->sc_mediasize; in g_raid3_sync_request()
1779 if (boffset < moffset) in g_raid3_sync_request()
1780 moffset = boffset; in g_raid3_sync_request()
1782 if (sync->ds_offset_done + maxphys * 100 < moffset) { in g_raid3_sync_request()
1784 sync->ds_offset_done = moffset; in g_raid3_sync_request()
/freebsd/contrib/file/src/
H A Dsoftmagic.c59 file_private int moffset(struct magic_set *, struct magic *,
322 switch (moffset(ms, m, &bb, offset, &ms->c.li[cont_level].off)) { in match()
452 switch (moffset(ms, m, &bb, offset, in match()
835 moffset(struct magic_set *ms, struct magic *m, const struct buffer *b, in moffset() function