HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 226 - 250 of 424) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/transform.inclusive.scan/
transform_inclusive_scan_bop_uop.pass.cpp 31 constexpr const _Tp& operator()(const _Tp& __x) const { return __x;}
38 constexpr auto operator()(_Tp&& __x) const
39 _NOEXCEPT_(noexcept(_VSTD::forward<_Tp>(__x)))
40 -> decltype (_VSTD::forward<_Tp>(__x))
41 { return _VSTD::forward<_Tp>(__x); }
  /bionic/libc/include/sys/
endian.h 52 uint32_t htonl(uint32_t __x) __attribute_const__ __INTRODUCED_IN(21);
53 uint16_t htons(uint16_t __x) __attribute_const__ __INTRODUCED_IN(21);
54 uint32_t ntohl(uint32_t __x) __attribute_const__ __INTRODUCED_IN(21);
55 uint16_t ntohs(uint16_t __x) __attribute_const__ __INTRODUCED_IN(21);
  /external/linux-kselftest/tools/testing/selftests/timers/
raw_skew.c 34 __typeof__(x) __x = (x); \
36 __x < 0 ? -(-__x >> __s) : __x >> __s; \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
array_allocator.h 62 address(reference __x) const _GLIBCXX_NOEXCEPT
63 { return std::__addressof(__x); }
66 address(const_reference __x) const _GLIBCXX_NOEXCEPT
67 { return std::__addressof(__x); }
ropeimpl.h 69 _S_setbuf(_Rope_iterator_base<_CharT, _Alloc>& __x)
71 const _RopeRep* __leaf = __x._M_path_end[__x._M_leaf_index];
72 size_t __leaf_pos = __x._M_leaf_pos;
73 size_t __pos = __x._M_current_pos;
78 __x._M_buf_start = ((_Rope_RopeLeaf<_CharT, _Alloc>*)__leaf)->_M_data;
79 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
80 __x._M_buf_end = __x._M_buf_start + __leaf->_M_size
    [all...]
extptr_allocator.h 89 pointer address(reference __x) const _GLIBCXX_NOEXCEPT
90 { return std::__addressof(__x); }
92 const_pointer address(const_reference __x) const _GLIBCXX_NOEXCEPT
93 { return std::__addressof(__x); }
pool_allocator.h 160 address(reference __x) const _GLIBCXX_NOEXCEPT
161 { return std::__addressof(__x); }
164 address(const_reference __x) const _GLIBCXX_NOEXCEPT
165 { return std::__addressof(__x); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
array_allocator.h 62 address(reference __x) const _GLIBCXX_NOEXCEPT
63 { return std::__addressof(__x); }
66 address(const_reference __x) const _GLIBCXX_NOEXCEPT
67 { return std::__addressof(__x); }
ropeimpl.h 69 _S_setbuf(_Rope_iterator_base<_CharT, _Alloc>& __x)
71 const _RopeRep* __leaf = __x._M_path_end[__x._M_leaf_index];
72 size_t __leaf_pos = __x._M_leaf_pos;
73 size_t __pos = __x._M_current_pos;
78 __x._M_buf_start = ((_Rope_RopeLeaf<_CharT, _Alloc>*)__leaf)->_M_data;
79 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
80 __x._M_buf_end = __x._M_buf_start + __leaf->_M_size
    [all...]
extptr_allocator.h 89 pointer address(reference __x) const _GLIBCXX_NOEXCEPT
90 { return std::__addressof(__x); }
92 const_pointer address(const_reference __x) const _GLIBCXX_NOEXCEPT
93 { return std::__addressof(__x); }
pool_allocator.h 160 address(reference __x) const _GLIBCXX_NOEXCEPT
161 { return std::__addressof(__x); }
164 address(const_reference __x) const _GLIBCXX_NOEXCEPT
165 { return std::__addressof(__x); }
  /external/clang/test/SemaTemplate/
dependent-base-member-init.cpp 28 insert_iterator(_Container& __x) : container(&__x) {}
  /external/python/cpython2/Tools/pynche/
TypeinViewer.py 40 self.__x = Entry(subframe, width=3)
41 self.__x.grid(row=0, column=1)
42 self.__x.bindtags(self.__x.bindtags() + ('Normalize', 'Update'))
43 self.__x.bind_class('Normalize', '<Key>', self.__normalize)
44 self.__x.bind_class('Update' , '<Key>', self.__maybeupdate)
128 redstr = self.__x.get() or '0'
143 x, y, z = self.__x, self.__y, self.__z
  /external/python/cpython3/Tools/pynche/
TypeinViewer.py 40 self.__x = Entry(subframe, width=3)
41 self.__x.grid(row=0, column=1)
42 self.__x.bindtags(self.__x.bindtags() + ('Normalize', 'Update'))
43 self.__x.bind_class('Normalize', '<Key>', self.__normalize)
44 self.__x.bind_class('Update' , '<Key>', self.__maybeupdate)
128 redstr = self.__x.get() or '0'
143 x, y, z = self.__x, self.__y, self.__z
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
for_each_selectors.h 315 operator()(_It __x, _It __y)
316 { return (__comp(*__x, *__y)) ? __x : __y; }
329 operator()(_It __x, _It __y)
330 { return (__comp(*__x, *__y)) ? __y : __x; }
344 operator()(const _Result& __x, const _Addend& __y)
345 { return __binop(__x, __y); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
iterator_tracker.h 65 __iterator_tracker(const __iterator_tracker& __x)
66 : _M_current(__x._M_current), _M_ds(__x._M_ds) { }
73 _Sequence>::__type>& __x)
74 : _M_current(__x.base()), _M_ds(__x._M_get_sequence()) { }
123 operator=(const __iterator_tracker& __x)
125 _M_current = __x._M_current;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
unordered_set.h 140 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
142 { __x.swap(__y); }
148 _Alloc, __cache_hash_code>& __x,
151 { __x.swap(__y); }
255 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
257 { __x.swap(__y); }
261 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
263 { __x.swap(__y); }
random.h 71 __mod(_Tp __x)
72 { return _Mod<_Tp, __a, __c, __m, __m == 0>::__calc(__x); }
638 * generator engine @p __x into the output stream @p __os.
641 * @param __x A % mersenne_twister random number generator engine.
643 * @returns The output stream with the state of @p __x inserted or in
653 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x);
657 * generator engine @p __x from the input stream @p __is.
660 * @param __x A % mersenne_twister random number generator engine.
662 * @returns The input stream with the state of @p __x extracted or in
672 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x);
    [all...]
unordered_map.h 143 _Alloc, __cache_hash_code>& __x,
146 { __x.swap(__y); }
152 _Alloc, __cache_hash_code>& __x,
155 { __x.swap(__y); }
266 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
268 { __x.swap(__y); }
272 swap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
274 { __x.swap(__y); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
for_each_selectors.h 315 operator()(_It __x, _It __y)
316 { return (__comp(*__x, *__y)) ? __x : __y; }
329 operator()(_It __x, _It __y)
330 { return (__comp(*__x, *__y)) ? __y : __x; }
344 operator()(const _Result& __x, const _Addend& __y)
345 { return __binop(__x, __y); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
iterator_tracker.h 65 __iterator_tracker(const __iterator_tracker& __x)
66 : _M_current(__x._M_current), _M_ds(__x._M_ds) { }
73 _Sequence>::__type>& __x)
74 : _M_current(__x.base()), _M_ds(__x._M_get_sequence()) { }
123 operator=(const __iterator_tracker& __x)
125 _M_current = __x._M_current;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
unordered_set.h 140 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
142 { __x.swap(__y); }
148 _Alloc, __cache_hash_code>& __x,
151 { __x.swap(__y); }
255 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
257 { __x.swap(__y); }
261 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
263 { __x.swap(__y); }
random.h 71 __mod(_Tp __x)
72 { return _Mod<_Tp, __a, __c, __m, __m == 0>::__calc(__x); }
638 * generator engine @p __x into the output stream @p __os.
641 * @param __x A % mersenne_twister random number generator engine.
643 * @returns The output stream with the state of @p __x inserted or in
653 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x);
657 * generator engine @p __x from the input stream @p __is.
660 * @param __x A % mersenne_twister random number generator engine.
662 * @returns The input stream with the state of @p __x extracted or in
672 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiCdefs.h 317 #define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask))
318 #define __SHIFTIN(__x, __mask) ((__x) * __LOWEST_SET_BIT(__mask))
  /external/clang/test/CodeGen/
union.c 16 int f2( float __x ) {

Completed in 887 milliseconds

1 2 3 4 5 6 7 8 91011>>