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

1 2 3 4 5 6 7

  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
arm_acle.h 142 __clz(uint32_t __t) {
143 return __builtin_clz(__t);
147 __clzl(unsigned long __t) {
148 return __builtin_clzl(__t);
152 __clzll(uint64_t __t) {
153 return __builtin_clzll(__t);
158 __rev(uint32_t __t) {
159 return __builtin_bswap32(__t);
163 __revl(unsigned long __t) {
165 return __builtin_bswap32(__t);
    [all...]
  /external/clang/test/CodeGen/
mips-constraint-regs.c 14 int __t; local
17 : "=c" (__t)
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 152 const ios_base& __s, ios_base::iostate& __err, tm* __t) {
174 __t->tm_wday = __STATIC_CAST(int, __index);
185 __t->tm_mon = __STATIC_CAST(int, __index);
190 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mday, __STATIC_CAST(_Ch*, 0));
191 if (!__pr || __t->tm_mday < 1 || __t->tm_mday > 31) {
199 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
206 bool __pr = __get_decimal_integer(__first, __last, __t->tm_yday, __STATIC_CAST(_Ch*, 0));
213 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mon, __STATIC_CAST(_Ch*, 0));
214 --__t->tm_mon
    [all...]
_time_facets.h 141 ios_base::iostate& __err, tm* __t) const
142 { return do_get_time(__s, __end, __str, __err, __t); }
144 ios_base::iostate& __err, tm* __t) const
145 { return do_get_date(__s, __end, __str, __err, __t); }
147 ios_base::iostate& __err, tm* __t) const
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
150 ios_base::iostate& __err, tm* __t) const
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
153 ios_base::iostate& __err, tm* __t) const
154 { return do_get_year(__s, __end, __str, __err, __t); }
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 152 const ios_base& __s, ios_base::iostate& __err, tm* __t) {
175 __t->tm_wday = __STATIC_CAST(int, __index);
186 __t->tm_mon = __STATIC_CAST(int, __index);
191 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mday, __STATIC_CAST(_Ch*, 0));
192 if (!__pr || __t->tm_mday < 1 || __t->tm_mday > 31) {
200 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
207 bool __pr = __get_decimal_integer(__first, __last, __t->tm_yday, __STATIC_CAST(_Ch*, 0));
214 bool __pr = __get_decimal_integer(__first, __last, __t->tm_mon, __STATIC_CAST(_Ch*, 0));
215 --__t->tm_mon
    [all...]
_time_facets.h 141 ios_base::iostate& __err, tm* __t) const
142 { return do_get_time(__s, __end, __str, __err, __t); }
144 ios_base::iostate& __err, tm* __t) const
145 { return do_get_date(__s, __end, __str, __err, __t); }
147 ios_base::iostate& __err, tm* __t) const
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
150 ios_base::iostate& __err, tm* __t) const
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
153 ios_base::iostate& __err, tm* __t) const
154 { return do_get_year(__s, __end, __str, __err, __t); }
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_function.h 225 operator()(_Tp&& __t, _Up&& __u) const
226 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u)))
227 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u))
228 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); }
239 operator()(_Tp&& __t, _Up&& __u) const
240 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u)))
241 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u))
242 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); }
253 operator()(_Tp&& __t, _Up&& __u) const
254 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))
    [all...]
valarray_before.h 66 _Tp operator()(const _Tp& __t) const
67 { return abs(__t); }
73 _Tp operator()(const _Tp& __t) const
74 { return cos(__t); }
80 _Tp operator()(const _Tp& __t) const
81 { return acos(__t); }
87 _Tp operator()(const _Tp& __t) const
88 { return cosh(__t); }
94 _Tp operator()(const _Tp& __t) const
95 { return sin(__t); }
    [all...]
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
77 { return static_cast<_Tp&&>(__t); }
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
91 return static_cast<_Tp&&>(__t);
96 * @param __t A thing of arbitrary type.
101 move(_Tp&& __t) noexcept
102 { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }
  /external/valgrind/drd/tests/
std_thread.cpp 30 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); local
32 __local.swap(__t->_M_this_ptr);
35 __t->_M_run();
std_thread2.cpp 35 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p); local
37 __local.swap(__t->_M_this_ptr);
40 __t->_M_run();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
unique_copy.h 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
133 __begin_output += __counter[__t];
157 for (_ThreadIndex __t = 0; __t < __iam; __t++)
158 __begin_output += __counter[__t];
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
queue.h 83 push_front(const _Tp& __t)
88 *(_M_base + __former_front % _M_max_size) = __t;
100 pop_front(_Tp& __t)
115 __t = *(_M_base + (__former_front - 1) % _M_max_size);
127 pop_back(_Tp& __t) //queue behavior
142 __t = *(_M_base + __former_back % _M_max_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
unique_copy.h 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
133 __begin_output += __counter[__t];
157 for (_ThreadIndex __t = 0; __t < __iam; __t++)
158 __begin_output += __counter[__t];
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
queue.h 83 push_front(const _Tp& __t)
88 *(_M_base + __former_front % _M_max_size) = __t;
100 pop_front(_Tp& __t)
115 __t = *(_M_base + (__former_front - 1) % _M_max_size);
127 pop_back(_Tp& __t) //queue behavior
142 __t = *(_M_base + __former_back % _M_max_size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
unique_copy.h 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
133 __begin_output += __counter[__t];
157 for (_ThreadIndex __t = 0; __t < __iam; __t++)
158 __begin_output += __counter[__t];
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
queue.h 83 push_front(const _Tp& __t)
88 *(_M_base + __former_front % _M_max_size) = __t;
100 pop_front(_Tp& __t)
115 __t = *(_M_base + (__former_front - 1) % _M_max_size);
127 pop_back(_Tp& __t) //queue behavior
142 __t = *(_M_base + __former_back % _M_max_size);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
unique_copy.h 132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
133 __begin_output += __counter[__t];
157 for (_ThreadIndex __t = 0; __t < __iam; __t++)
158 __begin_output += __counter[__t];
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
queue.h 83 push_front(const _Tp& __t)
88 *(_M_base + __former_front % _M_max_size) = __t;
100 pop_front(_Tp& __t)
115 __t = *(_M_base + (__former_front - 1) % _M_max_size);
127 pop_back(_Tp& __t) //queue behavior
142 __t = *(_M_base + __former_back % _M_max_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
valarray_before.h 66 _Tp operator()(const _Tp& __t) const
67 { return abs(__t); }
73 _Tp operator()(const _Tp& __t) const
74 { return cos(__t); }
80 _Tp operator()(const _Tp& __t) const
81 { return acos(__t); }
87 _Tp operator()(const _Tp& __t) const
88 { return cosh(__t); }
94 _Tp operator()(const _Tp& __t) const
95 { return sin(__t); }
    [all...]
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
77 { return static_cast<_Tp&&>(__t); }
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
91 return static_cast<_Tp&&>(__t);
96 * @param __t A thing of arbitrary type.
101 move(_Tp&& __t) noexcept
102 { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
valarray_before.h 66 _Tp operator()(const _Tp& __t) const
67 { return abs(__t); }
73 _Tp operator()(const _Tp& __t) const
74 { return cos(__t); }
80 _Tp operator()(const _Tp& __t) const
81 { return acos(__t); }
87 _Tp operator()(const _Tp& __t) const
88 { return cosh(__t); }
94 _Tp operator()(const _Tp& __t) const
95 { return sin(__t); }
    [all...]
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
77 { return static_cast<_Tp&&>(__t); }
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
91 return static_cast<_Tp&&>(__t);
96 * @param __t A thing of arbitrary type.
101 move(_Tp&& __t) noexcept
102 { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
valarray_before.h 66 _Tp operator()(const _Tp& __t) const
67 { return abs(__t); }
73 _Tp operator()(const _Tp& __t) const
74 { return cos(__t); }
80 _Tp operator()(const _Tp& __t) const
81 { return acos(__t); }
87 _Tp operator()(const _Tp& __t) const
88 { return cosh(__t); }
94 _Tp operator()(const _Tp& __t) const
95 { return sin(__t); }
    [all...]
move.h 76 forward(typename std::remove_reference<_Tp>::type& __t) noexcept
77 { return static_cast<_Tp&&>(__t); }
87 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
91 return static_cast<_Tp&&>(__t);
96 * @param __t A thing of arbitrary type.
101 move(_Tp&& __t) noexcept
102 { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }

Completed in 940 milliseconds

1 2 3 4 5 6 7