Searched refs:chars (Results 1 – 3 of 3) sorted by relevance
/fs/ |
D | pipe.c | 292 size_t chars = buf->len; in pipe_read() local 296 if (chars > total_len) in pipe_read() 297 chars = total_len; in pipe_read() 306 written = copy_page_to_iter(buf->page, buf->offset, chars, to); in pipe_read() 307 if (unlikely(written < chars)) { in pipe_read() 312 ret += chars; in pipe_read() 313 buf->offset += chars; in pipe_read() 314 buf->len -= chars; in pipe_read() 318 total_len = chars; in pipe_read() 329 total_len -= chars; in pipe_read() [all …]
|
/fs/ocfs2/ |
D | ocfs2_fs.h | 1572 int chars; in ocfs2_sprintf_system_inode_name() local 1580 chars = snprintf(buf, len, "%s", in ocfs2_sprintf_system_inode_name() 1583 chars = snprintf(buf, len, in ocfs2_sprintf_system_inode_name() 1587 return chars; in ocfs2_sprintf_system_inode_name()
|
/fs/reiserfs/ |
D | inode.c | 294 int chars; in _get_block_create_0() local 417 chars = in _get_block_create_0() 422 chars = ih_item_len(ih) - path.pos_in_item; in _get_block_create_0() 424 memcpy(p, ih_item_body(bh, ih) + path.pos_in_item, chars); in _get_block_create_0() 429 p += chars; in _get_block_create_0() 441 set_cpu_key_k_offset(&key, cpu_key_k_offset(&key) + chars); in _get_block_create_0()
|