Searched refs:bos_dest (Results 1 – 1 of 1) sorted by relevance
/development/ndk/platforms/android-L/include/ |
D | string.h | 134 size_t bos_dest = __bos(dest); in stpncpy() local 136 if (__builtin_constant_p(n) && (n > bos_dest)) { in stpncpy() 141 return __builtin___stpncpy_chk(dest, src, n, bos_dest); in stpncpy() 145 return __builtin___stpncpy_chk(dest, src, n, bos_dest); in stpncpy() 150 return __builtin___stpncpy_chk(dest, src, n, bos_dest); in stpncpy() 153 return __stpncpy_chk2(dest, src, n, bos_dest, bos_src); in stpncpy() 161 size_t bos_dest = __bos(dest); in strncpy() local 163 if (__builtin_constant_p(n) && (n > bos_dest)) { in strncpy() 168 return __builtin___strncpy_chk(dest, src, n, bos_dest); in strncpy() 172 return __builtin___strncpy_chk(dest, src, n, bos_dest); in strncpy() [all …]
|