Home
last modified time | relevance | path

Searched refs:p_size (Results 1 – 5 of 5) sorted by relevance

/include/linux/
Dstring.h276 size_t p_size = __builtin_object_size(p, 0); in strncpy() local
277 if (__builtin_constant_p(size) && p_size < size) in strncpy()
279 if (p_size < size) in strncpy()
286 size_t p_size = __builtin_object_size(p, 0); in strcat() local
287 if (p_size == (size_t)-1) in strcat()
289 if (strlcat(p, q, p_size) >= p_size) in strcat()
297 size_t p_size = __builtin_object_size(p, 0); in strlen() local
300 if (p_size == (size_t)-1 || in strlen()
301 (__builtin_constant_p(p[p_size - 1]) && p[p_size - 1] == '\0')) in strlen()
303 ret = strnlen(p, p_size); in strlen()
[all …]
Dgenhd.h545 __le32 p_size; /* number of sectors in partition */ member
/include/crypto/
Ddh.h40 unsigned int p_size; member
/include/drm/ttm/
Dttm_bo_api.h616 unsigned long p_size);
Dttm_bo_driver.h66 int (*init)(struct ttm_mem_type_manager *man, unsigned long p_size);