Home
last modified time | relevance | path

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

/include/linux/
Dstring.h301 size_t p_size = __builtin_object_size(p, 0); in strncpy() local
302 if (__builtin_constant_p(size) && p_size < size) in strncpy()
304 if (p_size < size) in strncpy()
311 size_t p_size = __builtin_object_size(p, 0); in strcat() local
312 if (p_size == (size_t)-1) in strcat()
314 if (strlcat(p, q, p_size) >= p_size) in strcat()
322 size_t p_size = __builtin_object_size(p, 0); in strlen() local
325 if (p_size == (size_t)-1 || in strlen()
326 (__builtin_constant_p(p[p_size - 1]) && p[p_size - 1] == '\0')) in strlen()
328 ret = strnlen(p, p_size); in strlen()
[all …]
Dgenhd.h560 __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);