/fs/squashfs/ |
D | lz4_wrapper.c | 33 void *buff, int len) in lz4_comp_opts() argument 35 struct lz4_comp_opts *comp_opts = buff; in lz4_comp_opts() 52 static void *lz4_init(struct squashfs_sb_info *msblk, void *buff) in lz4_init() argument 96 void *buff = stream->input, *data; in lz4_uncompress() local 101 memcpy(buff, bh[i]->b_data + offset, avail); in lz4_uncompress() 102 buff += avail; in lz4_uncompress() 116 buff = stream->output; in lz4_uncompress() 119 memcpy(data, buff, bytes); in lz4_uncompress() 122 memcpy(data, buff, PAGE_SIZE); in lz4_uncompress() 123 buff += PAGE_SIZE; in lz4_uncompress()
|
D | lzo_wrapper.c | 28 static void *lzo_init(struct squashfs_sb_info *msblk, void *buff) in lzo_init() argument 70 void *buff = stream->input, *data; in lzo_uncompress() local 76 memcpy(buff, bh[i]->b_data + offset, avail); in lzo_uncompress() 77 buff += avail; in lzo_uncompress() 90 buff = stream->output; in lzo_uncompress() 93 memcpy(data, buff, bytes); in lzo_uncompress() 96 memcpy(data, buff, PAGE_SIZE); in lzo_uncompress() 97 buff += PAGE_SIZE; in lzo_uncompress()
|
D | xz_wrapper.c | 39 void *buff, int len) in squashfs_xz_comp_opts() argument 41 struct disk_comp_opts *comp_opts = buff; in squashfs_xz_comp_opts() 81 static void *squashfs_xz_init(struct squashfs_sb_info *msblk, void *buff) in squashfs_xz_init() argument 83 struct comp_opts *comp_opts = buff; in squashfs_xz_init()
|
D | decompressor.h | 26 void *buff, int length) in squashfs_comp_opts() argument 29 msblk->decompressor->comp_opts(msblk, buff, length) : NULL; in squashfs_comp_opts()
|
D | cache.c | 304 void *buff = entry->data[offset / PAGE_SIZE] in squashfs_copy_data() local 310 memcpy(buffer, buff, remaining); in squashfs_copy_data() 315 memcpy(buffer, buff, bytes); in squashfs_copy_data()
|
D | zlib_wrapper.c | 24 static void *zlib_init(struct squashfs_sb_info *dummy, void *buff) in zlib_init() argument
|
D | zstd_wrapper.c | 29 static void *zstd_init(struct squashfs_sb_info *msblk, void *buff) in zstd_init() argument
|
/fs/f2fs/ |
D | hash.c | 115 unsigned char *buff; in f2fs_dentry_hash() local 121 buff = f2fs_kzalloc(sbi, sizeof(char) * PATH_MAX, GFP_KERNEL); in f2fs_dentry_hash() 122 if (!buff) in f2fs_dentry_hash() 125 dlen = utf8_casefold(um, name_info, buff, PATH_MAX); in f2fs_dentry_hash() 127 kvfree(buff); in f2fs_dentry_hash() 130 folded.name = buff; in f2fs_dentry_hash() 134 kvfree(buff); in f2fs_dentry_hash()
|
/fs/ext4/ |
D | hash.c | 280 unsigned char *buff; in ext4fs_dirhash() local 284 buff = kzalloc(sizeof(char) * PATH_MAX, GFP_KERNEL); in ext4fs_dirhash() 285 if (!buff) in ext4fs_dirhash() 288 dlen = utf8_casefold(um, &qstr, buff, PATH_MAX); in ext4fs_dirhash() 290 kfree(buff); in ext4fs_dirhash() 294 r = __ext4fs_dirhash(buff, dlen, hinfo); in ext4fs_dirhash() 296 kfree(buff); in ext4fs_dirhash()
|
/fs/incfs/ |
D | main.c | 26 struct kobj_attribute *attr, char *buff) in corefs_show() argument 28 return snprintf(buff, PAGE_SIZE, "supported\n"); in corefs_show()
|
/fs/befs/ |
D | datastream.h | 15 void *buff, befs_off_t len);
|
D | datastream.c | 131 void *buff, befs_off_t len) in befs_read_lsymlink() argument 150 memcpy(buff + bytes_read, bh->b_data, plen); in befs_read_lsymlink()
|
/fs/ecryptfs/ |
D | main.c | 758 struct kobj_attribute *attr, char *buff) in version_show() argument 760 return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK); in version_show()
|