HomeSort by relevance Sort by last modified time
    Searched full:__buf (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
unistd.h 24 extern ssize_t __read_chk (int __fd, void *__buf, size_t __nbytes,
26 extern ssize_t __REDIRECT (__read_alias, (int __fd, void *__buf,
29 (int __fd, void *__buf, size_t __nbytes,
35 read (int __fd, void *__buf, size_t __nbytes)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __read_chk (__fd, __buf, __nbytes, __bos0 (__buf));
42 if (__nbytes > __bos0 (__buf))
43 return __read_chk_warn (__fd, __buf, __nbytes, __bos0 (__buf));
    [all...]
socket2.h 24 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
26 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
29 (int __fd, void *__buf, size_t __n, size_t __buflen,
35 recv (int __fd, void *__buf, size_t __n, int __flags)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
42 if (__n > __bos0 (__buf))
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 24 extern ssize_t __read_chk (int __fd, void *__buf, size_t __nbytes,
26 extern ssize_t __REDIRECT (__read_alias, (int __fd, void *__buf,
29 (int __fd, void *__buf, size_t __nbytes,
35 read (int __fd, void *__buf, size_t __nbytes)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __read_chk (__fd, __buf, __nbytes, __bos0 (__buf));
42 if (__nbytes > __bos0 (__buf))
43 return __read_chk_warn (__fd, __buf, __nbytes, __bos0 (__buf));
    [all...]
socket2.h 24 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
26 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
29 (int __fd, void *__buf, size_t __n, size_t __buflen,
35 recv (int __fd, void *__buf, size_t __n, int __flags)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
42 if (__n > __bos0 (__buf))
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 24 extern ssize_t __read_chk (int __fd, void *__buf, size_t __nbytes,
26 extern ssize_t __REDIRECT (__read_alias, (int __fd, void *__buf,
29 (int __fd, void *__buf, size_t __nbytes,
35 read (int __fd, void *__buf, size_t __nbytes)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __read_chk (__fd, __buf, __nbytes, __bos0 (__buf));
42 if (__nbytes > __bos0 (__buf))
43 return __read_chk_warn (__fd, __buf, __nbytes, __bos0 (__buf));
    [all...]
socket2.h 24 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
26 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
29 (int __fd, void *__buf, size_t __n, size_t __buflen,
35 recv (int __fd, void *__buf, size_t __n, int __flags)
37 if (__bos0 (__buf) != (size_t) -1)
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
42 if (__n > __bos0 (__buf))
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags)
    [all...]
  /external/stlport/stlport/stl/
_string_sum_methods.h 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) {
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
43 return __buf + 1;
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf)
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf)
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
    [all...]
_istream.c 168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
429 // if (!__buf || this->_S_eof(__buf->sputbackc(__c)))
430 if (__buf) {
432 __tmp = __buf->sputbackc(__c);
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
455 // if (!__buf || _Traits::eq_int_type(__buf->sungetc(), _Traits::eof())
    [all...]
_num_put.c 117 __iostring __buf; local
119 size_t __group_pos = __write_float(__buf, __f.flags(), (int)__f.precision(), __x);
122 return __put_float(__buf, __s, __f, __fill,
127 inline void __get_money_digits_aux (__iostring &__buf, ios_base &, _STLP_LONGEST_FLOAT_TYPE __x)
128 { __get_floor_digits(__buf, __x); }
132 __iostring __buf; local
133 __get_floor_digits(__buf, __x);
136 __convert_float_buffer(__buf, __wbuf, __ct, wchar_t(0), false);
141 void _STLP_CALL __get_money_digits(_STLP_BASIC_IOSTRING(_CharT) &__buf, ios_base& __f, _STLP_LONGEST_FLOAT_TYPE __x)
142 { __get_money_digits_aux(__buf, __f, __x);
377 char __buf[sizeof(_Integer) * 3 + 2]; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) {
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
43 return __buf + 1;
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf)
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf)
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
    [all...]
_istream.c 168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
429 // if (!__buf || this->_S_eof(__buf->sputbackc(__c)))
430 if (__buf) {
432 __tmp = __buf->sputbackc(__c);
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
455 // if (!__buf || _Traits::eq_int_type(__buf->sungetc(), _Traits::eof())
    [all...]
_num_put.c 117 __iostring __buf; local
119 size_t __group_pos = __write_float(__buf, __f.flags(), (int)__f.precision(), __x);
122 return __put_float(__buf, __s, __f, __fill,
127 inline void __get_money_digits_aux (__iostring &__buf, ios_base &, _STLP_LONGEST_FLOAT_TYPE __x)
128 { __get_floor_digits(__buf, __x); }
132 __iostring __buf; local
133 __get_floor_digits(__buf, __x);
136 __convert_float_buffer(__buf, __wbuf, __ct, wchar_t(0), false);
141 void _STLP_CALL __get_money_digits(_STLP_BASIC_IOSTRING(_CharT) &__buf, ios_base& __f, _STLP_LONGEST_FLOAT_TYPE __x)
142 { __get_money_digits_aux(__buf, __f, __x);
377 char __buf[sizeof(_Integer) * 3 + 2]; local
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) {
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
43 return __buf + 1;
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf)
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf)
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
    [all...]
_istream.c 168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
429 // if (!__buf || this->_S_eof(__buf->sputbackc(__c)))
430 if (__buf) {
432 __tmp = __buf->sputbackc(__c);
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
455 // if (!__buf || _Traits::eq_int_type(__buf->sungetc(), _Traits::eof())
    [all...]
_num_put.c 117 __iostring __buf; local
119 size_t __group_pos = __write_float(__buf, __f.flags(), (int)__f.precision(), __x);
122 return __put_float(__buf, __s, __f, __fill,
127 inline void __get_money_digits_aux (__iostring &__buf, ios_base &, _STLP_LONGEST_FLOAT_TYPE __x)
128 { __get_floor_digits(__buf, __x); }
132 __iostring __buf; local
133 __get_floor_digits(__buf, __x);
136 __convert_float_buffer(__buf, __wbuf, __ct, wchar_t(0), false);
141 void _STLP_CALL __get_money_digits(_STLP_BASIC_IOSTRING(_CharT) &__buf, ios_base& __f, _STLP_LONGEST_FLOAT_TYPE __x)
142 { __get_money_digits_aux(__buf, __f, __x);
377 char __buf[sizeof(_Integer) * 3 + 2]; local
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) {
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
43 return __buf + 1;
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf)
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf)
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
    [all...]
_istream.c 168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
429 // if (!__buf || this->_S_eof(__buf->sputbackc(__c)))
430 if (__buf) {
432 __tmp = __buf->sputbackc(__c);
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
455 // if (!__buf || _Traits::eq_int_type(__buf->sungetc(), _Traits::eof())
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) {
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
43 return __buf + 1;
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf)
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf)
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf)
    [all...]
_istream.c 168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
428 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
429 // if (!__buf || this->_S_eof(__buf->sputbackc(__c)))
430 if (__buf) {
432 __tmp = __buf->sputbackc(__c);
454 basic_streambuf<_CharT, _Traits>* __buf = this->rdbuf();
455 // if (!__buf || _Traits::eq_int_type(__buf->sungetc(), _Traits::eof())
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
unistd.h 47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf,
51 read (int __fd, void *__buf, size_t __nbytes)
53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf))
55 return __read_alias (__fd, __buf, __nbytes);
60 char *__restrict__ __buf, size_t __len),
64 readlink (const char *__restrict__ __path, char *__restrict__ __buf,
67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf))
69 return __readlink_alias (__path, __buf, __len)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
unistd.h 47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf,
51 read (int __fd, void *__buf, size_t __nbytes)
53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf))
55 return __read_alias (__fd, __buf, __nbytes);
60 char *__restrict__ __buf, size_t __len),
64 readlink (const char *__restrict__ __path, char *__restrict__ __buf,
67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf))
69 return __readlink_alias (__path, __buf, __len)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
unistd.h 47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf,
51 read (int __fd, void *__buf, size_t __nbytes)
53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf))
55 return __read_alias (__fd, __buf, __nbytes);
60 char *__restrict__ __buf, size_t __len),
64 readlink (const char *__restrict__ __path, char *__restrict__ __buf,
67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf))
69 return __readlink_alias (__path, __buf, __len)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
statfs.h 32 extern int statfs (__const char *__file, struct statfs *__buf)
37 (__const char *__file, struct statfs *__buf),
44 extern int statfs64 (__const char *__file, struct statfs64 *__buf)
51 extern int fstatfs (int __fildes, struct statfs *__buf)
55 extern int __REDIRECT_NTH (fstatfs, (int __fildes, struct statfs *__buf),
62 extern int fstatfs64 (int __fildes, struct statfs64 *__buf)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
statfs.h 32 extern int statfs (__const char *__file, struct statfs *__buf)
37 (__const char *__file, struct statfs *__buf),
44 extern int statfs64 (__const char *__file, struct statfs64 *__buf)
51 extern int fstatfs (int __fildes, struct statfs *__buf)
55 extern int __REDIRECT_NTH (fstatfs, (int __fildes, struct statfs *__buf),
62 extern int fstatfs64 (int __fildes, struct statfs64 *__buf)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
statfs.h 32 extern int statfs (__const char *__file, struct statfs *__buf)
37 (__const char *__file, struct statfs *__buf),
44 extern int statfs64 (__const char *__file, struct statfs64 *__buf)
51 extern int fstatfs (int __fildes, struct statfs *__buf)
55 extern int __REDIRECT_NTH (fstatfs, (int __fildes, struct statfs *__buf),
62 extern int fstatfs64 (int __fildes, struct statfs64 *__buf)

Completed in 2924 milliseconds

1 2 3 4 5 6 7 8 91011>>