Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 15 of 15) sorted by relevance

/fs/ntfs/
Dbitmap.c78 u8 *byte = kaddr + pos; in __ntfs_bitmap_set_bits_in_run() local
82 *byte |= 1 << bit++; in __ntfs_bitmap_set_bits_in_run()
84 *byte &= ~(1 << bit++); in __ntfs_bitmap_set_bits_in_run()
131 u8 *byte; in __ntfs_bitmap_set_bits_in_run() local
136 byte = kaddr + len; in __ntfs_bitmap_set_bits_in_run()
139 *byte |= 1 << bit; in __ntfs_bitmap_set_bits_in_run()
141 *byte &= ~(1 << bit); in __ntfs_bitmap_set_bits_in_run()
Dlcnalloc.c145 u8 *buf, *byte; in ntfs_cluster_alloc() local
291 byte = buf + (lcn >> 3); in ntfs_cluster_alloc()
300 (unsigned int)*byte); in ntfs_cluster_alloc()
302 if (*byte == 0xff) { in ntfs_cluster_alloc()
310 if (*byte & bit) { in ntfs_cluster_alloc()
344 *byte |= bit; in ntfs_cluster_alloc()
348 (unsigned int)*byte); in ntfs_cluster_alloc()
Dmft.c1132 u8 *buf, *byte; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() local
1202 byte = buf + (bit >> 3); in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock()
1203 if (*byte == 0xff) in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock()
1205 b = ffz((unsigned long)*byte); in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock()
1212 *byte |= 1 << b; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock()
/fs/hfs/
Dbtree.c255 u8 *data, byte, m; in hfs_bmap_alloc() local
277 byte = data[off]; in hfs_bmap_alloc()
278 if (byte != 0xff) { in hfs_bmap_alloc()
280 if (!(byte & m)) { in hfs_bmap_alloc()
327 u8 *data, byte, m; in hfs_bmap_free() local
366 byte = data[off]; in hfs_bmap_free()
367 if (!(byte & m)) { in hfs_bmap_free()
374 data[off] = byte & ~m; in hfs_bmap_free()
/fs/hfsplus/
Dbtree.c381 u8 *data, byte, m; in hfs_bmap_alloc() local
403 byte = data[off]; in hfs_bmap_alloc()
404 if (byte != 0xff) { in hfs_bmap_alloc()
406 if (!(byte & m)) { in hfs_bmap_alloc()
454 u8 *data, byte, m; in hfs_bmap_free() local
496 byte = data[off]; in hfs_bmap_free()
497 if (!(byte & m)) { in hfs_bmap_free()
505 data[off] = byte & ~m; in hfs_bmap_free()
/fs/jffs2/
Dcompr_rubin.c230 static int out_byte(struct rubin_state *rs, unsigned char byte) in out_byte() argument
238 rs->bits[i], byte & 1); in out_byte()
244 byte >>= 1 ; in out_byte()
DTODO20 - use bad block check instead of the hardwired byte check
/fs/cramfs/
DREADME46 The i'th <block_pointer> for a file stores the byte offset of the
47 *end* of the i'th <block> (i.e. one past the last byte, which is the
61 aligned to a 4-byte boundary. The block size is either blksize
80 <block>s are merely byte-aligned, not generally u32-aligned.
/fs/unicode/
Dmkutf8data.c1199 unsigned char byte; in emit() local
1227 byte = 0; in emit()
1229 byte |= NEXTBYTE; in emit()
1230 byte |= (node->bitnum & BITNUM); in emit()
1233 byte |= LEFTNODE; in emit()
1235 byte |= RIGHTNODE; in emit()
1244 byte |= offlen << OFFLEN_SHIFT; in emit()
1245 *data++ = byte; in emit()
1254 byte |= TRIENODE; in emit()
1256 *data++ = byte; in emit()
[all …]
/fs/efivarfs/
DKconfig9 same 1024-byte variable size limit.
/fs/gfs2/
Drgrp.c139 const u8 *byte; in gfs2_testbit() local
147 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit()
150 return (*byte >> bit) & GFS2_BIT_MASK; in gfs2_testbit()
422 const u8 *byte = buffer; in gfs2_bitcount() local
429 for (; byte < end; byte++) { in gfs2_bitcount()
430 if (((*byte) & 0x03) == state) in gfs2_bitcount()
432 if (((*byte) & 0x0C) == state1) in gfs2_bitcount()
434 if (((*byte) & 0x30) == state2) in gfs2_bitcount()
436 if (((*byte) & 0xC0) == state3) in gfs2_bitcount()
/fs/affs/
DChanges17 doesn't work with devices which have 256 byte
199 correctly byte-swapped. Since most of the users of the
219 - Changed all network byte-order macros to the
/fs/minix/
Dminix.h98 #error Minix file system byte order broken
/fs/btrfs/
Dcompression.c1527 u8 byte; in btrfs_compress_heuristic() local
1542 byte = ws->sample[i]; in btrfs_compress_heuristic()
1543 ws->bucket[byte].count++; in btrfs_compress_heuristic()
/fs/befs/
DChangeLog280 * Removed byte-order conversion code.