Searched refs:__s (Results 1 - 25 of 72) sorted by relevance

123

/freebsd-current/contrib/llvm-project/libcxx/include/__format/
H A Dformat_error.h29 _LIBCPP_HIDE_FROM_ABI explicit format_error(const string& __s) : runtime_error(__s) {} argument
30 _LIBCPP_HIDE_FROM_ABI explicit format_error(const char* __s) : runtime_error(__s) {} argument
38 _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_format_error(const char* __s) { argument
40 throw format_error(__s);
42 _LIBCPP_VERBOSE_ABORT("format_error was thrown in -fno-exceptions mode with message \"%s\"", __s);
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dstring.h73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c) { argument
74 return __builtin_strchr(__s, __c);
76 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { argument
77 return __builtin_strchr(__s, __c);
87 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __c) { argument
88 return __builtin_strrchr(__s, __c);
90 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { argument
91 return __builtin_strrchr(__s, __c);
94 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c, size_t __n) { argument
95 return __builtin_memchr(__s, __
97 memchr(void* __s, int __c, size_t __n) argument
[all...]
H A Dwchar.h147 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) { argument
148 return (wchar_t*)wcschr(__s, __c);
150 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) { argument
151 return __libcpp_wcschr(__s, __c);
153 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) { argument
154 return __libcpp_wcschr(__s, __c);
168 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) { argument
169 return (wchar_t*)wcsrchr(__s, __c);
171 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) { argument
172 return __libcpp_wcsrchr(__s, __
174 wcsrchr(wchar_t* __s, wchar_t __c) argument
189 __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
193 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
196 wmemchr(wchar_t* __s, wchar_t __c, size_t __n) argument
[all...]
/freebsd-current/sys/i386/include/
H A Dpcpu.h127 struct __s { \
129 } __s; \
134 : "=r" (__s) \
135 : "m" (*(struct __s *)(__pcpu_offset(name)))); \
136 *(struct __s *)(void *)&__res = __s; \
149 struct __s { \
151 } __s; \
156 __s = *(struct __s *)(voi
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__chrono/
H A Dconvert_to_timespec.h31 seconds __s = duration_cast<seconds>(__ns);
36 if (__s.count() < __ts_sec_max) {
37 __ts.tv_sec = static_cast<__ts_sec>(__s.count());
38 __ts.tv_nsec = static_cast<decltype(__ts.tv_nsec)>((__ns - __s).count());
/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Dmove_sentinel.h34 _LIBCPP_HIDE_FROM_ABI constexpr explicit move_sentinel(_Sent __s) : __last_(std::move(__s)) {} argument
38 _LIBCPP_HIDE_FROM_ABI constexpr move_sentinel(const move_sentinel<_S2>& __s) : __last_(__s.base()) {} argument
42 _LIBCPP_HIDE_FROM_ABI constexpr move_sentinel& operator=(const move_sentinel<_S2>& __s) { argument
43 __last_ = __s.base();
H A Dostream_iterator.h55 _LIBCPP_HIDE_FROM_ABI ostream_iterator(ostream_type& __s) _NOEXCEPT
56 : __out_stream_(std::addressof(__s)),
58 _LIBCPP_HIDE_FROM_ABI ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT
59 : __out_stream_(std::addressof(__s)),
H A Dostreambuf_iterator.h53 _LIBCPP_HIDE_FROM_ABI ostreambuf_iterator(ostream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {}
54 _LIBCPP_HIDE_FROM_ABI ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT : __sbuf_(__s) {}
67 ostreambuf_iterator<_Ch, _Tr> __s, const _Ch* __ob, const _Ch* __op, const _Ch* __oe, ios_base& __iob, _Ch __fl);
H A Distreambuf_iterator.h53 _LIBCPP_HIDE_FROM_ABI explicit __proxy(char_type __c, streambuf_type* __s) : __keep_(__c), __sbuf_(__s) {} argument
71 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(istream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {}
72 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(streambuf_type* __s) _NOEXCEPT : __sbuf_(__s) {}
/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Ddestruct_n.h39 _LIBCPP_HIDE_FROM_ABI void __set(size_t __s, false_type) _NOEXCEPT { __size_ = __s; }
43 _LIBCPP_HIDE_FROM_ABI explicit __destruct_n(size_t __s) _NOEXCEPT : __size_(__s) {}
51 _LIBCPP_HIDE_FROM_ABI void __set(size_t __s, _Tp*) _NOEXCEPT {
52 __set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());
H A Dbuiltin_new_allocator.h45 _LIBCPP_HIDE_FROM_ABI static __holder_t __allocate_bytes(size_t __s, size_t __align) { argument
46 return __holder_t(std::__libcpp_allocate(__s, __align), __builtin_new_deleter(__s, __align));
49 _LIBCPP_HIDE_FROM_ABI static void __deallocate_bytes(void* __p, size_t __s, size_t __align) _NOEXCEPT {
50 std::__libcpp_deallocate(__p, __s, __align);
H A Dallocator_destructor.h34 _LIBCPP_HIDE_FROM_ABI __allocator_destructor(_Alloc& __a, size_type __s) _NOEXCEPT : __alloc_(__a), __s_(__s) {}
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dregex.cpp356 void __match_any_but_newline<char>::__exec(__state& __s) const {
357 if (__s.__current_ != __s.__last_) {
358 switch (*__s.__current_) {
361 __s.__do_ = __state::__reject;
362 __s.__node_ = nullptr;
365 __s.__do_ = __state::__accept_and_consume;
366 ++__s.__current_;
367 __s.__node_ = this->first();
371 __s
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__string/
H A Dchar_traits.h111 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR_SINCE_CXX17 size_t length(const char_type* __s) { argument
113 for (; !eq(*__s, char_type(0)); ++__s)
118 find(const char_type* __s, size_t __n, const char_type& __a) { argument
120 if (eq(*__s, __a))
121 return __s;
122 ++__s;
152 assign(char_type* __s, size_t __n, char_type __a) { argument
153 char_type* __r = __s;
154 for (; __n; --__n, ++__s)
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/
H A Dbsd_locale_fallbacks.h53 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_wcrtomb_l(char* __s, wchar_t __wc, mbstate_t* __ps, locale_t __l) { argument
55 return wcrtomb(__s, __wc, __ps);
65 __libcpp_mbrtowc_l(wchar_t* __pwc, const char* __s, size_t __n, mbstate_t* __ps, locale_t __l) { argument
67 return mbrtowc(__pwc, __s, __n, __ps);
75 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_mbrlen_l(const char* __s, size_t __n, mbstate_t* __ps, locale_t __l) { argument
77 return mbrlen(__s, __n, __ps);
95 char* __s, size_t __n, locale_t __l, const char* __format, ...) {
99 int __res = vsnprintf(__s, __n, __format, __va);
105 char** __s, locale_t __l, const char* __format, ...) {
109 int __res = vasprintf(__s, __forma
94 __libcpp_snprintf_l( char* __s, size_t __n, locale_t __l, const char* __format, ...) argument
104 __libcpp_asprintf_l( char** __s, locale_t __l, const char* __format, ...) argument
114 __libcpp_sscanf_l( const char* __s, locale_t __l, const char* __format, ...) argument
[all...]
/freebsd-current/sys/amd64/include/
H A Dpcpu.h201 struct __s { \
203 } __s; \
208 : "=r" (__s) \
209 : "m" (*(struct __s *)(__pcpu_offset(name)))); \
210 *(struct __s *)(void *)&__res = __s; \
223 struct __s { \
225 } __s; \
230 __s = *(struct __s *)(voi
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__functional/
H A Dhash.h90 const char* __s = static_cast<const char*>(__key); local
93 return __hash_len_0_to_16(__s, __len);
95 return __hash_len_17_to_32(__s, __len);
98 return __hash_len_33_to_64(__s, __len);
103 _Size __x = std::__loadword<_Size>(__s + __len - 40);
104 _Size __y = std::__loadword<_Size>(__s + __len - 16) + std::__loadword<_Size>(__s + __len - 56);
106 __hash_len_16(std::__loadword<_Size>(__s + __len - 48) + __len, std::__loadword<_Size>(__s + __len - 24));
107 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s
157 __hash_len_0_to_16(const char* __s, _Size __len) argument
184 __hash_len_17_to_32(const char* __s, _Size __len) argument
208 __weak_hash_len_32_with_seeds(const char* __s, _Size __a, _Size __b) argument
220 __hash_len_33_to_64(const char* __s, size_t __len) argument
280 } __s; member in union:__scalar_hash::__anon1206
296 } __s; member in union:__scalar_hash::__anon1208
313 } __s; member in union:__scalar_hash::__anon1210
468 } __s; member in union:hash::__anon1213
[all...]
/freebsd-current/sys/net/altq/
H A Daltq_rmclass_debug.h86 int __s = LOCK_TRACE(); \
96 UNLOCK_TRACE(__s); \
/freebsd-current/contrib/llvm-project/libcxx/include/__filesystem/
H A Dpath.h111 _LIBCPP_HIDE_FROM_ABI static _ECharT const* __range_begin(_Str const& __s) { return __s.data(); } argument
113 _LIBCPP_HIDE_FROM_ABI static _ECharT const* __range_end(_Str const& __s) { return __s.data() + __s.length(); } argument
115 _LIBCPP_HIDE_FROM_ABI static _ECharT __first_or_null(_Str const& __s) { return __s.empty() ? _ECharT{} : __s[0]; } argument
124 _LIBCPP_HIDE_FROM_ABI static _ECharT const* __range_begin(_Str const& __s) { return __s argument
126 __range_end(_Str const& __s) argument
128 __first_or_null(_Str const& __s) argument
258 __append_source(__path_string& __dest, _Source const& __s) argument
286 __append_source(__path_string& __dest, _Source const& __s) argument
324 __append_source(__path_string& __dest, _Source const& __s) argument
668 __reserve(size_t __s) argument
681 std::wstring __s; local
726 __u8_string __s = u8string(); local
903 __assign_view(__string_view const& __s) argument
[all...]
H A Doperations.h148 inline _LIBCPP_HIDE_FROM_ABI bool status_known(file_status __s) noexcept { return __s.type() != file_type::none; }
149 inline _LIBCPP_HIDE_FROM_ABI bool exists(file_status __s) noexcept {
150 return status_known(__s) && __s.type() != file_type::not_found;
155 auto __s = __status(__p, &__ec); variable
156 if (status_known(__s))
158 return exists(__s);
169 inline _LIBCPP_HIDE_FROM_ABI bool is_block_file(file_status __s) noexcept { return __s
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/experimental/__simd/
H A Dscalar.h61 static _LIBCPP_HIDE_FROM_ABI void __load(_SimdStorage& __s, const _Up* __mem) noexcept {
62 __s.__data = static_cast<_Tp>(__mem[0]);
72 static _LIBCPP_HIDE_FROM_ABI void __load(_MaskStorage& __s, const bool* __mem) noexcept { __s.__data = __mem[0]; }
/freebsd-current/contrib/bmake/mk/
H A Djava.mk59 .for __s in ${SRCS}
60 __c:= ${__classdest}${__s:.java=.class}
63 ${__c}: ${__s}
66 SRCS_${__c}=${__s}
80 .for __s in ${SRCS}
81 __c:= ${__classdest}${__s:.java=.class}
82 ${__c}: ${__s}
/freebsd-current/contrib/llvm-project/libcxx/include/__random/
H A Dsubtract_with_carry_engine.h31 template <class _UIntType, size_t __w, size_t __s, size_t __r>
50 template <class _UIntType, size_t __w, size_t __s, size_t __r>
64 static_assert(0 < __s, "subtract_with_carry_engine invalid parameters");
65 static_assert(__s < __r, "subtract_with_carry_engine invalid parameters");
75 static _LIBCPP_CONSTEXPR const size_t short_lag = __s;
132 template <class _UIntType, size_t __w, size_t __s, size_t __r>
133 _LIBCPP_CONSTEXPR const size_t subtract_with_carry_engine<_UIntType, __w, __s, __r>::word_size;
135 template <class _UIntType, size_t __w, size_t __s, size_t __r>
136 _LIBCPP_CONSTEXPR const size_t subtract_with_carry_engine<_UIntType, __w, __s, __r>::short_lag;
138 template <class _UIntType, size_t __w, size_t __s, size_
[all...]
H A Dlognormal_distribution.h44 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __m = 0, result_type __s = 1) : __m_(__m), __s_(__s) {}
62 _LIBCPP_HIDE_FROM_ABI explicit lognormal_distribution(result_type __m, result_type __s = 1) : __nd_(__m, __s) {}
64 _LIBCPP_HIDE_FROM_ABI explicit lognormal_distribution(result_type __m = 0, result_type __s = 1) : __nd_(__m, __s) {}
/freebsd-current/contrib/bmake/unit-tests/
H A Dsh-flags.exp6 opt-______-tgt-___-cmd-__s
34 opt-______-tgt-__s-cmd-___
37 opt-______-tgt-__s-cmd-__s
40 opt-______-tgt-__s-cmd-_i_
44 opt-______-tgt-__s-cmd-_is
48 opt-______-tgt-__s-cmd-a__
51 opt-______-tgt-__s-cmd-a_s
54 opt-______-tgt-__s-cmd-ai_
58 opt-______-tgt-__s
[all...]

Completed in 240 milliseconds

123