Home
last modified time | relevance | path

Searched refs:lmask (Results 1 – 8 of 8) sorted by relevance

/dragonfly/sys/vfs/ntfs/
H A Dntfs_compr.c50 int len, dshift, lmask; in ntfs_uncompblock() local
74 for (j = pos - 1, lmask = 0xFFF, dshift = 12; in ntfs_uncompblock()
77 lmask >>= 1; in ntfs_uncompblock()
80 blen = 3 + (GET_UINT16(cbuf + cpos) & lmask); in ntfs_uncompblock()
/dragonfly/contrib/zlib-1.2/
H A Dinffast.c71 unsigned lmask; /* mask for first level of length codes */ local
98 lmask = (1U << state->lenbits) - 1;
110 here = lcode[hold & lmask];
/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_inffast.c88 unsigned lmask; /* mask for first level of length codes */ in inflate_fast() local
115 lmask = (1U << state->lenbits) - 1; in inflate_fast()
127 here = lcode[hold & lmask]; in inflate_fast()
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_inffast.c88 unsigned lmask; /* mask for first level of length codes */ in inflate_fast() local
115 lmask = (1U << state->lenbits) - 1; in inflate_fast()
127 here = lcode[hold & lmask]; in inflate_fast()
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib_inffast.c88 unsigned lmask; /* mask for first level of length codes */ in inflate_fast() local
115 lmask = (1U << state->lenbits) - 1; in inflate_fast()
127 here = lcode[hold & lmask]; in inflate_fast()
/dragonfly/sys/vfs/hammer2/
H A Dhammer2_bulkfree.c1160 hammer2_bitmap_t lmask; in h2_bulkfree_sync_adjust() local
1166 lmask = live->bitmapq[bindex]; /* live */ in h2_bulkfree_sync_adjust()
1168 if (lmask == mmask) { in h2_bulkfree_sync_adjust()
1185 switch (lmask & 3) { in h2_bulkfree_sync_adjust()
1232 switch (lmask & 3) { in h2_bulkfree_sync_adjust()
1267 lmask >>= 2; in h2_bulkfree_sync_adjust()
/dragonfly/usr.sbin/makefs/hammer2/
H A Dhammer2_bulkfree.c1171 hammer2_bitmap_t lmask; in h2_bulkfree_sync_adjust() local
1177 lmask = live->bitmapq[bindex]; /* live */ in h2_bulkfree_sync_adjust()
1179 if (lmask == mmask) { in h2_bulkfree_sync_adjust()
1196 switch (lmask & 3) { in h2_bulkfree_sync_adjust()
1243 switch (lmask & 3) { in h2_bulkfree_sync_adjust()
1278 lmask >>= 2; in h2_bulkfree_sync_adjust()
/dragonfly/usr.bin/compress/
H A Dzopen.c359 static char_type lmask[9] = variable
382 *bp = (*bp & rmask[r_off]) | ((ocode << r_off) & lmask[r_off]); in output()