Lines Matching refs:cp_len
184 int cp_len = 0;
192 cp_len = min_t(unsigned int, len, EXT4_MIN_INLINE_DATA_SIZE);
195 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
197 len -= cp_len;
198 buffer += cp_len;
211 cp_len += len;
214 return cp_len;
229 int cp_len = 0;
241 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
243 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
245 len -= cp_len;
246 buffer += cp_len;
247 pos += cp_len;