Home
last modified time | relevance | path

Searched refs:s_int (Results 1 – 8 of 8) sorted by relevance

/linux-4.4.14/arch/tile/lib/
Dstrnlen_64.c23 const uintptr_t s_int = (uintptr_t) s; in strnlen() local
24 const uint64_t *p = (const uint64_t *)(s_int & -8); in strnlen()
25 size_t bytes_read = sizeof(*p) - (s_int & (sizeof(*p) - 1)); in strnlen()
34 v = *p | MASK(s_int); in strnlen()
Dstrnlen_32.c22 const uintptr_t s_int = (uintptr_t) s; in strnlen() local
23 const uint32_t *p = (const uint32_t *)(s_int & -4); in strnlen()
24 size_t bytes_read = sizeof(*p) - (s_int & (sizeof(*p) - 1)); in strnlen()
33 v = *p | ((1 << ((s_int << 3) & 31)) - 1); in strnlen()
Dmemchr_64.c25 uintptr_t s_int; in memchr() local
35 s_int = (uintptr_t) s; in memchr()
36 p = (const uint64_t *)(s_int & -8); in memchr()
44 before_mask = MASK(s_int); in memchr()
Dmemchr_32.c24 uintptr_t s_int; in memchr() local
34 s_int = (uintptr_t) s; in memchr()
35 p = (const uint32_t *)(s_int & -4); in memchr()
46 before_mask = (1 << (s_int << 3)) - 1; in memchr()
Dstrlen_32.c22 const uintptr_t s_int = (uintptr_t) s; in strlen() local
23 const uint32_t *p = (const uint32_t *)(s_int & -4); in strlen()
28 uint32_t v = *p | ((1 << (s_int << 3)) - 1); in strlen()
Dstrlen_64.c23 const uintptr_t s_int = (uintptr_t) s; in strlen() local
24 const uint64_t *p = (const uint64_t *)(s_int & -8); in strlen()
27 uint64_t v = *p | MASK(s_int); in strlen()
Dstrchr_32.c24 const uintptr_t s_int = (uintptr_t) s; in strchr() local
25 const uint32_t *p = (const uint32_t *)(s_int & -4); in strchr()
38 const uint32_t before_mask = (1 << (s_int << 3)) - 1; in strchr()
Dstrchr_64.c25 const uintptr_t s_int = (uintptr_t) s; in strchr() local
26 const uint64_t *p = (const uint64_t *)(s_int & -8); in strchr()
36 const uint64_t before_mask = MASK(s_int); in strchr()