Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/
H A Dunistd.h37 if (__bos0 (__buf) != (size_t) -1) in read()
40 return __read_chk (__fd, __buf, __nbytes, __bos0 (__buf)); in read()
42 if (__nbytes > __bos0 (__buf)) in read()
43 return __read_chk_warn (__fd, __buf, __nbytes, __bos0 (__buf)); in read()
75 if (__bos0 (__buf) != (size_t) -1) in pread()
78 return __pread_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf)); in pread()
80 if ( __nbytes > __bos0 (__buf)) in pread()
82 __bos0 (__buf)); in pread()
90 if (__bos0 (__buf) != (size_t) -1) in pread()
93 return __pread64_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf)); in pread()
[all …]
H A Dwchar2.h43 if (__bos0 (__s1) != (size_t) -1) in __NTH()
47 __bos0 (__s1) / sizeof (wchar_t)); in __NTH()
49 if (__n > __bos0 (__s1) / sizeof (wchar_t)) in __NTH()
51 __bos0 (__s1) / sizeof (wchar_t)); in __NTH()
73 if (__bos0 (__s1) != (size_t) -1) in __NTH()
77 __bos0 (__s1) / sizeof (wchar_t)); in __NTH()
79 if (__n > __bos0 (__s1) / sizeof (wchar_t)) in __NTH()
81 __bos0 (__s1) / sizeof (wchar_t)); in __NTH()
106 if (__bos0 (__s1) != (size_t) -1) in __NTH()
110 __bos0 (__s1) / sizeof (wchar_t)); in __NTH()
[all …]
H A Dsocket2.h37 if (__bos0 (__buf) != (size_t) -1) in recv()
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags); in recv()
42 if (__n > __bos0 (__buf)) in recv()
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags); in recv()
68 if (__bos0 (__buf) != (size_t) -1) in recvfrom()
71 return __recvfrom_chk (__fd, __buf, __n, __bos0 (__buf), __flags, in recvfrom()
73 if (__n > __bos0 (__buf)) in recvfrom()
74 return __recvfrom_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags, in recvfrom()
H A Dstdio2.h277 if (__bos0 (__ptr) != (size_t) -1) in fread()
282 return __fread_chk (__ptr, __bos0 (__ptr), __size, __n, __stream); in fread()
284 if (__size * __n > __bos0 (__ptr)) in fread()
285 return __fread_chk_warn (__ptr, __bos0 (__ptr), __size, __n, __stream); in fread()
338 if (__bos0 (__ptr) != (size_t) -1) in fread_unlocked()
343 return __fread_unlocked_chk (__ptr, __bos0 (__ptr), __size, __n, in fread_unlocked()
346 if (__size * __n > __bos0 (__ptr)) in fread_unlocked()
347 return __fread_unlocked_chk_warn (__ptr, __bos0 (__ptr), __size, __n, in fread_unlocked()
H A Dstring3.h52 return __builtin___memcpy_chk (__dest, __src, __len, __bos0 (__dest)); in __NTH()
59 return __builtin___memmove_chk (__dest, __src, __len, __bos0 (__dest)); in __NTH()
67 return __builtin___mempcpy_chk (__dest, __src, __len, __bos0 (__dest)); in __NTH()
85 return __builtin___memset_chk (__dest, __ch, __len, __bos0 (__dest)); in __NTH()
93 (void) __builtin___memmove_chk (__dest, __src, __len, __bos0 (__dest)); in __NTH()
99 (void) __builtin___memset_chk (__dest, '\0', __len, __bos0 (__dest)); in __NTH()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/sys/
H A Dcdefs.h133 #define __bos0(ptr) __builtin_object_size (ptr, 0) macro