Searched refs:__bos (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/include/
H A Dpoll.h57 return __poll_chk(fds, fd_count, timeout, __bos(fds));
59 if (__bos(fds) != __BIONIC_FORTIFY_UNKNOWN_SIZE) {
61 return __poll_chk(fds, fd_count, timeout, __bos(fds));
62 } else if (__bos(fds) / sizeof(*fds) < fd_count) {
73 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds));
75 if (__bos(fds) != __BIONIC_FORTIFY_UNKNOWN_SIZE) {
77 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds));
78 } else if (__bos(fds) / sizeof(*fds) < fd_count) {
H A Dstring.h150 size_t bos = __bos(s);
171 size_t bos = __bos(s);
202 return __builtin___stpcpy_chk(dest, src, __bos(dest));
207 return __builtin___strcpy_chk(dest, src, __bos(dest));
212 size_t bos_dest = __bos(dest);
213 size_t bos_src = __bos(src);
233 size_t bos_dest = __bos(dest);
234 size_t bos_src = __bos(src);
254 return __builtin___strcat_chk(dest, src, __bos(dest));
259 return __builtin___strncat_chk(dest, src, n, __bos(des
[all...]
H A Dstdio.h307 return __builtin___vsnprintf_chk(dest, size, 0, __bos(dest), format, ap);
314 return __builtin___vsprintf_chk(dest, 0, __bos(dest), format, ap);
319 #define __wrap_snprintf(dest, size, ...) __builtin___snprintf_chk(dest, size, 0, __bos(dest), __VA_ARGS__)
328 __bos(dest), format, __builtin_va_arg_pack());
334 #define __wrap_sprintf(dest, ...) __builtin___sprintf_chk(dest, 0, __bos(dest), __VA_ARGS__)
343 __bos(dest), format, __builtin_va_arg_pack());
403 size_t bos = __bos(dest);
H A Dstdlib.h187 size_t bos = __bos(resolved);
H A Dunistd.h299 size_t bos = __bos(buf);
494 size_t bos = __bos(buf);
519 size_t bos = __bos(buf);
/bionic/libc/include/sys/
H A Dselect.h65 #define FD_CLR(fd, set) __FD_CLR_chk(fd, set, __bos(set))
66 #define FD_SET(fd, set) __FD_SET_chk(fd, set, __bos(set))
67 #define FD_ISSET(fd, set) __FD_ISSET_chk(fd, set, __bos(set))
H A Dcdefs.h421 # define __bos(s) __builtin_object_size((s), 1) macro
423 # define __bos(s) __builtin_object_size((s), 0) macro

Completed in 78 milliseconds