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

123

/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/tcpdump/
H A Dcpack.h49 #define cpack_int8(__s, __p) cpack_uint8((__s), (uint8_t*)(__p))
50 #define cpack_int16(__s, __p) cpack_uint16((__s), (uint16_t*)(__p))
51 #define cpack_int32(__s, __p) cpack_uint32((__s), (uint32_t*)(__p))
52 #define cpack_int64(__s, __p) cpack_uint64((__s), (uint64_t*)(__p))
/external/clang/test/CodeGen/
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);
H A Dmips-constraint-regs.c13 int __s, __v = 17; local
18 : "c" (__s), "I" (__v));
/external/libese/libese/include/ese/
H A Dsysdeps.h22 extern void *ese_memset(void *__s, int __c, uint64_t __n);
/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/libese/libese-sysdeps/
H A Dandroid-sysdeps.c24 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
25 return memset(__s, __c, __n);
H A Ddarwin-sysdeps.c24 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
25 return memset(__s, __c, __n);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-quals.cpp7 assign(const _CharT* __s, const basic_string<_CharT> &x) argument
H A Dcrash.cpp22 string(const char *__s);
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp19 constexpr initializer_list(const _E* __b, size_t __s) argument
22 __end_(__b + __s)
24 __size_(__s)
/external/libese/libese-sysdeps/include/ese/
H A Dsysdeps.h27 extern void *ese_memset(void *__s, int __c, uint64_t __n);
/external/libcxx/src/
H A Dregex.cpp261 __match_any_but_newline<char>::__exec(__state& __s) const
263 if (__s.__current_ != __s.__last_)
265 switch (*__s.__current_)
269 __s.__do_ = __state::__reject;
270 __s.__node_ = nullptr;
273 __s.__do_ = __state::__accept_and_consume;
274 ++__s.__current_;
275 __s.__node_ = this->first();
281 __s
[all...]
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/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 Dstdio.h77 #define fread(__p, __s, __n, __f) \
78 ( (__builtin_constant_p(__s) && __s == 1) \
80 : fread(__p,__s,__n,__f) )
82 #define fwrite(__p, __s, __n, __f) \
83 ( (__builtin_constant_p(__s) && __s == 1) \
85 : fwrite(__p,__s,__n,__f) )
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/libcxx/include/support/win32/
H A Dlocale_win32.h88 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
89 #define vsscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
90 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ )
91 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ )
92 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __
[all...]
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp37 initializer_list(const _E* __b, size_t __s) argument
39 __size_(__s)
/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/support/solaris/
H A Dxlocale.h24 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...);
25 int asprintf_l(char **__s, locale_t __l, const char *__format, ...);
27 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...);
/external/bison/lib/
H A Dstring.in.h97 _GL_FUNCDECL_RPL (memchr, void *, (void const *__s, int __c, size_t __n)
100 _GL_CXXALIAS_RPL (memchr, void *, (void const *__s, int __c, size_t __n));
103 _GL_FUNCDECL_SYS (memchr, void *, (void const *__s, int __c, size_t __n)
111 void *, (void const *__s, int __c, size_t __n),
112 void const *, (void const *__s, int __c, size_t __n));
116 _GL_CXXALIASWARN1 (memchr, void *, (void *__s, int __c, size_t __n));
118 (void const *__s, int __c, size_t __n));
219 _GL_FUNCDECL_SYS (rawmemchr, void *, (void const *__s, int __c_in)
227 void *, (void const *__s, int __c_in),
228 void const *, (void const *__s, in
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp16 initializer_list(const _E* __b, size_t __s) argument
18 __size_(__s)

Completed in 1182 milliseconds

123