HomeSort by relevance Sort by last modified time
    Searched refs:__s (Results 1 - 25 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 24 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s)
25 : _STLP_STRING_SUM_BASE(_Reserve_t(), __s.size(), __s.get_allocator())
26 { _M_append_sum(__s); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
32 : _STLP_STRING_SUM_BASE(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a) {
33 size_type __size = __s.size();
37 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos));
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf
    [all...]
_ios_base.h 269 inline ios_base& _STLP_CALL boolalpha(ios_base& __s)
270 { __s.setf(ios_base::boolalpha); return __s;}
272 inline ios_base& _STLP_CALL noboolalpha(ios_base& __s)
273 { __s.unsetf(ios_base::boolalpha); return __s;}
275 inline ios_base& _STLP_CALL showbase(ios_base& __s)
276 { __s.setf(ios_base::showbase); return __s;}
278 inline ios_base& _STLP_CALL noshowbase(ios_base& __s)
    [all...]
_string_hash.h 34 __stl_string_hash(const basic_string<_CharT,_Traits,_Alloc>& __s) {
36 size_t __len = __s.size();
37 const _CharT* __data = __s.data();
47 size_t operator()(const basic_string<_CharT,_Traits,_Alloc>& __s) const
48 { return __stl_string_hash(__s); }
55 size_t operator()(const string& __s) const
56 { return __stl_string_hash(__s); }
62 size_t operator()(const wstring& __s) const
63 { return __stl_string_hash(__s); }
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
45 _STLP_FIX_LITERAL_BUG(__s)
47 for ( ; *__s; ++__s)
48 __h = 5*__h + *__s;
57 size_t operator()(const char* __s) const {
58 _STLP_FIX_LITERAL_BUG(__s)
59 return _STLP_PRIV __stl_hash_string(__s);
65 size_t operator()(const char* __s) const {
66 _STLP_FIX_LITERAL_BUG(__s)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 24 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s)
25 : _STLP_STRING_SUM_BASE(_Reserve_t(), __s.size(), __s.get_allocator())
26 { _M_append_sum(__s); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
32 : _STLP_STRING_SUM_BASE(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a) {
33 size_type __size = __s.size();
37 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos));
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf
    [all...]
_ios_base.h 269 inline ios_base& _STLP_CALL boolalpha(ios_base& __s)
270 { __s.setf(ios_base::boolalpha); return __s;}
272 inline ios_base& _STLP_CALL noboolalpha(ios_base& __s)
273 { __s.unsetf(ios_base::boolalpha); return __s;}
275 inline ios_base& _STLP_CALL showbase(ios_base& __s)
276 { __s.setf(ios_base::showbase); return __s;}
278 inline ios_base& _STLP_CALL noshowbase(ios_base& __s)
    [all...]
_string_hash.h 34 __stl_string_hash(const basic_string<_CharT,_Traits,_Alloc>& __s) {
36 size_t __len = __s.size();
37 const _CharT* __data = __s.data();
47 size_t operator()(const basic_string<_CharT,_Traits,_Alloc>& __s) const
48 { return __stl_string_hash(__s); }
55 size_t operator()(const string& __s) const
56 { return __stl_string_hash(__s); }
62 size_t operator()(const wstring& __s) const
63 { return __stl_string_hash(__s); }
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
45 _STLP_FIX_LITERAL_BUG(__s)
47 for ( ; *__s; ++__s)
48 __h = 5*__h + *__s;
57 size_t operator()(const char* __s) const {
58 _STLP_FIX_LITERAL_BUG(__s)
59 return _STLP_PRIV __stl_hash_string(__s);
65 size_t operator()(const char* __s) const {
66 _STLP_FIX_LITERAL_BUG(__s)
    [all...]
  /external/tcpdump/
cpack.h 49 #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))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
hash_fun.h 71 __stl_hash_string(const char* __s)
74 for ( ; *__s; ++__s)
75 __h = 5 * __h + *__s;
83 operator()(const char* __s) const
84 { return __stl_hash_string(__s); }
91 operator()(const char* __s) const
92 { return __stl_hash_string(__s); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
hash_fun.h 71 __stl_hash_string(const char* __s)
74 for ( ; *__s; ++__s)
75 __h = 5 * __h + *__s;
83 operator()(const char* __s) const
84 { return __stl_hash_string(__s); }
91 operator()(const char* __s) const
92 { return __stl_hash_string(__s); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
hash_fun.h 71 __stl_hash_string(const char* __s)
74 for ( ; *__s; ++__s)
75 __h = 5 * __h + *__s;
83 operator()(const char* __s) const
84 { return __stl_hash_string(__s); }
91 operator()(const char* __s) const
92 { return __stl_hash_string(__s); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
hash_fun.h 71 __stl_hash_string(const char* __s)
74 for ( ; *__s; ++__s)
75 __h = 5 * __h + *__s;
83 operator()(const char* __s) const
84 { return __stl_hash_string(__s); }
91 operator()(const char* __s) const
92 { return __stl_hash_string(__s); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
messages_members.h 50 messages<_CharT>::messages(__c_locale __cloc, const char* __s,
54 if (__builtin_strcmp(__s, _S_get_c_name()) != 0)
56 const size_t __len = __builtin_strlen(__s) + 1;
58 __builtin_memcpy(__tmp, __s, __len);
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
73 bindtextdomain(__s.c_str(), __dir);
74 return this->do_open(__s, __loc);
88 messages<_CharT>::do_open(const basic_string<char>& __s,
93 textdomain(__s.c_str());
104 messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
messages_members.h 50 messages<_CharT>::messages(__c_locale __cloc, const char* __s,
54 if (__builtin_strcmp(__s, _S_get_c_name()) != 0)
56 const size_t __len = __builtin_strlen(__s) + 1;
58 __builtin_memcpy(__tmp, __s, __len);
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
73 bindtextdomain(__s.c_str(), __dir);
74 return this->do_open(__s, __loc);
88 messages<_CharT>::do_open(const basic_string<char>& __s,
93 textdomain(__s.c_str());
104 messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
messages_members.h 50 messages<_CharT>::messages(__c_locale __cloc, const char* __s,
54 if (__builtin_strcmp(__s, _S_get_c_name()) != 0)
56 const size_t __len = __builtin_strlen(__s) + 1;
58 __builtin_memcpy(__tmp, __s, __len);
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
73 bindtextdomain(__s.c_str(), __dir);
74 return this->do_open(__s, __loc);
88 messages<_CharT>::do_open(const basic_string<char>& __s,
93 textdomain(__s.c_str());
104 messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
messages_members.h 50 messages<_CharT>::messages(__c_locale __cloc, const char* __s,
54 if (__builtin_strcmp(__s, _S_get_c_name()) != 0)
56 const size_t __len = __builtin_strlen(__s) + 1;
58 __builtin_memcpy(__tmp, __s, __len);
70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc,
73 bindtextdomain(__s.c_str(), __dir);
74 return this->do_open(__s, __loc);
88 messages<_CharT>::do_open(const basic_string<char>& __s,
93 textdomain(__s.c_str());
104 messages_byname<_CharT>::messages_byname(const char* __s, size_t __refs
    [all...]
  /external/clang/test/CodeGen/
pr9614.c 11 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) {
13 return __builtin_strrchr (__s, __c);
21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, __SIZE_TYPE__ __n) {
22 return __builtin_memchr(__s, __c, __n);
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string_sum_methods.h 23 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s)
24 : _M_non_dbg_impl(_Reserve_t(), __s.size(), __s.get_allocator()),
26 { _M_append_sum(__s, _M_non_dbg_impl); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
32 : _M_non_dbg_impl(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a),
34 size_type __size = __s.size();
39 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos), _M_non_dbg_impl);
45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str
    [all...]
_string.h 97 basic_string(const _Self& __s)
98 : _ConstructCheck(__s),
99 _M_non_dbg_impl(__s._M_non_dbg_impl), _M_iter_list(&_M_non_dbg_impl) {}
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_string_sum_methods.h 23 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s)
24 : _M_non_dbg_impl(_Reserve_t(), __s.size(), __s.get_allocator()),
26 { _M_append_sum(__s, _M_non_dbg_impl); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s,
32 : _M_non_dbg_impl(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a),
34 size_type __size = __s.size();
39 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos), _M_non_dbg_impl);
45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
iostream.h 58 istream_withassign& operator=(istream& __s) {
59 ios::init(__s.rdbuf());
62 istream_withassign& operator=(streambuf* __s) {
63 ios::init(__s);
73 ostream_withassign& operator=(ostream& __s) {
74 ios::init(__s.rdbuf());
77 ostream_withassign& operator=(streambuf* __s) {
78 ios::init(__s);
91 iostream_withassign & operator=(streambuf* __s) {
92 ios::init(__s);
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
iostream.h 58 istream_withassign& operator=(istream& __s) {
59 ios::init(__s.rdbuf());
62 istream_withassign& operator=(streambuf* __s) {
63 ios::init(__s);
73 ostream_withassign& operator=(ostream& __s) {
74 ios::init(__s.rdbuf());
77 ostream_withassign& operator=(streambuf* __s) {
78 ios::init(__s);
91 iostream_withassign & operator=(streambuf* __s) {
92 ios::init(__s);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
strings.h 46 extern void bzero (void *__s, size_t __n) __THROW;
56 extern char *index (char *__s, int __c)
58 extern __const char *index (__const char *__s, int __c)
63 index (char *__s, int __c) __THROW
65 return __builtin_index (__s, __c);
69 index (__const char *__s, int __c) __THROW
71 return __builtin_index (__s, __c);
76 extern char *index (__const char *__s, int __c)
84 extern char *rindex (char *__s, int __c)
86 extern __const char *rindex (__const char *__s, int __c
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
strings.h 48 extern void bzero (void *__s, size_t __n) __THROW;
54 extern char *index (char *__s, int __c)
56 extern __const char *index (__const char *__s, int __c)
61 index (char *__s, int __c) __THROW
63 return __builtin_index (__s, __c);
67 index (__const char *__s, int __c) __THROW
69 return __builtin_index (__s, __c);
74 extern char *index (__const char *__s, int __c)
82 extern char *rindex (char *__s, int __c)
84 extern __const char *rindex (__const char *__s, int __c
    [all...]

Completed in 1749 milliseconds

1 2 3 4 5 6 7 8 91011>>