| /openbsd/src/gnu/gcc/libssp/ssp/ |
| D | unistd.h | 48 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf, 52 read (int __fd, void *__buf, size_t __nbytes) in read() argument 54 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf)) in read() 56 return __read_alias (__fd, __buf, __nbytes); in read() 61 char *__restrict__ __buf, size_t __len), 65 readlink (const char *__restrict__ __path, char *__restrict__ __buf, in readlink() argument 68 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf)) in readlink() 70 return __readlink_alias (__path, __buf, __len); in readlink() 74 (char *__buf, size_t __size), getcwd); 77 getcwd (char *__buf, size_t __size) in getcwd() argument [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/src/ |
| D | debug.cc | 282 char __buf[__bufsize]; in _M_print_field() local 293 __formatter->_M_format_word(__buf, __bufsize, "%p", in _M_print_field() 295 __formatter->_M_print_word(__buf); in _M_print_field() 328 __formatter->_M_format_word(__buf, __bufsize, "%p", in _M_print_field() 330 __formatter->_M_print_word(__buf); in _M_print_field() 351 __formatter->_M_format_word(__buf, __bufsize, "%p", in _M_print_field() 353 __formatter->_M_print_word(__buf); in _M_print_field() 395 char __buf[__bufsize]; in _M_print_description() local 402 __formatter->_M_format_word(__buf, __bufsize, "\"%s\" ", in _M_print_description() 404 __formatter->_M_print_word(__buf); in _M_print_description() [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/bits/ |
| D | fstream.tcc | 246 char* __buf = new char[__blen]; in underflow() local 248 std::memcpy(__buf, _M_ext_next, __remainder); in underflow() 251 _M_ext_buf = __buf; in underflow() 463 char* __buf = static_cast<char*>(__builtin_alloca(__blen)); in _M_convert_to_external() local 469 __iend, __buf, __buf + __blen, __bend); in _M_convert_to_external() 472 __blen = __bend - __buf; in _M_convert_to_external() 476 __buf = reinterpret_cast<char*>(__ibuf); in _M_convert_to_external() 483 __elen = _M_file.xsputn(__buf, __blen); in _M_convert_to_external() 492 __iresume + __rlen, __iend, __buf, in _M_convert_to_external() 493 __buf + __blen, __bend); in _M_convert_to_external() [all …]
|
| D | istream.tcc | 887 _CharT __buf[128]; in operator >>() local 901 if (__len == sizeof(__buf) / sizeof(_CharT)) in operator >>() 903 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in operator >>() 906 __buf[__len++] = _Traits::to_char_type(__c); in operator >>() 910 __str.append(__buf, __len); in operator >>()
|
| D | stl_algo.h | 2227 _Temporary_buffer<_ForwardIterator, _ValueType> __buf(__first, in stable_partition() 2229 if (__buf.size() > 0) in stable_partition() 2232 _DistanceType(__buf.requested_size()), in stable_partition() 2233 __buf.begin(), __buf.size()); in stable_partition() 2237 _DistanceType(__buf.requested_size())); in stable_partition() 3735 _Temporary_buffer<_BidirectionalIterator, _ValueType> __buf(__first, in inplace_merge() 3737 if (__buf.begin() == 0) in inplace_merge() 3741 __buf.begin(), _DistanceType(__buf.size())); in inplace_merge() 3791 _Temporary_buffer<_BidirectionalIterator, _ValueType> __buf(__first, in inplace_merge() 3793 if (__buf.begin() == 0) in inplace_merge() [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| D | fstream.tcc | 298 char* __buf = static_cast<char*>(__builtin_alloca(__blen)); in _M_convert_to_external() local 303 __iend, __buf, __buf + __blen, __bend); in _M_convert_to_external() 306 __blen = __bend - __buf; in _M_convert_to_external() 310 __buf = reinterpret_cast<char*>(__ibuf); in _M_convert_to_external() 321 __elen += _M_file.xsputn(__buf, __blen); in _M_convert_to_external() 331 __iend, __buf, __buf + __blen, __bend); in _M_convert_to_external() 334 __rlen = __bend - __buf; in _M_convert_to_external() 335 __elen += _M_file.xsputn(__buf, __rlen); in _M_convert_to_external()
|
| D | basic_string.tcc | 83 _CharT __buf[100]; in _S_construct() local 85 while (__beg != __end && __i < sizeof(__buf) / sizeof(_CharT)) in _S_construct() 87 __buf[__i++] = *__beg; in _S_construct() 91 traits_type::copy(__r->_M_refdata(), __buf, __i); in _S_construct() 1048 _CharT* __buf, typename _Alloc::size_type __bufsiz) in _S_string_copy() argument 1053 _Traits::copy(__buf, __str.data(), __bytes); in _S_string_copy() 1054 __buf[__bytes] = _CharT(); in _S_string_copy()
|
| D | stl_algo.h | 1867 _Temporary_buffer<_ForwardIter, _ValueType> __buf(__first, __last); in stable_partition() 1868 if (__buf.size() > 0) in stable_partition() 1870 _DistanceType(__buf.requested_size()), in stable_partition() 1871 __buf.begin(), __buf.size()); in stable_partition() 1874 _DistanceType(__buf.requested_size())); in stable_partition() 3532 _Temporary_buffer<_BidirectionalIter, _ValueType> __buf(__first, __last); in inplace_merge() 3533 if (__buf.begin() == 0) in inplace_merge() 3537 __buf.begin(), _DistanceType(__buf.size())); in inplace_merge() 3585 _Temporary_buffer<_BidirectionalIter, _ValueType> __buf(__first, __last); in inplace_merge() 3586 if (__buf.begin() == 0) in inplace_merge() [all …]
|
| D | locale_facets.tcc | 701 _CharT* __buf = __out + __size - 1; in __int_to_char() local 710 *__buf-- = __lit[(__v % 10) + __num_base::_S_digits]; in __int_to_char() 715 *__buf-- = __lit[__num_base::_S_minus]; in __int_to_char() 717 *__buf-- = __lit[__num_base::_S_plus]; in __int_to_char() 724 *__buf-- = __lit[(__v & 0x7) + __num_base::_S_digits]; in __int_to_char() 729 *__buf-- = __lit[__num_base::_S_digits]; in __int_to_char() 739 *__buf-- = __lit[(__v & 0xf) + __case_offset]; in __int_to_char() 746 *__buf-- = __lit[__num_base::_S_x + __uppercase]; in __int_to_char() 748 *__buf-- = __lit[__num_base::_S_digits]; in __int_to_char() 751 int __ret = __bufend - __buf - 1; in __int_to_char()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/src/ |
| D | fstream.cc | 160 char* __buf = static_cast<char*>(__builtin_alloca(_M_buf_size)); in _M_underflow_common() local 161 __elen = _M_file.xsgetn(__buf, _M_buf_size); in _M_underflow_common() 166 __r = __cvt.in(_M_state_cur, __buf, in _M_underflow_common() 167 __buf + __elen, __eend, _M_in_beg, in _M_underflow_common()
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/ext/ |
| D | vstring.tcc | 571 _CharT __buf[128]; in _GLIBCXX_BEGIN_NAMESPACE() local 585 if (__len == sizeof(__buf) / sizeof(_CharT)) in _GLIBCXX_BEGIN_NAMESPACE() 587 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in _GLIBCXX_BEGIN_NAMESPACE() 590 __buf[__len++] = _Traits::to_char_type(__c); in _GLIBCXX_BEGIN_NAMESPACE() 594 __str.append(__buf, __len); in _GLIBCXX_BEGIN_NAMESPACE() 641 _CharT __buf[128]; in getline() local 652 if (__len == sizeof(__buf) / sizeof(_CharT)) in getline() 654 __str.append(__buf, sizeof(__buf) / sizeof(_CharT)); in getline() 657 __buf[__len++] = _Traits::to_char_type(__c); in getline() 661 __str.append(__buf, __len); in getline()
|
| D | rc_string_base.h | 503 _CharT __buf[128]; in _S_construct() local 505 while (__beg != __end && __len < sizeof(__buf) / sizeof(_CharT)) in _S_construct() 507 __buf[__len++] = *__beg; in _S_construct() 511 _S_copy(__r->_M_refdata(), __buf, __len); in _S_construct()
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/generic/ |
| D | codecvt_members.cc | 77 extern_type __buf[MB_LEN_MAX]; in _GLIBCXX_BEGIN_NAMESPACE() local 80 const size_t __conv = wcrtomb(__buf, *__from, &__tmp_state); in _GLIBCXX_BEGIN_NAMESPACE() 92 memcpy(__to, __buf, __conv); in _GLIBCXX_BEGIN_NAMESPACE()
|
| /openbsd/src/gnu/gcc/gcc/config/bfin/ |
| D | bfin.h | 1161 do { char __buf[256]; \ 1163 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1164 assemble_name (FILE, __buf); \ 1174 char __buf[256]; \ 1176 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", VALUE); \ 1177 assemble_name (FILE, __buf); \ 1179 ASM_GENERATE_INTERNAL_LABEL (__buf, "L", REL); \ 1180 assemble_name (FILE, __buf); \
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | deque | 1612 __split_buffer<value_type, allocator_type&> __buf(__alloc()); 1613 __buf.__construct_at_end(__f, __l); 1615 return insert(__p, move_iterator<__bi>(__buf.begin()), move_iterator<__bi>(__buf.end())); 1625 __split_buffer<value_type, allocator_type&> __buf(__n, 0, __alloc()); 1626 __buf.__construct_at_end(__f, __l); 1628 return insert(__p, move_iterator<__fwd>(__buf.begin()), move_iterator<__fwd>(__buf.end())); 1806 __buf(std::max<size_type>(2 * __map_.capacity(), 1), 1813 __buf.push_back(__hold.get()); 1818 __buf.push_back(*__i); 1819 _VSTD::swap(__map_.__first_, __buf.__first_); [all …]
|
| D | locale | 931 string __buf; 932 __buf.resize(__buf.capacity()); 933 char* __a = &__buf[0]; 940 if (__a_end == __a + __buf.size()) 942 size_t __tmp = __buf.size(); 943 __buf.resize(2*__buf.size()); 944 __buf.resize(__buf.capacity()); 945 __a = &__buf[0]; 988 string __buf; 989 __buf.resize(__buf.capacity()); [all …]
|
| D | __locale | 1559 char __buf[__sz]; 1563 __buf, __buf+__sz, __bn); 1566 for (const char* __p = __buf; __p < __bn; ++__p, ++__s) 1595 char __buf[__sz]; 1599 __buf, __buf+__sz, __bn); 1602 for (const char* __p = __buf; __p < __bn; ++__p, ++__s) 1653 char16_t __buf[__sz]; 1657 __buf, __buf+__sz, __bn); 1660 for (const char16_t* __p = __buf; __p < __bn; ++__p, ++__s) 1689 char32_t __buf[__sz]; [all …]
|
| D | any | 316 __any_imp::_Buffer __buf; 386 _Tp * __ret = static_cast<_Tp*>(static_cast<void*>(&__dest.__s_.__buf)); 398 _Tp * __p = static_cast<_Tp *>(static_cast<void*>(&__this.__s_.__buf)); 406 static_cast<void const *>(&__this.__s_.__buf))); 412 *static_cast<_Tp*>(static_cast<void*>(&__this.__s_.__buf)))); 422 return static_cast<void*>(&__this.__s_.__buf);
|
| D | __split_buffer | 254 __split_buffer __buf(__new_cap, 0, __a); 255 for (pointer __p = __begin_; __p != __end_; ++__p, (void) ++__buf.__end_) 256 __alloc_traits::construct(__buf.__alloc(), 257 _VSTD::__to_address(__buf.__end_), _VSTD::move(*__p)); 258 swap(__buf);
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
| D | 20010328-1.c | 56 extern int __statfs (__const char *__file, struct statfs *__buf); 57 extern int __statfs64 (__const char *__file, struct statfs64 *__buf);
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/locale/gnu/ |
| D | codecvt_members.cc | 96 extern_type __buf[MB_LEN_MAX]; in _GLIBCXX_BEGIN_NAMESPACE() local 98 const size_t __conv2 = wcrtomb(__buf, *__from_next, &__tmp_state); in _GLIBCXX_BEGIN_NAMESPACE() 103 memcpy(__to_next, __buf, __conv2); in _GLIBCXX_BEGIN_NAMESPACE()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/noncompile/ |
| D | 971104-1.c | 11 struct seminfo *__buf; member
|
| /openbsd/src/gnu/gcc/libstdc++-v3/config/io/ |
| D | basic_file_stdio.cc | 220 char* __buf = NULL; in sys_open() local 223 setvbuf(_M_cfile, __buf, _IONBF, 0); in sys_open()
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/libio/ |
| D | libio.h | 358 typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes); 366 typedef __ssize_t __io_write_fn (void *__cookie, __const char *__buf,
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/std/ |
| D | std_bitset.h | 1201 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 1206 typename _Traits::int_type __c1 = __buf->sbumpc(); 1219 else if (_Traits::eq_int_type(__buf->sputbackc(__c2), __eof))
|