Searched refs:__s (Results 1 - 25 of 51) 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.h137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} argument
139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} argument
141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} argument
151 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} argument
153 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __ argument
155 wcsrchr( wchar_t* __s, wchar_t __c) argument
165 __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
167 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) argument
169 wmemchr( wchar_t* __s, wchar_t __c, size_t __n) argument
[all...]
H A D__bsd_locale_fallbacks.h57 size_t __libcpp_wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) argument
60 return wcrtomb(__s, __wc, __ps);
72 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, argument
76 return mbrtowc(__pwc, __s, __n, __ps);
87 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) argument
90 return mbrlen(__s, __n, __ps);
109 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { argument
113 int __res = vsnprintf(__s, __n, __format, __va);
119 int __libcpp_asprintf_l(char **__s, locale_t __l, const char *__format, ...) { argument
123 int __res = vasprintf(__s, __forma
129 __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/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/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/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/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/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/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/libcxx/include/support/win32/
H A Dlocale_win32.h169 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm )
173 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
174 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ )
175 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ )
176 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __
[all...]
/external/libese/libese-sysdeps/include/ese/
H A Dsysdeps.h39 extern void *ese_memset(void *__s, int __c, uint64_t __n);
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp16 initializer_list(const _E* __b, size_t __s) argument
18 __size_(__s)
/external/linux-kselftest/tools/testing/selftests/timers/
H A Draw_skew.c35 __typeof__(s) __s = (s); \
36 __x < 0 ? -(-__x >> __s) : __x >> __s; \
/external/e2fsprogs/config/
H A Dparse-types.sh8 s/typedef \(.*\) __s\([1-9]*\);/#define __S\2_TYPEDEF \1/

Completed in 6768 milliseconds

123