Home
last modified time | relevance | path

Searched refs:_base (Results 1 – 25 of 47) sorted by relevance

12

/third_party/boost/boost/numeric/ublas/tensor/
Dextents.hpp56 : _base{} in basic_extents()
69 : _base(b) in basic_extents()
85 : _base(std::move(b)) in basic_extents()
121 : _base(l._base) in basic_extents()
127 : _base(std::move(l._base)) in basic_extents()
140 std::swap(lhs._base , rhs._base ); in swap()
152 _base.size() != 0 && in is_scalar()
153 std::all_of(_base.begin(), _base.end(), in is_scalar()
163 if(_base.size() == 0){ in is_vector()
167 if(_base.size() == 1){ in is_vector()
[all …]
Dstrides.hpp72 : _base{} in basic_strides()
83 : _base(s.size(),1) in basic_strides()
101 _base[k] = _base[k-1] * s[k-1]; in basic_strides()
106 _base[k] = _base[k+1] * s[k+1]; in basic_strides()
107 _base[0] = _base[1] * s[1]; in basic_strides()
112 : _base(l._base) in basic_strides()
116 : _base(std::move(l._base)) in basic_strides()
120 : _base(l) in basic_strides()
124 : _base(std::move(l)) in basic_strides()
137 std::swap(lhs._base , rhs._base); in swap()
[all …]
Dmulti_index.hpp52 : _base{i(), is()... } in multi_index()
62 : _base(other._base) in multi_index()
68 this->_base = other._base; in operator =()
74 auto const& base() const { return _base; } in base()
75 constexpr auto size() const { return _base.size(); } in size()
76 constexpr auto at(std::size_t i) const { return _base.at(i); } in at()
77 constexpr auto operator[](std::size_t i) const { return _base.at(i); } in operator []()
80 std::array<std::size_t, N> _base; member in boost::numeric::ublas::multi_index
/third_party/boost/boost/random/
Dindependent_bits.hpp74 _base.seed(seed_arg); in BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR()
83 { _base.seed(seq); } in BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR()
86 independent_bits_engine(const base_type& base_arg) : _base(base_arg) {} in independent_bits_engine()
99 independent_bits_engine(It& first, It last) : _base(first, last) { } in independent_bits_engine()
105 void seed() { _base.seed(); } in seed()
113 { _base.seed(seed_arg); } in BOOST_RANDOM_DETAIL_ARITHMETIC_SEED()
121 { _base.seed(seq); } in BOOST_RANDOM_DETAIL_SEED_SEQ_SEED()
134 { _base.seed(first, last); } in seed()
143 detail::subtract<base_result_type>()((_base.max)(), (_base.min)()); in operator ()()
168 u = detail::subtract<base_result_type>()(_base(), (_base.min)()); in operator ()()
[all …]
/third_party/boost/boost/outcome/experimental/status-code/
Derrored_status_code.hpp50 using _base = status_code<DomainType>; typedef in errored_status_code
51 using _base::clear;
52 using _base::success;
56 if(_base::success()) in _check()
64 using typename _base::value_type;
66 using typename _base::string_ref;
81 …explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::v… in errored_status_code()
82 : _base(o) in errored_status_code()
87 explicit errored_status_code(_base &&o) noexcept(std::is_nothrow_move_constructible<_base>::value) in errored_status_code()
88 : _base(static_cast<_base &&>(o)) in errored_status_code()
[all …]
Dresult.hpp82 using _base = std::variant<BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE::error, detail::devoid<T>>; typedef in result
117 if(_base::index() == 0) in _check()
139 constexpr _base &_internal() noexcept { return *this; } in _internal()
140 constexpr const _base &_internal() const noexcept { return *this; } in _internal()
158 : _base(std::move(o))
164 : _base(o)
170 : _base(std::move(o))
176 : _base(o)
181 using _base::_base;
185 : _base(in_place_type<detail::void_>) in result()
[all …]
Dcom_code.hpp65 using _base = status_code_domain; typedef in _com_code_domain
68 static _base::string_ref _make_string_ref(HRESULT c, IErrorInfo *perrinfo = nullptr) noexcept in _make_string_ref()
77 return _base::string_ref("failed to get message from system"); in _make_string_ref()
84 return _base::string_ref("failed to get message from system"); in _make_string_ref()
95 return _base::atomic_refcounted_string_ref(p, end - p); in _make_string_ref()
103 return _base::string_ref("failed to get message from system"); in _make_string_ref()
110 return _base::string_ref("failed to get message from system"); in _make_string_ref()
119 return _base::atomic_refcounted_string_ref(p, end - p); in _make_string_ref()
126 using _base::string_ref;
130 …constexpr explicit _com_code_domain(typename _base::unique_id_type id = 0xdc8275428b4effac) noexce… in _com_code_domain()
Dnt_code.hpp72 using _base = status_code_domain; typedef in _nt_code_domain
98 static _base::string_ref _make_string_ref(win32::NTSTATUS c) noexcept in _make_string_ref()
107 return _base::string_ref("failed to get message from system"); in _make_string_ref()
114 return _base::string_ref("failed to get message from system"); in _make_string_ref()
125 return _base::atomic_refcounted_string_ref(p, end - p); in _make_string_ref()
133 return _base::string_ref("failed to get message from system"); in _make_string_ref()
140 using _base::string_ref;
144 …constexpr explicit _nt_code_domain(typename _base::unique_id_type id = 0x93f3b4487e4af25b) noexcept in _nt_code_domain()
145 : _base(id) in _nt_code_domain()
Dwin32_code.hpp90 using _base = status_code_domain; typedef in _win32_code_domain
102 static _base::string_ref _make_string_ref(win32::DWORD c) noexcept in _make_string_ref()
110 return _base::string_ref("failed to get message from system"); in _make_string_ref()
117 return _base::string_ref("failed to get message from system"); in _make_string_ref()
128 return _base::atomic_refcounted_string_ref(p, end - p); in _make_string_ref()
136 return _base::string_ref("failed to get message from system"); in _make_string_ref()
143 using _base::string_ref;
147 …constexpr explicit _win32_code_domain(typename _base::unique_id_type id = 0x8cd18ee72d680f1b) noex… in _win32_code_domain()
148 : _base(id) in _win32_code_domain()
Dposix_code.hpp67 using _base = status_code_domain; typedef in _posix_code_domain
69 static _base::string_ref _make_string_ref(int c) noexcept in _make_string_ref()
88 return _base::string_ref("failed to get message from system"); in _make_string_ref()
91 return _base::atomic_refcounted_string_ref(p, length); in _make_string_ref()
97 using _base::string_ref;
100 …constexpr explicit _posix_code_domain(typename _base::unique_id_type id = 0xa59a56fe5f310933) noex… in _posix_code_domain()
101 : _base(id) in _posix_code_domain()
Dstd_error_code.hpp71 using _base = status_code_domain; typedef in _std_error_code_domain
77 static _base::string_ref _make_string_ref(_error_code_type c) noexcept in _make_string_ref()
85 return _base::string_ref("failed to allocate message"); in _make_string_ref()
88 return _base::atomic_refcounted_string_ref(p, msg.size()); in _make_string_ref()
92 return _base::string_ref("failed to allocate message"); in _make_string_ref()
99 using _base::string_ref;
110 : _base(0x223a160d20de97b4 ^ reinterpret_cast<_base::unique_id_type>(&category)) in _std_error_code_domain()
Dgetaddrinfo_code.hpp58 using _base = status_code_domain; typedef in _getaddrinfo_code_domain
63 using _base::string_ref;
66 …constexpr explicit _getaddrinfo_code_domain(typename _base::unique_id_type id = 0x5b24b2de470ff7b6… in _getaddrinfo_code_domain()
67 : _base(id) in _getaddrinfo_code_domain()
Dstatus_code_ptr.hpp43 using _base = status_code_domain; typedef in detail::indirecting_domain
47 using _base::string_ref;
50 …: _base(0xc44f7bdeb2cc50e9 ^ typename StatusCode::domain_type().id() /* unique-ish based on domain… in indirecting_domain()
/third_party/python/Lib/concurrent/futures/
Dthread.py8 from concurrent.futures import _base
74 _base.LOGGER.critical('Exception in initializer:', exc_info=True)
109 _base.LOGGER.critical('Exception in worker', exc_info=True)
112 class BrokenThreadPool(_base.BrokenExecutor):
118 class ThreadPoolExecutor(_base.Executor):
172 f = _base.Future()
178 submit.__doc__ = _base.Executor.submit.__doc__
236 shutdown.__doc__ = _base.Executor.shutdown.__doc__
Dprocess.py49 from concurrent.futures import _base
232 _base.LOGGER.critical('Exception in initializer:', exc_info=True)
573 class BrokenProcessPool(_base.BrokenExecutor):
580 class ProcessPoolExecutor(_base.Executor):
696 f = _base.Future()
708 submit.__doc__ = _base.Executor.submit.__doc__
759 shutdown.__doc__ = _base.Executor.shutdown.__doc__
D__init__.py8 from concurrent.futures._base import (FIRST_COMPLETED,
/third_party/boost/boost/outcome/experimental/
Dstatus_outcome.hpp85 using _base = base; typedef
104 …template <class Impl> static constexpr void wide_error_check(Impl &&self) { _base::narrow_error_ch… in wide_error_check()
105 …template <class Impl> static constexpr void wide_exception_check(Impl &&self) { _base::narrow_exce… in wide_exception_check()
/third_party/e2fsprogs/lib/et/
Dvfprintf.c38 iop->_ptr = iop->_base = localbuf;
42 iop->_base = NULL;
/third_party/python/Lib/zoneinfo/
D_tzpath.py79 def _validate_tzfile_path(path, _base=_TEST_PATH): argument
95 resolved = os.path.normpath(os.path.join(_base, new_path))
96 if not resolved.startswith(_base):
/third_party/lwip/src/include/lwip/
Dmemp.h96 …LWIP_DECLARE_MEMORY_ALIGNED(memp_memory_ ## name ## _base, ((num) * (MEMP_SIZE + MEMP_ALIGN_SIZE(s…
107 memp_memory_ ## name ## _base, \
/third_party/boost/libs/outcome/test/tests/
Dexperimental-core-result-status.cpp69 using _base = BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE::status_code_domain; typedef in _payload_domain
73 using string_ref = _base::string_ref;
76 constexpr _payload_domain() noexcept : _base(0x7b782c8f935e34ba) {} in _payload_domain()
80 …virtual _base::string_ref name() const noexcept override final { return string_ref("payload domain… in name()
103 …virtual _base::string_ref _do_message(const BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE::status_code<voi… in _do_message()
/third_party/boost/boost/accumulators/numeric/
Dfunctional.hpp101 struct Name ## _base \
112 : Name ## _base<Arg, void> \
138 struct Name ## _base \
151 : Name ## _base<Left, Right, void> \
Dfunctional_fwd.hpp68 struct Name ## _base; \
89 struct Name ## _base; \
/third_party/boost/libs/accumulators/doc/
DJamfile.v2181 … template<class Left,class Right,class EnableIf=void> struct a ## _base \\
188 struct a : a ## _base<Left,Right,void> {}; } \\
197 … template<class Arg,class EnableIf=void> struct a ## _base \\
202 struct a : a ## _base<Arg,void> {}; } \\
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DYAMLTraits.h1637 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type) \
1640 _type(const _base v) : value(v) {} \
1643 _type &operator=(const _base &rhs) { value = rhs; return *this; } \
1644 operator const _base & () const { return value; } \
1646 bool operator==(const _base &rhs) const { return value == rhs; } \
1648 _base value; \
1649 using BaseType = _base; \

12