Home
last modified time | relevance | path

Searched refs:__s2 (Results 1 – 24 of 24) sorted by relevance

/external/libcxx/test/support/
Dconstexpr_char_traits.hpp37 …CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
40 …static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t _…
41 …static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t _…
63 constexpr_char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n) in compare() argument
65 for (; __n; --__n, ++__s1, ++__s2) in compare()
67 if (lt(*__s1, *__s2)) in compare()
69 if (lt(*__s2, *__s1)) in compare()
100 constexpr_char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) in move() argument
103 if (__s1 < __s2) in move()
105 for (; __n; --__n, ++__s1, ++__s2) in move()
[all …]
/external/llvm-project/libcxx/test/support/
Dconstexpr_char_traits.h36 …CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
39 …static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t _…
40 …static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t _…
62 constexpr_char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n) in compare() argument
64 for (; __n; --__n, ++__s1, ++__s2) in compare()
66 if (lt(*__s1, *__s2)) in compare()
68 if (lt(*__s2, *__s1)) in compare()
99 constexpr_char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) in move() argument
102 if (__s1 < __s2) in move()
104 for (; __n; --__n, ++__s1, ++__s2) in move()
[all …]
/external/libcxx/include/
Dstring.h81 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);} in __libcpp_strpbrk() argument
83 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument
85 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument
102 char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);} in __libcpp_strstr() argument
104 const char* strstr(const char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument
106 char* strstr( char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument
D__string92 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
97 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
99 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
117 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
119 for (; __n; --__n, ++__s1, ++__s2)
121 if (lt(*__s1, *__s2))
123 if (lt(*__s2, *__s1))
156 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n)
159 if (__s1 < __s2)
161 for (; __n; --__n, ++__s1, ++__s2)
[all …]
Dwchar.h144 …* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2)… in __libcpp_wcspbrk() argument
146 …st wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2)… in wcspbrk() argument
148 … wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} in wcspbrk() argument
158 …_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2)… in __libcpp_wcsstr() argument
160 const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2)… in wcsstr() argument
162 … wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2);} in wcsstr() argument
Dregex1523 explicit __owns_two_states(__node<_CharT>* __s1, base* __s2)
1524 : base(__s1), __second_(__s2) {}
1560 __node<_CharT>* __s1, __owns_one_state<_CharT>* __s2,
1565 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id),
1659 __owns_one_state<_CharT>* __s2)
1660 : base(__s1, __s2) {}
2373 string_type __s2 = __traits_.transform(&__ch2.first,
2377 if (__ranges_[__i].first <= __s2 &&
2378 __s2 <= __ranges_[__i].second)
2387 string_type __s2 = __traits_.transform_primary(&__ch2.first,
[all …]
/external/llvm-project/libcxx/include/
Dstring.h80 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);} in __libcpp_strpbrk() argument
82 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument
84 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument
101 char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);} in __libcpp_strstr() argument
103 const char* strstr(const char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument
105 char* strstr( char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument
Dwchar.h144 …* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2)… in __libcpp_wcspbrk() argument
146 …st wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2)… in wcspbrk() argument
148 … wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} in wcspbrk() argument
158 …_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2)… in __libcpp_wcsstr() argument
160 const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2)… in wcsstr() argument
162 … wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2);} in wcsstr() argument
D__string209 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
215 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
218 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
237 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
239 for (; __n; --__n, ++__s1, ++__s2)
241 if (lt(*__s1, *__s2))
243 if (lt(*__s2, *__s1))
276 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n)
280 if (__s1 < __s2)
282 for (; __n; --__n, ++__s1, ++__s2)
[all …]
Dregex1539 explicit __owns_two_states(__node<_CharT>* __s1, base* __s2)
1540 : base(__s1), __second_(__s2) {}
1576 __node<_CharT>* __s1, __owns_one_state<_CharT>* __s2,
1581 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id),
1675 __owns_one_state<_CharT>* __s2)
1676 : base(__s1, __s2) {}
2412 string_type __s2 = __traits_.transform(&__ch2.first,
2416 if (__ranges_[__i].first <= __s2 &&
2417 __s2 <= __ranges_[__i].second)
2426 string_type __s2 = __traits_.transform_primary(&__ch2.first,
[all …]
/external/llvm-project/libcxx/include/support/ibm/
Dxlocale.h187 int strcoll_l(const char *__s1, const char *__s2, locale_t locale) in strcoll_l() argument
189 return __xstrcoll(locale, __s1, __s2); in strcoll_l()
192 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t locale) in wcscoll_l() argument
194 return __xwcscoll(locale, __s1, __s2); in wcscoll_l()
197 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale) in strxfrm_l() argument
199 return __xstrxfrm(locale, __s1, __s2, __n); in strxfrm_l()
/external/libcxx/include/support/ibm/
Dxlocale.h188 int strcoll_l(const char *__s1, const char *__s2, locale_t locale) in strcoll_l() argument
190 return __xstrcoll(locale, __s1, __s2); in strcoll_l()
193 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t locale) in wcscoll_l() argument
195 return __xwcscoll(locale, __s1, __s2); in wcscoll_l()
198 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale) in strxfrm_l() argument
200 return __xstrxfrm(locale, __s1, __s2, __n); in strxfrm_l()
/external/llvm-project/libcxx/test/std/strings/basic.string.hash/
Dchar_type_hash.fail.cpp35 static int compare(const char_type* __s1, const char_type* __s2, size_t __n);
40 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
41 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
/external/llvm-project/libcxx/test/std/strings/string.view/string.view.hash/
Dchar_type.hash.fail.cpp36 static int compare(const char_type* __s1, const char_type* __s2, size_t __n);
41 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
42 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
/external/llvm-project/clang/test/CodeGen/
Dbpf-attr-preserve-access-index-4.c17 typedef struct s2 __s2; typedef
20 __s2 a;
Dbpf-attr-preserve-access-index-5.c17 typedef struct s2 __s2; typedef
20 __s2 a;
Dbpf-attr-preserve-access-index-3.c17 typedef struct s2 __s2; typedef
20 __s2 a;
Dbpf-attr-preserve-access-index-6.c17 typedef struct s2 __s2; typedef
20 __s2 a;
Dbpf-attr-preserve-access-index-7.c21 typedef struct s2 __s2; typedef
24 __s2 a;
Dbpf-attr-preserve-access-index-8.c21 typedef struct s2 __s2; typedef
24 __s2 a;
/external/llvm-project/llvm/test/CodeGen/X86/
Dlifetime-alias.ll95 …%__s2.i.i.i = bitcast %"class.std::__3::basic_string"* %padding to %"struct.std::__3::basic_string…
96 …har, std::__3::char_traits<char>, std::__3::allocator<char> >::__short"* %__s2.i.i.i, i64 0, i32 1…
105 …%__s2.i.i.i10 = bitcast %"class.std::__3::basic_string"* %agg.tmp to %"struct.std::__3::basic_stri…
106 …har, std::__3::char_traits<char>, std::__3::allocator<char> >::__short"* %__s2.i.i.i10, i64 0, i32…
113 …%__s2.i.i.i27 = bitcast %"class.std::__3::basic_string"* %agg.tmp1 to %"struct.std::__3::basic_str…
114 …har, std::__3::char_traits<char>, std::__3::allocator<char> >::__short"* %__s2.i.i.i27, i64 0, i32…
/external/clang/lib/Headers/
Dmmintrin.h1315 _mm_set_pi16(short __s3, short __s2, short __s1, short __s0) in _mm_set_pi16() argument
1317 return (__m64)__builtin_ia32_vec_init_v4hi(__s0, __s1, __s2, __s3); in _mm_set_pi16()
/external/llvm-project/clang/lib/Headers/
Dmmintrin.h1326 _mm_set_pi16(short __s3, short __s2, short __s1, short __s0) in _mm_set_pi16() argument
1328 return (__m64)__builtin_ia32_vec_init_v4hi(__s0, __s1, __s2, __s3); in _mm_set_pi16()
/external/libabigail/tests/data/test-read-dwarf/
Dtest22-pr19097-libstdc++.so.6.0.17.so.abi21431 …<parameter type-id='type-id-4' name='__s2' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/…
54208 …<parameter type-id='type-id-4' name='__s2' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/…