Lines Matching defs:len
41 int pos, len;
97 len = min_t(s64, cnt >> 3, PAGE_SIZE - pos);
98 memset(kaddr + pos, value ? 0xff : 0, len);
99 cnt -= len << 3;
101 /* Update @len to point to the first not-done byte in the page. */
103 len += pos;
121 len = min_t(s64, cnt >> 3, PAGE_SIZE);
122 memset(kaddr, value ? 0xff : 0, len);
123 cnt -= len << 3;
127 * partial, modify the appropriate bits in it. Note, @len is the
136 byte = kaddr + len;