Searched defs:__s (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-quals.cpp7 assign(const _CharT* __s, const basic_string<_CharT> &x) argument
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp19 constexpr initializer_list(const _E* __b, size_t __s) argument
22 __end_(__b + __s)
24 __size_(__s)
H A Dcxx0x-initializer-stdinitializerlist.cpp13 initializer_list(const _E* __b, size_t __s) argument
15 __size_(__s)
/external/clang/test/CodeGen/
H A Dmips-constraint-regs.c13 int __s, __v = 17; local
18 : "c" (__s), "I" (__v));
H A Dpr9614.c11 extern char *strrchr_foo (const char *__s, int __c) __asm ("strrchr");
12 extern inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) char * strrchr_foo (const char *__s, int __c) { argument
13 return __builtin_strrchr (__s, __c);
21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, __SIZE_TYPE__ __n) { argument
22 return __builtin_memchr(__s, __c, __n);
/external/libese/libese-sysdeps/
H A Dandroid-sysdeps.c25 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
26 return memset(__s, __c, __n);
H A Ddarwin-sysdeps.c26 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
27 return memset(__s, __c, __n);
/external/blktrace/btt/
H A Ddip_rb.c29 __u64 __s, s = BIT_START(iop); local
34 __s = BIT_START(__iop);
36 if (s < __s)
38 else if (s > __s)
/external/libcxx/include/
H A Dstring.h74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);} argument
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);} argument
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);} argument
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);} argument
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __ argument
92 strrchr( char* __s, int __c) argument
95 __libcpp_memchr(const void* __s, int __c, size_t __n) argument
97 memchr(const void* __s, int __c, size_t __n) argument
99 memchr( void* __s, int __c, size_t __n) argument
[all...]
H A Dwchar.h133 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} argument
135 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} argument
137 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} argument
147 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} argument
149 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __ argument
151 wcsrchr( wchar_t* __s, wchar_t __c) argument
161 __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
163 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
165 wmemchr( wchar_t* __s, wchar_t __c, size_t __n) argument
[all...]
H A D__bsd_locale_fallbacks.h55 size_t __libcpp_wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) argument
58 return wcrtomb(__s, __wc, __ps);
70 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, argument
74 return mbrtowc(__pwc, __s, __n, __ps);
85 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) argument
88 return mbrlen(__s, __n, __ps);
107 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { argument
111 int __res = vsnprintf(__s, __n, __format, __va);
117 int __libcpp_asprintf_l(char **__s, locale_t __l, const char *__format, ...) { argument
121 int __res = vasprintf(__s, __forma
127 __libcpp_sscanf_l(const char *__s, locale_t __l, const char *__format, ...) argument
[all...]
/external/libcxx/src/support/solaris/
H A Dxlocale.cpp28 #define vsnprintf_l(__s, __n, __l, __format, __va) \
29 vsnprintf(__s, __n, __format, __va)
31 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) argument
35 int __res = vsnprintf_l(__s, __n , __l, __format, __va);
40 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) { argument
44 int __res = vasprintf(__s, __format, __va);
49 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { argument
53 int __res = vsscanf(__s, __format, __va);
/external/libcxx/test/support/
H A Dconstexpr_char_traits.hpp38 static TEST_CONSTEXPR_CXX14 size_t length(const char_type* __s);
39 static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
42 static TEST_CONSTEXPR_CXX14 char_type* assign(char_type* __s, size_t __n, char_type __a);
77 constexpr_char_traits<_CharT>::length(const char_type* __s) argument
80 for (; !eq(*__s, char_type(0)); ++__s)
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a) argument
91 if (eq(*__s, __a))
92 return __s;
93 ++__s;
131 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
/external/syslinux/com32/include/
H A Dstdlib.h74 static __inline__ void srand(unsigned int __s) argument
76 srand48(__s);
84 static __inline__ void srandom(unsigned int __s) argument
86 srand48(__s);
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp37 initializer_list(const _E* __b, size_t __s) argument
39 __size_(__s)
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp16 initializer_list(const _E* __b, size_t __s) argument
18 __size_(__s)
H A Dcxx0x-initializer-constructor.cpp16 initializer_list(const _E* __b, size_t __s) argument
18 __size_(__s)
/external/libcxx/benchmarks/
H A Dunordered_set_operations.bench.cpp44 std::size_t hash_len_0_to_8(const char* __s) { argument
46 const uint64_t __a = loadword<uint32_t>(__s);
47 const uint64_t __b = loadword<uint32_t>(__s + _Len - 4);
/external/libcxx/src/
H A Dfuture.cpp210 __assoc_sub_state* __s = __state_; local
212 __s->copy();
H A Dthread.cpp164 void __make_ready_at_thread_exit(__assoc_sub_state* __s);
190 __thread_struct_imp::__make_ready_at_thread_exit(__assoc_sub_state* __s) argument
192 async_states_.push_back(__s);
193 __s->__add_shared();
215 __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) argument
217 __p_->__make_ready_at_thread_exit(__s);
/external/clang/test/Parser/
H A Dcxx0x-attributes.cpp14 initializer_list(const _E* __b, size_t __s) argument
16 __size_(__s)
/external/libcxx/include/support/ibm/
H A Dxlocale.h214 size_t strftime_l(char *__s, size_t __size, const char *__fmt, argument
216 return __xstrftime(locale, __s, __size, __fmt, __tm);
/external/syslinux/memdisk/
H A Dmemdisk.h101 static inline void *mempcpy(void *__d, const void *__s, unsigned int __n) argument
103 memcpy(__d, __s, __n);
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h89 initializer_list(const _E* __b, size_t __s) argument
91 __size_(__s)
/external/clang/test/CXX/drs/
H A Ddr14xx.cpp210 initializer_list(const _E* __b, size_t __s) argument
211 : __begin_(__b), __size_(__s) {}

Completed in 1521 milliseconds

12