| /netbsd-src/external/gpl3/gcc.old/dist/libssp/ssp/ |
| H A D | unistd.h | 47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf, 51 read (int __fd, void *__buf, size_t __nbytes) in read() argument 53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf)) in read() 55 return __read_alias (__fd, __buf, __nbytes); in read() 60 char *__restrict__ __buf, size_t __len), 64 readlink (const char *__restrict__ __path, char *__restrict__ __buf, in readlink() argument 67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf)) in readlink() 69 return __readlink_alias (__path, __buf, __len); in readlink() 73 (char *__buf, size_t __size), getcwd); 76 getcwd (char *__buf, size_t __size) in getcwd() argument [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libssp/ssp/ |
| H A D | unistd.h | 47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf, 51 read (int __fd, void *__buf, size_t __nbytes) in read() argument 53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf)) in read() 55 return __read_alias (__fd, __buf, __nbytes); in read() 60 char *__restrict__ __buf, size_t __len), 64 readlink (const char *__restrict__ __path, char *__restrict__ __buf, in readlink() argument 67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf)) in readlink() 69 return __readlink_alias (__path, __buf, __len); in readlink() 73 (char *__buf, size_t __size), getcwd); 76 getcwd (char *__buf, size_t __size) in getcwd() argument [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| H A D | snprintf_lite.cc | 36 __throw_insufficient_space(const char *__buf, const char *__bufend) 40 __throw_insufficient_space(const char *__buf, const char *__bufend) in __throw_insufficient_space() argument 43 const size_t __len = __bufend - __buf + 1; in __throw_insufficient_space() 53 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space() 63 int __concat_size_t(char *__buf, size_t __bufsize, size_t __val) in __concat_size_t() argument 79 __builtin_memcpy(__buf, __cs + __ilen - __len, __len); in __concat_size_t() 90 int __snprintf_lite(char *__buf, size_t __bufsize, const char *__fmt, in __snprintf_lite() argument 93 char *__d = __buf; in __snprintf_lite() 116 __throw_insufficient_space(__buf, __d); in __snprintf_lite() 131 __throw_insufficient_space(__buf, __d); in __snprintf_lite() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| H A D | snprintf_lite.cc | 45 __throw_insufficient_space(const char *__buf, const char *__bufend) 49 __throw_insufficient_space(const char *__buf, const char *__bufend) in __throw_insufficient_space() argument 52 const size_t __len = __bufend - __buf + 1; in __throw_insufficient_space() 62 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space() 72 int __concat_size_t(char *__buf, size_t __bufsize, size_t __val) in __concat_size_t() argument 88 __builtin_memcpy(__buf, __cs + __ilen - __len, __len); in __concat_size_t() 99 int __snprintf_lite(char *__buf, size_t __bufsize, const char *__fmt, in __snprintf_lite() argument 102 char *__d = __buf; in __snprintf_lite() 125 __throw_insufficient_space(__buf, __d); in __snprintf_lite() 140 __throw_insufficient_space(__buf, __d); in __snprintf_lite() [all …]
|
| /netbsd-src/include/ssp/ |
| H A D | unistd.h | 39 __ssp_redirect0(ssize_t, read, (int __fd, void *__buf, size_t __len), \ 40 (__fd, __buf, __len)); 43 char *__restrict __buf, size_t __len), (__path, __buf, __len)); 45 __ssp_redirect_raw(char *, getcwd, getcwd, (char *__buf, size_t __len), 46 (__buf, __len), __buf != 0, __ssp_bos);
|
| /netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/ |
| H A D | crypto_scrypt.h | 74 uint32_t __p, uint8_t *__buf, size_t __buflen); 79 uint32_t __p, uint8_t *__buf, size_t __buflen); 84 uint32_t __p, uint8_t *__buf, size_t __buflen); 88 uint8_t *__buf, size_t __buflen); 92 uint8_t *__buf, size_t __buflen);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | fstream.tcc | 386 char* __buf = new char[__blen]; in underflow() local 388 __builtin_memcpy(__buf, _M_ext_next, __remainder); in underflow() 391 _M_ext_buf = __buf; in underflow() 622 char* __buf = static_cast<char*>(__builtin_alloca(__blen)); in _M_convert_to_external() local 628 __iend, __buf, __buf + __blen, __bend); in _M_convert_to_external() 631 __blen = __bend - __buf; in _M_convert_to_external() 635 __buf = reinterpret_cast<char*>(__ibuf); in _M_convert_to_external() 642 __elen = _M_file.xsputn(__buf, __blen); in _M_convert_to_external() 651 __iresume + __rlen, __iend, __buf, in _M_convert_to_external() 652 __buf + __blen, __bend); in _M_convert_to_external() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | fstream.tcc | 386 char* __buf = new char[__blen]; in underflow() local 388 __builtin_memcpy(__buf, _M_ext_next, __remainder); in underflow() 391 _M_ext_buf = __buf; in underflow() 622 char* __buf = static_cast<char*>(__builtin_alloca(__blen)); in _M_convert_to_external() local 628 __iend, __buf, __buf + __blen, __bend); in _M_convert_to_external() 631 __blen = __bend - __buf; in _M_convert_to_external() 635 __buf = reinterpret_cast<char*>(__ibuf); in _M_convert_to_external() 642 __elen = _M_file.xsputn(__buf, __blen); in _M_convert_to_external() 651 __iresume + __rlen, __iend, __buf, in _M_convert_to_external() 652 __buf + __blen, __bend); in _M_convert_to_external() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| H A D | vstring.tcc | 574 _CharT __buf[128]; in operator >>() 588 if (__len == sizeof(__buf) / sizeof(_CharT)) in operator >>() 590 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in operator >>() 593 __buf[__len++] = _Traits::to_char_type(__c); in operator >>() 597 __str.append(__buf, __len); in operator >>() 648 _CharT __buf[128]; in getline() 658 if (__len == sizeof(__buf) / sizeof(_CharT)) in getline() 660 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in getline() 663 __buf[__len++] = _Traits::to_char_type(__c); in getline() 667 __str.append(__buf, __len); in getline()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| H A D | vstring.tcc | 574 _CharT __buf[128]; in operator >>() 588 if (__len == sizeof(__buf) / sizeof(_CharT)) in operator >>() 590 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in operator >>() 593 __buf[__len++] = _Traits::to_char_type(__c); in operator >>() 597 __str.append(__buf, __len); in operator >>() 648 _CharT __buf[128]; in getline() 658 if (__len == sizeof(__buf) / sizeof(_CharT)) in getline() 660 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in getline() 663 __buf[__len++] = _Traits::to_char_type(__c); in getline() 667 __str.append(__buf, __len); in getline()
|
| /netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
| H A D | time.in.h | 300 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 305 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 337 (char *restrict __buf, size_t __bufsize, 341 (char *restrict __buf, size_t __bufsize, 345 (char *restrict __buf, size_t __bufsize,
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/bfin/ |
| H A D | bfin.h | 1021 do { char __buf[256]; \ 1023 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1024 assemble_name (FILE, __buf); \ 1034 char __buf[256]; \ 1036 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1037 assemble_name (FILE, __buf); \ 1039 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", REL); \ 1040 assemble_name (FILE, __buf); \
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/bfin/ |
| H A D | bfin.h | 1019 do { char __buf[256]; \ 1021 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1022 assemble_name (FILE, __buf); \ 1032 char __buf[256]; \ 1034 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1035 assemble_name (FILE, __buf); \ 1037 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", REL); \ 1038 assemble_name (FILE, __buf); \
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/ |
| H A D | codecvt_members.cc | 77 extern_type __buf[MB_LEN_MAX]; in do_out() local 80 const size_t __conv = wcrtomb(__buf, *__from, &__tmp_state); in do_out() 92 memcpy(__to, __buf, __conv); in do_out()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/ |
| H A D | codecvt_members.cc | 77 extern_type __buf[MB_LEN_MAX]; in do_out() local 80 const size_t __conv = wcrtomb(__buf, *__from, &__tmp_state); in do_out() 92 memcpy(__to, __buf, __conv); in do_out()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/ |
| H A D | codecvt_members.cc | 96 extern_type __buf[MB_LEN_MAX]; in do_out() local 98 const size_t __conv2 = wcrtomb_l(__buf, *__from_next, &__tmp_state, in do_out() 104 memcpy(__to_next, __buf, __conv2); in do_out()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/ |
| H A D | codecvt_members.cc | 96 extern_type __buf[MB_LEN_MAX]; in do_out() local 98 const size_t __conv2 = wcrtomb_l(__buf, *__from_next, &__tmp_state, in do_out() 104 memcpy(__to_next, __buf, __conv2); in do_out()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | internet | 682 char __buf[INET_ADDRSTRLEN]; 683 auto __len = __str.copy(__buf, sizeof(__buf)); 684 if (__len == sizeof(__buf)) 690 __buf[__len] = '\0'; 691 return make_address_v4(__buf, __ec); 753 char __buf[64]; 754 char* __out = __buf; 756 while (__str < __p && __out < std::end(__buf)) 768 if (__out == std::end(__buf)) 776 return __make_address_v6(__buf, __p + 1, __ec); [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/ |
| H A D | codecvt_members.cc | 95 extern_type __buf[MB_LEN_MAX]; in do_out() local 97 const size_t __conv2 = wcrtomb(__buf, *__from_next, &__tmp_state); in do_out() 102 memcpy(__to_next, __buf, __conv2); in do_out()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/ |
| H A D | codecvt_members.cc | 95 extern_type __buf[MB_LEN_MAX]; in do_out() local 97 const size_t __conv2 = wcrtomb(__buf, *__from_next, &__tmp_state); in do_out() 102 memcpy(__to_next, __buf, __conv2); in do_out()
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/mipsn64el/gnulib/import/ |
| H A D | time.h | 811 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 816 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 848 (char *restrict __buf, size_t __bufsize, 852 (char *restrict __buf, size_t __bufsize, 856 (char *restrict __buf, size_t __bufsize,
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/ia64/gnulib/import/ |
| H A D | time.h | 811 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 816 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 848 (char *restrict __buf, size_t __bufsize, 852 (char *restrict __buf, size_t __bufsize, 856 (char *restrict __buf, size_t __bufsize,
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/m68000/gnulib/import/ |
| H A D | time.h | 811 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 816 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 848 (char *restrict __buf, size_t __bufsize, 852 (char *restrict __buf, size_t __bufsize, 856 (char *restrict __buf, size_t __bufsize,
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/aarch64/gnulib/import/ |
| H A D | time.h | 811 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 816 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 848 (char *restrict __buf, size_t __bufsize, 852 (char *restrict __buf, size_t __bufsize, 856 (char *restrict __buf, size_t __bufsize,
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/x86_64/gnulib/import/ |
| H A D | time.h | 811 _GL_FUNCDECL_SYS (strptime, char *, (char const *restrict __buf, 816 _GL_CXXALIAS_SYS (strptime, char *, (char const *restrict __buf, 848 (char *restrict __buf, size_t __bufsize, 852 (char *restrict __buf, size_t __bufsize, 856 (char *restrict __buf, size_t __bufsize,
|