Home
last modified time | relevance | path

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

12

/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/libcxx/include/experimental/
Doptional227 constexpr __optional_storage(const value_type& __v)
228 : __val_(__v),
232 constexpr __optional_storage(value_type&& __v)
233 : __val_(_VSTD::move(__v)),
278 constexpr __optional_storage(const value_type& __v)
279 : __val_(__v),
283 constexpr __optional_storage(value_type&& __v)
284 : __val_(_VSTD::move(__v)),
319 _LIBCPP_INLINE_VISIBILITY constexpr optional(const value_type& __v)
320 : __base(__v) {}
[all …]
Dany319 static void __create(any & __dest, _Up && __v)
321 ::new (static_cast<void*>(&__dest.__s.__buf)) _Tp(_VSTD::forward<_Up>(__v));
400 static void __create(any & __dest, _Up && __v)
406 ::new ((void*)__hold.get()) _Tp(_VSTD::forward<_Up>(__v));
463 any::any(_ValueType && __v) : __h(nullptr)
469 _HandlerType::__create(*this, _VSTD::forward<_ValueType>(__v));
474 any & any::operator=(_ValueType && __v)
479 any(_VSTD::forward<_ValueType>(__v)).swap(*this);
510 _ValueType any_cast(any const & __v)
518 _Tp * __tmp = any_cast<_Tp>(&__v);
[all …]
Ddynarray163 dynarray(size_type __c, const value_type& __v);
172 // dynarray(allocator_arg_t, const _Alloc& __alloc, size_type __c, const value_type& __v);
218 …nline _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __v) { fill_n(begin(), __size_, __v); }
233 dynarray<_Tp>::dynarray(size_type __c, const value_type& __v) : dynarray ()
238 ::new (__data) value_type (__v);
/external/libcxx/include/
Dvector785 void __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v);
786 … pointer __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v, pointer __p);
862 __RAII_IncreaseAnnotator(const vector &__v, size_type __n = 1)
863 : __commit(false), __v(__v), __old_size(__v.size() + __n) {
864 __v.__annotate_increase(__n);
869 __v.__annotate_shrink(__old_size);
872 const vector &__v;
886 …ctor<_Tp, _Allocator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v)
889 … __alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_);
890 _VSTD::swap(this->__begin_, __v.__begin_);
[all …]
Dvalarray395 begin(valarray<_Tp>& __v);
400 begin(const valarray<_Tp>& __v);
405 end(valarray<_Tp>& __v);
410 end(const valarray<_Tp>& __v);
808 valarray(const valarray& __v);
810 valarray(valarray&& __v) _NOEXCEPT;
822 valarray& operator=(const valarray& __v);
824 valarray& operator=(valarray&& __v) _NOEXCEPT;
835 valarray& operator=(const __val_expr<_ValExpr>& __v);
890 operator*= (const _Expr& __v);
[all …]
D__tree612 explicit __tree_node(const value_type& __v)
613 : __value_(__v) {}
962 pair<iterator, bool> __insert_unique(_Vp&& __v);
964 iterator __insert_unique(const_iterator __p, _Vp&& __v);
966 iterator __insert_multi(_Vp&& __v);
968 iterator __insert_multi(const_iterator __p, _Vp&& __v);
971 pair<iterator, bool> __insert_unique(const value_type& __v);
972 iterator __insert_unique(const_iterator __p, const value_type& __v);
973 iterator __insert_multi(const value_type& __v);
974 iterator __insert_multi(const_iterator __p, const value_type& __v);
[all …]
Dbitset172 explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
183 void operator&=(const __bitset& __v) _NOEXCEPT;
184 void operator|=(const __bitset& __v) _NOEXCEPT;
185 void operator^=(const __bitset& __v) _NOEXCEPT;
198 void __init(unsigned long long __v, false_type) _NOEXCEPT;
199 void __init(unsigned long long __v, true_type) _NOEXCEPT;
226 __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEPT
229 for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word)
230 __t[__i] = static_cast<__storage_type>(__v);
239 __bitset<_N_words, _Size>::__init(unsigned long long __v, true_type) _NOEXCEPT
[all …]
Dlocale720 ios_base::iostate& __err, bool& __v) const
722 return do_get(__b, __e, __iob, __err, __v);
727 ios_base::iostate& __err, long& __v) const
729 return do_get(__b, __e, __iob, __err, __v);
734 ios_base::iostate& __err, long long& __v) const
736 return do_get(__b, __e, __iob, __err, __v);
741 ios_base::iostate& __err, unsigned short& __v) const
743 return do_get(__b, __e, __iob, __err, __v);
748 ios_base::iostate& __err, unsigned int& __v) const
750 return do_get(__b, __e, __iob, __err, __v);
[all …]
Dforward_list559 forward_list(size_type __n, const value_type& __v);
560 forward_list(size_type __n, const value_type& __v, const allocator_type& __a);
606 void assign(size_type __n, const value_type& __v);
661 void push_front(value_type&& __v);
663 void push_front(const value_type& __v);
672 iterator insert_after(const_iterator __p, value_type&& __v);
674 iterator insert_after(const_iterator __p, const value_type& __v);
675 iterator insert_after(const_iterator __p, size_type __n, const value_type& __v);
703 void resize(size_type __n, const value_type& __v);
720 void remove(const value_type& __v);
[all …]
Dfunctional2282 size_t operator()(bool __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2290 size_t operator()(char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2298 size_t operator()(signed char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2306 size_t operator()(unsigned char __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2316 size_t operator()(char16_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2324 size_t operator()(char32_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2334 size_t operator()(wchar_t __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2342 size_t operator()(short __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2350 size_t operator()(unsigned short __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
2358 size_t operator()(int __v) const _NOEXCEPT {return static_cast<size_t>(__v);}
[all …]
Ddeque1192 deque(size_type __n, const value_type& __v);
1193 deque(size_type __n, const value_type& __v, const allocator_type& __a);
1228 void assign(size_type __n, const value_type& __v);
1280 void resize(size_type __n, const value_type& __v);
1296 void push_front(const value_type& __v);
1297 void push_back(const value_type& __v);
1304 void push_front(value_type&& __v);
1305 void push_back(value_type&& __v);
1306 iterator insert(const_iterator __p, value_type&& __v);
1308 iterator insert(const_iterator __p, const value_type& __v);
[all …]
Dqueue286 void push(const value_type& __v) {c.push_back(__v);}
289 void push(value_type&& __v) {c.push_back(_VSTD::move(__v));}
484 void push(const value_type& __v);
486 void push(value_type&& __v);
646 priority_queue<_Tp, _Container, _Compare>::push(const value_type& __v)
648 c.push_back(__v);
657 priority_queue<_Tp, _Container, _Compare>::push(value_type&& __v)
659 c.push_back(_VSTD::move(__v));
Dmap633 __value_type(const __value_type& __v)
634 : __cc(__v.__cc) {}
637 __value_type(__value_type& __v)
638 : __cc(__v.__cc) {}
641 __value_type(__value_type&& __v)
642 : __nc(std::move(__v.__nc)) {}
645 __value_type& operator=(const __value_type& __v)
646 {__nc = __v.__cc; return *this;}
649 __value_type& operator=(__value_type&& __v)
650 {__nc = std::move(__v.__nc); return *this;}
[all …]
Dset598 pair<iterator,bool> insert(const value_type& __v)
599 {return __tree_.__insert_unique(__v);}
602 pair<iterator,bool> insert(value_type&& __v)
603 {return __tree_.__insert_unique(_VSTD::move(__v));}
606 iterator insert(const_iterator __p, const value_type& __v)
607 {return __tree_.__insert_unique(__p, __v);}
610 iterator insert(const_iterator __p, value_type&& __v)
611 {return __tree_.__insert_unique(__p, _VSTD::move(__v));}
1007 iterator insert(const value_type& __v)
1008 {return __tree_.__insert_multi(__v);}
[all …]
Dstack194 void push(const value_type& __v) {c.push_back(__v);}
197 void push(value_type&& __v) {c.push_back(_VSTD::move(__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/fio/lib/
Dlfsr.c80 #define __LFSR_NEXT(__fl, __v) \ argument
81 __v = ((__v >> 1) | __fl->cached_bit) ^ \
82 (((__v & 1UL) - 1UL) & __fl->xormask);
/external/clang/test/CodeGen/
Dmips-constraint-regs.c13 int __s, __v = 17; in main() local
18 : "c" (__s), "I" (__v)); in main()
/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/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
/external/clang/lib/Headers/
Davxintrin.h752 __m256d __v; in _mm256_loadu_pd() member
754 return ((struct __loadu_pd*)__p)->__v; in _mm256_loadu_pd()
761 __m256 __v; in _mm256_loadu_ps() member
763 return ((struct __loadu_ps*)__p)->__v; in _mm256_loadu_ps()
776 __m256i __v; in _mm256_loadu_si256() member
778 return ((struct __loadu_si256*)__p)->__v; in _mm256_loadu_si256()
1222 __m128 __v; in _mm256_loadu2_m128() member
1225 __m256 __v256 = _mm256_castps128_ps256(((struct __loadu_ps*)__addr_lo)->__v); in _mm256_loadu2_m128()
1226 return _mm256_insertf128_ps(__v256, ((struct __loadu_ps*)__addr_hi)->__v, 1); in _mm256_loadu2_m128()
1233 __m128d __v; in _mm256_loadu2_m128d() member
[all …]
/external/speex/libspeex/
Dcb_search_sse.h41 __m128 __v; in _spx_mm_getr_ps() member
44 __u.__v = U; in _spx_mm_getr_ps()
/external/mesa3d/src/gallium/auxiliary/util/
Du_dynarray.h103 … util_dynarray_append(buf, type, v) do {type __v = (v); memcpy(util_dynarray_grow((buf), sizeof(ty…
/external/clang/test/SemaCXX/
Dcrashes.cpp97 void Write(const Variant& __v);
98 void Write(const InfallibleTArray& __v);

12