• Home
  • Raw
  • Download

Lines Matching defs:p

63 #define __compiletime_strlen(p)					\  argument
197 char *strncpy(char * const POS p, const char *q, __kernel_size_t size) in strncpy()
219 __FORTIFY_INLINE __kernel_size_t strnlen(const char * const POS p, __kernel_size_t maxlen) in strnlen()
257 #define strlen(p) \ argument
261 __kernel_size_t __fortify_strlen(const char * const POS p) in __fortify_strlen()
277 __FORTIFY_INLINE ssize_t sized_strscpy(char * const POS p, const char * const POS q, size_t size) in sized_strscpy()
359 size_t strlcat(char * const POS p, const char * const POS q, size_t avail) in strlcat()
413 char *strcat(char * const POS p, const char *q) in strcat()
444 char *strncat(char * const POS p, const char * const POS q, __kernel_size_t count) in strncat()
501 #define __fortify_memset_chk(p, c, size, p_size, p_size_field) ({ \ argument
512 #define memset(p, c, s) __fortify_memset_chk(p, c, s, \ argument
619 #define __fortify_memcpy_chk(p, q, size, p_size, q_size, \ argument
678 #define memcpy(p, q, s) __fortify_memcpy_chk(p, q, s, \ argument
682 #define memmove(p, q, s) __fortify_memcpy_chk(p, q, s, \ argument
688 __FORTIFY_INLINE void *memscan(void * const POS0 p, int c, __kernel_size_t size) in memscan()
700 int memcmp(const void * const POS0 p, const void * const POS0 q, __kernel_size_t size) in memcmp()
719 void *memchr(const void * const POS0 p, int c, __kernel_size_t size) in memchr()
731 __FORTIFY_INLINE void *memchr_inv(const void * const POS0 p, int c, size_t size) in memchr_inv()
744 __FORTIFY_INLINE void *kmemdup_noprof(const void * const POS0 p, size_t size, gfp_t gfp) in kmemdup_noprof()
773 char *strcpy(char * const POS p, const char * const POS q) in strcpy()