Home
last modified time | relevance | path

Searched refs:bos (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/include/
Dstring.h150 size_t bos = __bos(s); in memchr() local
153 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in memchr()
157 if (__builtin_constant_p(n) && (n > bos)) { in memchr()
161 if (__builtin_constant_p(n) && (n <= bos)) { in memchr()
166 return __memchr_chk(s, c, n, bos); in memchr()
171 size_t bos = __bos(s); in memrchr() local
174 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in memrchr()
178 if (__builtin_constant_p(n) && (n > bos)) { in memrchr()
182 if (__builtin_constant_p(n) && (n <= bos)) { in memrchr()
187 return __memrchr_chk(s, c, n, bos); in memrchr()
[all …]
Dunistd.h299 size_t bos = __bos(buf); in getcwd() local
309 bos = __BIONIC_FORTIFY_UNKNOWN_SIZE; in getcwd()
312 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in getcwd()
316 if (__builtin_constant_p(size) && (size > bos)) { in getcwd()
320 if (__builtin_constant_p(size) && (size <= bos)) { in getcwd()
325 return __getcwd_chk(buf, size, bos); in getcwd()
336 size_t bos = __bos0(buf); in pread() local
343 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in pread()
347 if (__builtin_constant_p(count) && (count > bos)) { in pread()
351 if (__builtin_constant_p(count) && (count <= bos)) { in pread()
[all …]
Dstdio.h349 size_t bos = __bos0(buf); in fread() local
352 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in fread()
362 if (total > bos) { in fread()
370 return __fread_chk(buf, size, count, stream, bos); in fread()
375 size_t bos = __bos0(buf); in fwrite() local
378 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in fwrite()
388 if (total > bos) { in fwrite()
396 return __fwrite_chk(buf, size, count, stream, bos); in fwrite()
403 size_t bos = __bos(dest); in fgets() local
412 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in fgets()
[all …]
Dstdlib.h187 size_t bos = __bos(resolved); in realpath() local
190 if (bos != __BIONIC_FORTIFY_UNKNOWN_SIZE && bos < 4096) { in realpath()
/bionic/libc/include/sys/
Dsocket.h302 size_t bos = __bos0(buf); in recvfrom() local
305 if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in recvfrom()
309 if (__builtin_constant_p(len) && (len <= bos)) { in recvfrom()
313 if (__builtin_constant_p(len) && (len > bos)) { in recvfrom()
318 return __recvfrom_chk(fd, buf, len, bos, flags, src_addr, addr_len); in recvfrom()
/bionic/libc/kernel/uapi/drm/
Dmsm_drm.h120 __u64 __user bos; member