Home
last modified time | relevance | path

Searched refs:buff (Results 1 – 10 of 10) sorted by relevance

/fs/squashfs/
Dcache.c305 void *buff = kmap_atomic(entry->page[offset / PAGE_CACHE_SIZE]) in squashfs_copy_data() local
311 memcpy(buffer, buff, remaining); in squashfs_copy_data()
312 kunmap_atomic(buff); in squashfs_copy_data()
317 memcpy(buffer, buff, bytes); in squashfs_copy_data()
318 kunmap_atomic(buff); in squashfs_copy_data()
413 void *buff; in squashfs_read_table() local
433 buff = kmalloc(length, GFP_KERNEL); in squashfs_read_table()
434 if (!buff) in squashfs_read_table()
436 squashfs_actor_to_buf(actor, buff, length); in squashfs_read_table()
439 return buff; in squashfs_read_table()
Dxz_wrapper.c52 void *buff, int len) in squashfs_xz_comp_opts() argument
54 struct disk_comp_opts *comp_opts = buff; in squashfs_xz_comp_opts()
94 static void *squashfs_xz_init(struct squashfs_sb_info *msblk, void *buff) in squashfs_xz_init() argument
96 struct comp_opts *comp_opts = buff; in squashfs_xz_init()
Dlz4_wrapper.c35 void *buff, int len) in lz4_comp_opts() argument
37 struct lz4_comp_opts *comp_opts = buff; in lz4_comp_opts()
54 static void *lz4_init(struct squashfs_sb_info *msblk, void *buff) in lz4_init() argument
Ddecompressor.h39 void *buff, int length) in squashfs_comp_opts() argument
42 msblk->decompressor->comp_opts(msblk, buff, length) : NULL; in squashfs_comp_opts()
Dlzo_wrapper.c41 static void *lzo_init(struct squashfs_sb_info *msblk, void *buff) in lzo_init() argument
Dzlib_wrapper.c37 static void *zlib_init(struct squashfs_sb_info *dummy, void *buff) in zlib_init() argument
/fs/befs/
Ddatastream.h14 void *buff, befs_off_t len);
Ddatastream.c125 befs_read_lsymlink(struct super_block * sb, befs_data_stream * ds, void *buff, in befs_read_lsymlink() argument
144 memcpy(buff + bytes_read, bh->b_data, plen); in befs_read_lsymlink()
/fs/ecryptfs/
Dmain.c780 struct kobj_attribute *attr, char *buff) in version_show() argument
782 return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK); in version_show()
/fs/ncpfs/
Dsock.c50 static int _send(struct socket *sock, const void *buff, int len) in _send() argument
53 vec.iov_base = (void *) buff; in _send()