Home
last modified time | relevance | path

Searched refs:__v (Results 1 – 25 of 69) sorted by relevance

123

/external/libcxx/include/
Dcompare91 …_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(weak_equality __v, _CmpUnspecifiedParam…
92 …LINE_VISIBILITY friend constexpr bool operator==(_CmpUnspecifiedParam, weak_equality __v) noexcept;
93 …_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator!=(weak_equality __v, _CmpUnspecifiedParam…
94 …LINE_VISIBILITY friend constexpr bool operator!=(_CmpUnspecifiedParam, weak_equality __v) noexcept;
97 …_LIBCPP_INLINE_VISIBILITY friend constexpr weak_equality operator<=>(weak_equality __v, _CmpUnspec…
98 …ILITY friend constexpr weak_equality operator<=>(_CmpUnspecifiedParam, weak_equality __v) noexcept;
109 inline constexpr bool operator==(weak_equality __v, _CmpUnspecifiedParam) noexcept {
110 return __v.__value_ == _EqResult::__zero;
114 inline constexpr bool operator==(_CmpUnspecifiedParam, weak_equality __v) noexcept {
115 return __v.__value_ == _EqResult::__zero;
[all …]
Dvalarray396 begin(valarray<_Tp>& __v);
401 begin(const valarray<_Tp>& __v);
406 end(valarray<_Tp>& __v);
411 end(const valarray<_Tp>& __v);
811 valarray(const valarray& __v);
814 valarray(valarray&& __v) _NOEXCEPT;
825 valarray& operator=(const valarray& __v);
828 valarray& operator=(valarray&& __v) _NOEXCEPT;
844 valarray& operator=(const __val_expr<_ValExpr>& __v);
924 operator*= (const _Expr& __v);
[all …]
Dvector822 void __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v);
823 … pointer __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v, pointer __p);
894 __RAII_IncreaseAnnotator(const vector &__v, size_type __n = 1)
895 : __commit(false), __v(__v), __old_size(__v.size() + __n) {
896 __v.__annotate_increase(__n);
901 __v.__annotate_shrink(__old_size);
904 const vector &__v;
935 …ctor<_Tp, _Allocator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v)
938 … __alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_);
939 _VSTD::swap(this->__begin_, __v.__begin_);
[all …]
D__tree552 static key_type const& __get_key(_Tp const& __v) {
553 return __v;
556 static __container_value_type const& __get_value(__node_value_type const& __v) {
557 return __v;
565 static __container_value_type&& __move(__node_value_type& __v) {
566 return _VSTD::move(__v);
615 static pair<key_type&&, mapped_type&&> __move(__node_value_type& __v) {
616 return __v.__move();
1259 pair<iterator, bool> __insert_unique(const __container_value_type& __v) {
1260 return __emplace_unique_key_args(_NodeTypes::__get_key(__v), __v);
[all …]
Dutility1055 static _Size __hash_len_16(_Size __u, _Size __v)
1059 _Size __a = (__u ^ __v) * __mul;
1061 _Size __b = (__v ^ __a) * __mul;
1182 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
1189 __x = __rotate(__x + __y + __v.first + __loadword<_Size>(__s + 8), 37) * __k1;
1190 __y = __rotate(__y + __v.second + __loadword<_Size>(__s + 48), 42) * __k1;
1192 __y += __v.first + __loadword<_Size>(__s + 40);
1194 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first);
1202 __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
1203 __hash_len_16(__v.second, __w.second) + __x);
[all …]
Doptional709 constexpr optional(_Up&& __v)
710 : __base(in_place, _VSTD::forward<_Up>(__v)) {}
716 constexpr explicit optional(_Up&& __v)
717 : __base(in_place, _VSTD::forward<_Up>(__v)) {}
724 optional(const optional<_Up>& __v)
726 this->__construct_from(__v);
732 explicit optional(const optional<_Up>& __v)
734 this->__construct_from(__v);
742 optional(optional<_Up>&& __v)
744 this->__construct_from(_VSTD::move(__v));
[all …]
Dbitset173 explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
185 void operator&=(const __bitset& __v) _NOEXCEPT;
187 void operator|=(const __bitset& __v) _NOEXCEPT;
189 void operator^=(const __bitset& __v) _NOEXCEPT;
203 void __init(unsigned long long __v, false_type) _NOEXCEPT;
205 void __init(unsigned long long __v, true_type) _NOEXCEPT;
235 __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEPT
239 …for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word, __sz -= __b…
241 __t[__i] = static_cast<__storage_type>(__v) & ( 1ULL << __sz ) - 1;
243 __t[__i] = static_cast<__storage_type>(__v);
[all …]
Dvariant403 static constexpr auto&& __get_alt(_Vp&& __v, in_place_index_t<0>) {
404 return _VSTD::forward<_Vp>(__v).__head;
409 static constexpr auto&& __get_alt(_Vp&& __v, in_place_index_t<_Ip>) {
410 return __get_alt(_VSTD::forward<_Vp>(__v).__tail, in_place_index<_Ip - 1>);
417 static constexpr auto&& __get_alt(_Vp&& __v) {
418 return __union::__get_alt(_VSTD::forward<_Vp>(__v).__data,
426 static constexpr auto&& __get_alt(_Vp&& __v) {
427 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
1313 constexpr bool __holds_alternative(const variant<_Types...>& __v) noexcept {
1314 return __v.index() == _Ip;
[all …]
Dlocale583 ios_base::iostate& __err, bool& __v) const
585 return do_get(__b, __e, __iob, __err, __v);
590 ios_base::iostate& __err, long& __v) const
592 return do_get(__b, __e, __iob, __err, __v);
597 ios_base::iostate& __err, long long& __v) const
599 return do_get(__b, __e, __iob, __err, __v);
604 ios_base::iostate& __err, unsigned short& __v) const
606 return do_get(__b, __e, __iob, __err, __v);
611 ios_base::iostate& __err, unsigned int& __v) const
613 return do_get(__b, __e, __iob, __err, __v);
[all …]
Dforward_list662 forward_list(size_type __n, const value_type& __v);
663 forward_list(size_type __n, const value_type& __v, const allocator_type& __a);
712 void assign(size_type __n, const value_type& __v);
769 void push_front(value_type&& __v);
771 void push_front(const value_type& __v);
779 iterator insert_after(const_iterator __p, value_type&& __v);
783 iterator insert_after(const_iterator __p, const value_type& __v);
784 iterator insert_after(const_iterator __p, size_type __n, const value_type& __v);
808 void resize(size_type __n, const value_type& __v);
825 void remove(const value_type& __v);
[all …]
/external/mesa3d/src/mesa/drivers/x11/
Dxmesa_x.h77 #define GET_COLORMAP_SIZE(__v) __v->visinfo->colormap_size argument
78 #define GET_REDMASK(__v) __v->mesa_visual.redMask argument
79 #define GET_GREENMASK(__v) __v->mesa_visual.greenMask argument
80 #define GET_BLUEMASK(__v) __v->mesa_visual.blueMask argument
81 #define GET_VISUAL_DEPTH(__v) __v->visinfo->depth argument
82 #define GET_BLACK_PIXEL(__v) BlackPixel(__v->display, __v->screen) argument
83 #define CHECK_BYTE_ORDER(__v) host_byte_order()==ImageByteOrder(__v->display) argument
/external/u-boot/arch/arm/include/asm/
Dio.h115 #define writeb(v,c) ({ u8 __v = v; __iowmb(); __arch_putb(__v,c); __v; })
116 #define writew(v,c) ({ u16 __v = v; __iowmb(); __arch_putw(__v,c); __v; })
117 #define writel(v,c) ({ u32 __v = v; __iowmb(); __arch_putl(__v,c); __v; })
118 #define writeq(v,c) ({ u64 __v = v; __iowmb(); __arch_putq(__v,c); __v; })
120 #define readb(c) ({ u8 __v = __arch_getb(c); __iormb(); __v; })
121 #define readw(c) ({ u16 __v = __arch_getw(c); __iormb(); __v; })
122 #define readl(c) ({ u32 __v = __arch_getl(c); __iormb(); __v; })
123 #define readq(c) ({ u64 __v = __arch_getq(c); __iormb(); __v; })
231 #define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
232 #define inw(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(__io(p))); __v; })
[all …]
/external/openssh/
Dsshbuf.h278 const u_int64_t __v = (v); \
279 ((u_char *)(p))[0] = (__v >> 56) & 0xff; \
280 ((u_char *)(p))[1] = (__v >> 48) & 0xff; \
281 ((u_char *)(p))[2] = (__v >> 40) & 0xff; \
282 ((u_char *)(p))[3] = (__v >> 32) & 0xff; \
283 ((u_char *)(p))[4] = (__v >> 24) & 0xff; \
284 ((u_char *)(p))[5] = (__v >> 16) & 0xff; \
285 ((u_char *)(p))[6] = (__v >> 8) & 0xff; \
286 ((u_char *)(p))[7] = __v & 0xff; \
290 const u_int32_t __v = (v); \
[all …]
/external/u-boot/arch/sh/include/asm/
Dio.h88 #define inb(p) ({ unsigned int __v = __raw_readb(p); __v; })
89 #define inw(p) ({ unsigned int __v = __le16_to_cpu(__raw_readw(p)); __v; })
90 #define inl(p) ({ unsigned int __v = __le32_to_cpu(__raw_readl(p)); __v; })
146 #define readb(c) ({ unsigned int __v = __raw_readb(__mem_pci(c)); __v; })
148 ({ unsigned int __v = le16_to_cpu(__raw_readw(__mem_pci(c))); __v; })
150 ({ unsigned int __v = le32_to_cpu(__raw_readl(__mem_pci(c))); __v; })
/external/clang/test/PCH/
Dchain-staticvar-instantiation.cpp13 template <class _Tp, _Tp __v>
16 static const _Tp value = __v;
19 template <class _Tp, _Tp __v>
20 const _Tp TS<_Tp, __v>::value;
/external/u-boot/arch/xtensa/include/asm/
Dio.h36 ({ unsigned char __v = (*(volatile unsigned char *)(addr)); __v; })
38 ({ unsigned short __v = (*(volatile unsigned short *)(addr)); __v; })
40 ({ unsigned int __v = (*(volatile unsigned int *)(addr)); __v; })
/external/u-boot/arch/microblaze/include/asm/
Dio.h24 ({ unsigned char __v = (*(volatile unsigned char *) (addr)); __v; })
26 ({ unsigned short __v = (*(volatile unsigned short *) (addr)); __v; })
28 ({ unsigned int __v = (*(volatile unsigned int *) (addr)); __v; })
/external/u-boot/arch/nds32/include/asm/
Dio.h247 #define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
248 #define inw(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(__io(p))); __v; })
249 #define inl(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(__io(p))); __v; })
363 #define readb(c) ({ unsigned int __v = \
364 __raw_readb(__mem_pci(c)); __v; })
365 #define readw(c) ({ unsigned int __v = \
366 le16_to_cpu(__raw_readw(__mem_pci(c))); __v; })
367 #define readl(c) ({ unsigned int __v = \
368 le32_to_cpu(__raw_readl(__mem_pci(c))); __v; })
/external/u-boot/arch/riscv/include/asm/
Dio.h265 #define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
266 #define inw(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(__io(p))); __v; })
267 #define inl(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(__io(p))); __v; })
400 #define readb(c) ({ unsigned int __v = \
401 __raw_readb(__mem_pci(c)); __v; })
402 #define readw(c) ({ unsigned int __v = \
403 le16_to_cpu(__raw_readw(__mem_pci(c))); __v; })
404 #define readl(c) ({ unsigned int __v = \
405 le32_to_cpu(__raw_readl(__mem_pci(c))); __v; })
/external/kmod/shared/
Dutil.h52 typeof(*(ptr)) __v; \
54 __p->__v; \
60 typeof(*(ptr)) __v; \
62 __p->__v = (val); \
/external/u-boot/arch/arc/include/asm/
Dio.h198 #define readb(c) ({ u8 __v = readb_relaxed(c); __iormb(); __v; })
199 #define readw(c) ({ u16 __v = readw_relaxed(c); __iormb(); __v; })
200 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(); __v; })
/external/mesa3d/src/util/
Du_dynarray.h134 … util_dynarray_append(buf, type, v) do {type __v = (v); memcpy(util_dynarray_grow((buf), sizeof(ty…
153 type __v = *util_dynarray_element((buf), type, (i)); \
154 if (v == __v) { \
/external/blktrace/btt/
Diostat.c39 __u64 __v = (val); \
40 (dip)->stats. fld += __v; \
41 (dip)->all_stats. fld += __v; \
46 __u64 __v = (val); \
47 (dip)->stats. fld -= __v; \
48 (dip)->all_stats. fld -= __v; \
/external/clang/test/CodeGen/
Dmips-constraint-regs.c13 int __s, __v = 17; in main() local
18 : "c" (__s), "I" (__v)); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dpr18846.ll34 %__v.i4158 = bitcast float* %add.ptr162 to <8 x float>*
35 %5 = load <8 x float>, <8 x float>* %__v.i4158, align 16, !tbaa !5
38 %__v.i4162 = bitcast float* %add.ptr183 to <8 x float>*
39 %6 = load <8 x float>, <8 x float>* %__v.i4162, align 16, !tbaa !5
42 %__v.i4167 = bitcast float* %add.ptr225 to <8 x float>*
43 %7 = load <8 x float>, <8 x float>* %__v.i4167, align 4, !tbaa !5
47 %__v.i4171 = bitcast float* %add.ptr267 to <8 x float>*
48 %9 = load <8 x float>, <8 x float>* %__v.i4171, align 4, !tbaa !5

123