Searched refs:z (Results 1 – 8 of 8) sorted by relevance
| /fs/zonefs/ |
| A D | super.c | 55 if (zonefs_zone_is_cnv(z)) in zonefs_account_active() 70 (z->z_wpoffset > 0 && z->z_wpoffset < z->z_capacity)) { in zonefs_account_active() 197 z->z_sector); in zonefs_check_zone_condition() 210 z->z_sector); in zonefs_check_zone_condition() 213 return z->z_capacity; in zonefs_check_zone_condition() 214 return z->z_wpoffset; in zonefs_check_zone_condition() 217 return z->z_capacity; in zonefs_check_zone_condition() 255 *z = *zone; in zonefs_io_error_cb() 660 inode->i_private = z; in zonefs_get_file_inode() 1003 z->z_size, in zonefs_init_zgroup() [all …]
|
| A D | file.c | 210 if (!zonefs_zone_is_seq(z)) in zonefs_file_truncate() 215 else if (isize == z->z_capacity) in zonefs_file_truncate() 257 z->z_wpoffset = isize; in zonefs_file_truncate() 405 loff_t max_size = z->z_capacity; in zonefs_write_check_limits() 442 if (zonefs_zone_is_cnv(z)) in zonefs_write_checks() 445 iocb->ki_pos = z->z_wpoffset; in zonefs_write_checks() 504 if (zonefs_zone_is_seq(z)) { in zonefs_file_dio_write() 517 z->z_wpoffset += count; in zonefs_file_dio_write() 540 if (zonefs_zone_is_seq(z)) { in zonefs_file_dio_write() 700 if (*ppos >= z->z_capacity) in zonefs_file_splice_read() [all …]
|
| A D | trace.h | 23 TP_PROTO(struct super_block *sb, struct zonefs_zone *z, 25 TP_ARGS(sb, z, op), 36 z->z_sector >> ZONEFS_SB(sb)->s_zone_sectors_shift; 38 __entry->sector = z->z_sector; 39 __entry->nr_sectors = z->z_size >> SECTOR_SHIFT;
|
| A D | zonefs.h | 114 static inline bool zonefs_zone_is_cnv(struct zonefs_zone *z) in zonefs_zone_is_cnv() argument 116 return z->z_flags & ZONEFS_ZONE_CNV; in zonefs_zone_is_cnv() 119 static inline bool zonefs_zone_is_seq(struct zonefs_zone *z) in zonefs_zone_is_seq() argument 121 return !zonefs_zone_is_cnv(z); in zonefs_zone_is_seq()
|
| /fs/erofs/ |
| A D | decompressor_deflate.c | 7 struct z_stream_s z; member 36 vfree(strm->z.workspace); in z_erofs_deflate_exit() 79 if (!strm->z.workspace) { in z_erofs_load_deflate_config() 138 rq->inputsize -= strm->z.avail_in; in __z_erofs_deflate_decompress() 140 strm->z.avail_out = 0; in __z_erofs_deflate_decompress() 144 dctx.avail_out = strm->z.avail_out; in __z_erofs_deflate_decompress() 145 dctx.inbuf_sz = strm->z.avail_in; in __z_erofs_deflate_decompress() 147 (void **)&strm->z.next_out, in __z_erofs_deflate_decompress() 148 (void **)&strm->z.next_in, pgpl); in __z_erofs_deflate_decompress() 151 strm->z.avail_out = dctx.avail_out; in __z_erofs_deflate_decompress() [all …]
|
| /fs/smb/common/ |
| A D | cifs_md4.c | 36 static inline u32 F(u32 x, u32 y, u32 z) in F() argument 38 return (x & y) | ((~x) & z); in F() 41 static inline u32 G(u32 x, u32 y, u32 z) in G() argument 43 return (x & y) | (x & z) | (y & z); in G() 46 static inline u32 H(u32 x, u32 y, u32 z) in H() argument 48 return x ^ y ^ z; in H()
|
| /fs/ext4/ |
| A D | hash.c | 34 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 35 #define G(x, y, z) (((x) & (y)) + (((x) ^ (y)) & (z))) argument 36 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
|
| /fs/cramfs/ |
| A D | README | 100 with -z if you want it to create files that can have holes in them.
|
Completed in 17 milliseconds