Lines Matching defs:max
25 * hit it), 'max' is the address space maximum (and we return
29 unsigned long count, unsigned long max)
37 while (max >= sizeof(unsigned long)) {
65 max -= sizeof(unsigned long);
69 while (max) {
77 max--;
81 * Uhhuh. We hit 'max'. But was that the user-specified maximum
126 unsigned long max = max_addr - src_addr;
130 * Truncate 'max' to the user-specified limit, so that
133 if (max > count)
134 max = count;
138 if (user_read_access_begin(src, max)) {
139 retval = do_strncpy_from_user(dst, src, count, max);