Lines Matching refs:_crc
154 #define common_fields(_crc) \ in bch2_extent_crc_unpack() argument
155 .csum_type = _crc.csum_type, \ in bch2_extent_crc_unpack()
156 .compression_type = _crc.compression_type, \ in bch2_extent_crc_unpack()
157 .compressed_size = _crc._compressed_size + 1, \ in bch2_extent_crc_unpack()
158 .uncompressed_size = _crc._uncompressed_size + 1, \ in bch2_extent_crc_unpack()
159 .offset = _crc.offset, \ in bch2_extent_crc_unpack()
360 #define bkey_crc_next(_k, _end, _crc, _iter) \ argument
364 (_crc) = bch2_extent_crc_unpack(_k, \
372 #define __bkey_for_each_crc(_k, _start, _end, _crc, _iter) \ argument
373 for ((_crc) = bch2_extent_crc_unpack(_k, NULL), \
375 bkey_crc_next(_k, _end, _crc, _iter); \
378 #define bkey_for_each_crc(_k, _p, _crc, _iter) \ argument
379 __bkey_for_each_crc(_k, (_p).start, (_p).end, _crc, _iter)