Home
last modified time | relevance | path

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

/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_tx.c582 boolean_t match_offset = B_FALSE; in dmu_tx_dirty_buf() local
625 match_offset = TRUE; in dmu_tx_dirty_buf()
633 match_offset = TRUE; in dmu_tx_dirty_buf()
641 match_offset = TRUE; in dmu_tx_dirty_buf()
651 match_offset = TRUE; in dmu_tx_dirty_buf()
655 match_offset = TRUE; in dmu_tx_dirty_buf()
659 match_offset = TRUE; in dmu_tx_dirty_buf()
662 match_offset = TRUE; in dmu_tx_dirty_buf()
671 if (match_object && match_offset) { in dmu_tx_dirty_buf()
/freebsd-12.1/gnu/usr.bin/grep/
H A Dgrep.c610 size_t match_offset; in prline() local
611 while ((match_offset = (*execute) (beg, lim - beg, &match_size, 1)) in prline()
614 char const *b = beg + match_offset; in prline()
635 size_t match_offset; in prline() local
636 while (lim-beg && (match_offset = (*execute) (beg, lim - beg, &match_size, 1)) in prline()
639 char const *b = beg + match_offset; in prline()
646 fwrite (beg, sizeof (char), match_offset, stdout); in prline()
755 size_t match_offset; in grepbuf() local
760 while ((match_offset = (*execute) (p, lim - p, &match_size, 0)) != (size_t) -1) in grepbuf()
762 char const *b = p + match_offset; in grepbuf()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp862 addr_t match_offset; member