Lines Matching refs:cp_len
182 int cp_len = 0;
190 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
194 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
196 len -= cp_len;
197 buffer += cp_len;
210 cp_len += len;
213 return cp_len;
228 int cp_len = 0;
240 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
242 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
244 len -= cp_len;
245 buffer += cp_len;
246 pos += cp_len;