Lines Matching refs:__bos
43 return __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, ap); in vsnprintf()
48 return __builtin___vsprintf_chk(dest, 0, __bos(dest), format, ap); in vsprintf()
60 __enable_if(__bos(dest) != __BIONIC_FORTIFY_UNKNOWN_SIZE &&
61 __bos(dest) < __builtin_strlen(format),
70 int result = __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, va); in snprintf()
78 __enable_if(__bos(dest) != __BIONIC_FORTIFY_UNKNOWN_SIZE &&
79 __bos(dest) < __builtin_strlen(format),
87 int result = __builtin___vsprintf_chk(dest, 0, __bos(dest), format, va); in sprintf()
99 __clang_error_if(__bos(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && size * count > __bos(buf), in fread()
114 __clang_error_if(__bos(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && size * count > __bos(buf), in fwrite()
131 __clang_error_if(size > __bos(dest), in fgets()
133 size_t bos = __bos(dest); in fgets()