Searched refs:p_len (Results 1 – 2 of 2) sorted by relevance
/include/linux/ |
D | string.h | 356 size_t p_len, copy_len; in strncat() local 361 p_len = strlen(p); in strncat() 363 if (p_size < p_len + copy_len + 1) in strncat() 365 __underlying_memcpy(p + p_len, q, copy_len); in strncat() 366 p[p_len + copy_len] = '\0'; in strncat()
|
D | skbuff.h | 395 #define skb_frag_foreach_page(f, f_off, f_len, p, p_off, p_len, copied) \ argument 398 p_len = skb_frag_must_loop(p) ? \ 402 copied += p_len, p++, p_off = 0, \ 403 p_len = min_t(u32, f_len - copied, PAGE_SIZE)) \
|