• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-alpha/

Lines Matching defs:to

59  * Careful to not
70 * doing multiple accesses to the same area (the programmer has to do the
79 * The "lda %1, 2b-1b(%0)" bits are magic to get the assembler to
169 load, so we have to do a general unaligned operation. */
237 * instead of writing: this is because they do not write to
284 write, so we have to do a general unaligned operation. */
344 /* This little bit of silliness is to get the GP loaded for a function
358 __copy_tofrom_user_nocheck(void *to, const void *from, long len)
360 register void * __cu_to __asm__("$6") = to;
375 __copy_tofrom_user(void *to, const void *from, long len, const void __user *validate)
378 len = __copy_tofrom_user_nocheck(to, from, len);
382 #define __copy_to_user(to,from,n) \
384 __chk_user_ptr(to); \
385 __copy_tofrom_user_nocheck((__force void *)(to),(from),(n)); \
387 #define __copy_from_user(to,from,n) \
390 __copy_tofrom_user_nocheck((to),(__force void *)(from),(n)); \
398 copy_to_user(void __user *to, const void *from, long n)
400 return __copy_tofrom_user((__force void *)to, from, n, to);
404 copy_from_user(void *to, const void __user *from, long n)
406 return __copy_tofrom_user(to, (__force void *)from, n, from);
412 __clear_user(void __user *to, long len)
414 register void __user * __cl_to __asm__("$6") = to;
426 clear_user(void __user *to, long len)
428 if (__access_ok((unsigned long)to, len, get_fs()))
429 len = __clear_user(to, len);
442 strncpy_from_user(char *to, const char __user *from, long n)
446 ret = __strncpy_from_user(to, from, n);
473 * - errreg is the register in which to place -EFAULT.
479 * The exception fixup information "just so happens" to be arranged