Searched refs:chunk_begin (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/intel/io/pci/
H A Dpci_memlist.c157 uint64_t chunk_begin, chunk_end; local
170 chunk_begin = chunk->ml_address;
172 begin_in_chunk = IN_RANGE(rem_begin, chunk_begin, chunk_end);
173 end_in_chunk = IN_RANGE(rem_end, chunk_begin, chunk_end);
175 if (rem_begin <= chunk_begin && rem_end >= chunk_end) {
189 chunk_begin != rem_begin && chunk_end != rem_end) {
195 chunk->ml_size = rem_begin - chunk_begin;
203 MAX(chunk_begin, rem_begin) + 1;
204 if (rem_begin <= chunk_begin) {
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu.c728 uint64_t chunk_end, chunk_begin; local
733 chunk_end = chunk_begin = offset + length;
735 /* move chunk_begin backwards to the beginning of this chunk */
736 err = get_next_chunk(dn, &chunk_begin, offset);
739 ASSERT3U(chunk_begin, >=, offset);
740 ASSERT3U(chunk_begin, <=, chunk_end);
744 chunk_begin, chunk_end - chunk_begin);
756 dnode_free_range(dn, chunk_begin, chunk_end - chunk_begin, t
[all...]

Completed in 62 milliseconds