Searched refs:byte (Results 1 – 13 of 13) sorted by relevance
/fs/ntfs/ |
D | bitmap.c | 92 u8 *byte = kaddr + pos; in __ntfs_bitmap_set_bits_in_run() local 96 *byte |= 1 << bit++; in __ntfs_bitmap_set_bits_in_run() 98 *byte &= ~(1 << bit++); in __ntfs_bitmap_set_bits_in_run() 145 u8 *byte; in __ntfs_bitmap_set_bits_in_run() local 150 byte = kaddr + len; in __ntfs_bitmap_set_bits_in_run() 153 *byte |= 1 << bit; in __ntfs_bitmap_set_bits_in_run() 155 *byte &= ~(1 << bit); in __ntfs_bitmap_set_bits_in_run()
|
D | lcnalloc.c | 159 u8 *buf, *byte; in ntfs_cluster_alloc() local 305 byte = buf + (lcn >> 3); in ntfs_cluster_alloc() 314 (unsigned int)*byte); in ntfs_cluster_alloc() 316 if (*byte == 0xff) { in ntfs_cluster_alloc() 324 if (*byte & bit) { in ntfs_cluster_alloc() 358 *byte |= bit; in ntfs_cluster_alloc() 362 (unsigned int)*byte); in ntfs_cluster_alloc()
|
D | mft.c | 1137 u8 *buf, *byte; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() local 1207 byte = buf + (bit >> 3); in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1208 if (*byte == 0xff) in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1210 b = ffz((unsigned long)*byte); in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock() 1217 *byte |= 1 << b; in ntfs_mft_bitmap_find_and_alloc_free_rec_nolock()
|
/fs/hfs/ |
D | btree.c | 254 u8 *data, byte, m; in hfs_bmap_alloc() local 276 byte = data[off]; in hfs_bmap_alloc() 277 if (byte != 0xff) { in hfs_bmap_alloc() 279 if (!(byte & m)) { in hfs_bmap_alloc() 326 u8 *data, byte, m; in hfs_bmap_free() local 365 byte = data[off]; in hfs_bmap_free() 366 if (!(byte & m)) { in hfs_bmap_free() 373 data[off] = byte & ~m; in hfs_bmap_free()
|
/fs/hfsplus/ |
D | btree.c | 380 u8 *data, byte, m; in hfs_bmap_alloc() local 402 byte = data[off]; in hfs_bmap_alloc() 403 if (byte != 0xff) { in hfs_bmap_alloc() 405 if (!(byte & m)) { in hfs_bmap_alloc() 453 u8 *data, byte, m; in hfs_bmap_free() local 495 byte = data[off]; in hfs_bmap_free() 496 if (!(byte & m)) { in hfs_bmap_free() 504 data[off] = byte & ~m; in hfs_bmap_free()
|
/fs/jffs2/ |
D | compr_rubin.c | 230 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()
|
D | TODO | 20 - use bad block check instead of the hardwired byte check
|
/fs/efivarfs/ |
D | Kconfig | 8 same 1024-byte variable size limit.
|
/fs/cramfs/ |
D | README | 46 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 <block>s are merely byte-aligned, not generally u32-aligned.
|
/fs/gfs2/ |
D | rgrp.c | 134 const u8 *byte; in gfs2_testbit() local 137 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit() 140 return (*byte >> bit) & GFS2_BIT_MASK; in gfs2_testbit() 417 const u8 *byte = buffer; in gfs2_bitcount() local 424 for (; byte < end; byte++) { in gfs2_bitcount() 425 if (((*byte) & 0x03) == state) in gfs2_bitcount() 427 if (((*byte) & 0x0C) == state1) in gfs2_bitcount() 429 if (((*byte) & 0x30) == state2) in gfs2_bitcount() 431 if (((*byte) & 0xC0) == state3) in gfs2_bitcount()
|
/fs/affs/ |
D | Changes | 17 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/ |
D | minix.h | 98 #error Minix file system byte order broken
|
/fs/befs/ |
D | ChangeLog | 280 * Removed byte-order conversion code.
|