Searched refs:byte (Results 1 – 15 of 15) sorted by relevance
/fs/ntfs/ |
D | bitmap.c | 78 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()
|
D | lcnalloc.c | 145 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()
|
D | mft.c | 1132 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/ |
D | btree.c | 255 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/ |
D | btree.c | 381 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/ |
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/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 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/ |
D | mkutf8data.c | 1199 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/ |
D | Kconfig | 9 same 1024-byte variable size limit.
|
/fs/gfs2/ |
D | rgrp.c | 139 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/ |
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/btrfs/ |
D | compression.c | 1527 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/ |
D | ChangeLog | 280 * Removed byte-order conversion code.
|