Home
last modified time | relevance | path

Searched refs:_p (Results 1 – 25 of 178) sorted by relevance

12345678

/third_party/boost/boost/random/
Dbernoulli_distribution.hpp56 : _p(p_arg) in param_type()
58 BOOST_ASSERT(_p >= 0); in param_type()
59 BOOST_ASSERT(_p <= 1); in param_type()
63 RealType p() const { return _p; } in p()
68 os << parm._p; in BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR()
75 is >> parm._p; in BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR()
81 { return lhs._p == rhs._p; } in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR()
87 RealType _p; member in boost::random::bernoulli_distribution::param_type
97 : _p(p_arg) in bernoulli_distribution()
99 BOOST_ASSERT(_p >= 0); in bernoulli_distribution()
[all …]
Dgeometric_distribution.hpp61 : _p(p_arg) in param_type()
63 BOOST_ASSERT(RealType(0) < _p && _p < RealType(1)); in param_type()
67 RealType p() const { return _p; } in p()
72 os << parm._p; in BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR()
82 parm._p = p_in; in BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR()
92 { return lhs._p == rhs._p; } in BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR()
99 RealType _p; member in boost::random::geometric_distribution::param_type
108 : _p(p_arg) in geometric_distribution()
110 BOOST_ASSERT(RealType(0) < _p && _p < RealType(1)); in geometric_distribution()
116 : _p(parm.p()) in geometric_distribution()
[all …]
Dnegative_binomial_distribution.hpp52 : _k(k_arg), _p(p_arg) in param_type()
57 RealType p() const { return _p; } in p()
65 os << parm._p << " " << parm._k; in operator <<()
74 is >> parm._p >> std::ws >> parm._k; in operator >>()
81 return lhs._k == rhs._k && lhs._p == rhs._p; in operator ==()
90 RealType _p; member in boost::random::negative_binomial_distribution::param_type
101 : _k(k_arg), _p(p_arg) in negative_binomial_distribution()
109 : _k(parm.k()), _p(parm.p()) in negative_binomial_distribution()
119 gamma_distribution<RealType> gamma(_k, (1-_p)/_p); in operator ()()
137 RealType p() const { return _p; } in p()
[all …]
Dbinomial_distribution.hpp83 : _t(t_arg), _p(p_arg) in param_type()
88 RealType p() const { return _p; } in p()
96 os << parm._p << " " << parm._t; in operator <<()
105 is >> parm._p >> std::ws >> parm._t; in operator >>()
112 return lhs._t == rhs._t && lhs._p == rhs._p; in operator ==()
121 RealType _p; member in boost::random::binomial_distribution::param_type
132 : _t(t_arg), _p(p_arg) in binomial_distribution()
142 : _t(parm.t()), _p(parm.p()) in binomial_distribution()
155 if(0.5 < _p) { in operator ()()
156 return _t - invert(_t, 1-_p, urng); in operator ()()
[all …]
/third_party/abseil-cpp/absl/base/internal/
Dunaligned_access.h92 #define ABSL_INTERNAL_UNALIGNED_LOAD16(_p) \ argument
93 (absl::base_internal::UnalignedLoad16(_p))
94 #define ABSL_INTERNAL_UNALIGNED_LOAD32(_p) \ argument
95 (absl::base_internal::UnalignedLoad32(_p))
96 #define ABSL_INTERNAL_UNALIGNED_LOAD64(_p) \ argument
97 (absl::base_internal::UnalignedLoad64(_p))
99 #define ABSL_INTERNAL_UNALIGNED_STORE16(_p, _val) \ argument
100 (absl::base_internal::UnalignedStore16(_p, _val))
101 #define ABSL_INTERNAL_UNALIGNED_STORE32(_p, _val) \ argument
102 (absl::base_internal::UnalignedStore32(_p, _val))
[all …]
/third_party/boost/boost/signals2/detail/
Dforeign_ptr.hpp71 foreign_shared_ptr_impl(const FSP &p): _p(p) in foreign_shared_ptr_impl()
78 FSP _p; member in boost::signals2::detail::foreign_shared_ptr_impl
85 _p(0) in foreign_void_shared_ptr()
88 _p(other._p->clone()) in foreign_void_shared_ptr()
92 _p(new foreign_shared_ptr_impl<FSP>(fsp)) in foreign_void_shared_ptr()
96 delete _p; in ~foreign_void_shared_ptr()
106 boost::swap(_p, other._p); in swap()
109 foreign_shared_ptr_impl_base *_p; member in boost::signals2::detail::foreign_void_shared_ptr
124 foreign_weak_ptr_impl(const FWP &p): _p(p) in foreign_weak_ptr_impl()
128 return foreign_void_shared_ptr(_p.lock()); in lock()
[all …]
/third_party/toybox/tests/
Dlsattr.test11 _p=$PWD
16 testing "file_path" "lsattr $_p/file" "$_A $_p/file\n" "" ""
18 testing "-R file_path" "lsattr -R $_p/file" "$_A $_p/file\n" "" ""
20 testing "-a file_path" "lsattr -a $_p/file" "$_A $_p/file\n" "" ""
22 testing "-d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
24 testing "-d file_path" "lsattr -d $_p/file" "$_A $_p/file\n" "" ""
30 testing "-v file_path" "chattr -v $_v * && lsattr -v $_p/file" \
31 "$_v $_A $_p/file\n" "" ""
/third_party/boost/boost/gil/
Dposition_iterator.hpp46 …position_iterator(const point_t& p, const point_t& step, const Deref& d) : _p(p), _step(step), _d(… in position_iterator()
48 position_iterator(const position_iterator& p) : _p(p._p), _step(p._step), _d(p._d) {} in position_iterator()
49 …template <typename D> position_iterator(const position_iterator<D,Dim>& p) : _p(p._p), _step(p._st… in position_iterator()
50 …position_iterator& operator=(const position_iterator& p) { _p=p._p; _d=p._d; _step=p._step; return… in operator =()
52 const point_t& pos() const { return _p; } in pos()
59 …reference operator[](difference_type d) const { point_t p=_p; p[Dim]+=d*_step[Dim]; return _d(p); } in operator []()
62 point_t _p, _step; member
67 reference dereference() const { return _d(_p); } in dereference()
68 void increment() { _p[Dim]+=_step[Dim]; } in increment()
69 void decrement() { _p[Dim]-=_step[Dim]; } in decrement()
[all …]
Diterator_from_2d.hpp67 …bool is_1d_traversable() const { return _p.is_1d_traversable(width()); } // is there … in is_1d_traversable()
68 x_iterator& x() { return _p.x(); } in x()
71 …d::ptrdiff_t width, std::ptrdiff_t x=0, std::ptrdiff_t y=0) : _coords(x,y), _width(width), _p(p) {} in iterator_from_2d()
72 …ator_from_2d(const iterator_from_2d& pit) : _coords(pit._coords), _width(pit._width), _p(pit._p) {} in iterator_from_2d()
73 …from_2d(const iterator_from_2d<Loc>& pit) : _coords(pit._coords), _width(pit._width), _p(pit._p) {} in iterator_from_2d()
79 reference dereference() const { return *_p; } in dereference()
82 ++_p.x(); in increment()
86 _p+=point_t(-_width,1); in increment()
91 --_p.x(); in decrement()
95 _p+=point_t(_width,-1); in decrement()
[all …]
Dlocator.hpp255 memory_based_2d_locator(const StepIterator& yit) : _p(yit) {} in memory_based_2d_locator()
256 …based_2d_locator(const memory_based_2d_locator<SI>& loc, coord_t y_step) : _p(loc.x(), loc.row_siz… in memory_based_2d_locator()
258 : _p(make_step_iterator(loc.x(),(transpose ? loc.row_size() : loc.pixel_size())*x_step), in memory_based_2d_locator()
261 memory_based_2d_locator(x_iterator xit, std::ptrdiff_t row_bytes) : _p(xit,row_bytes) {} in memory_based_2d_locator()
262 … template <typename X> memory_based_2d_locator(const memory_based_2d_locator<X>& pl) : _p(pl._p) {} in memory_based_2d_locator()
263 memory_based_2d_locator(const memory_based_2d_locator& pl) : _p(pl._p) {} in memory_based_2d_locator()
266 bool operator==(const this_t& p) const { return _p==p._p; } in operator ==()
268 x_iterator const& x() const { return _p.base(); } in x()
269 y_iterator const& y() const { return _p; } in y()
270 x_iterator& x() { return _p.base(); } in x()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dunaligned_access.h66 #define ABSL_INTERNAL_UNALIGNED_LOAD16(_p) \ argument
67 (absl::base_internal::UnalignedLoad16(_p))
68 #define ABSL_INTERNAL_UNALIGNED_LOAD32(_p) \ argument
69 (absl::base_internal::UnalignedLoad32(_p))
70 #define ABSL_INTERNAL_UNALIGNED_LOAD64(_p) \ argument
71 (absl::base_internal::UnalignedLoad64(_p))
73 #define ABSL_INTERNAL_UNALIGNED_STORE16(_p, _val) \ argument
74 (absl::base_internal::UnalignedStore16(_p, _val))
75 #define ABSL_INTERNAL_UNALIGNED_STORE32(_p, _val) \ argument
76 (absl::base_internal::UnalignedStore32(_p, _val))
[all …]
/third_party/e2fsprogs/lib/
DMakefile.profile1 all:: $(LIBRARY)_p.a
9 $(RM) -f $(LIBRARY)_p.a ../$(LIBRARY)_p.a
11 $(LIBRARY)_p.a: $(OBJS)
20 install:: $(LIBRARY)_p.a installdirs
22 $(Q) $(INSTALL_DATA) $(LIBRARY)_p.a $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
23 -$(Q) $(RANLIB) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
24 $(Q) $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
27 $(RM) -f $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
/third_party/boost/libs/yap/test/
Dsupplied_transforms.cpp18 auto expr_in = 1_p * 2_p; in test_main()
27 constexpr auto cexpr_out = yap::transform(1_p,cxform); in test_main()
37 auto expr_in = 1_p * 2_p; in test_main()
45 constexpr auto cresult = yap::transform(1_p,cxform); in test_main()
54 auto expr_in = 1_p * 2_p; in test_main()
61 constexpr auto cexpr_out = yap::replace_placeholders(1_p,8); in test_main()
/third_party/boost/libs/yap/example/
Dcalc2b.cpp17 std::cout << make_expression_function(1_p + 2.0)(3.0) << std::endl; in main()
20 std::cout << make_expression_function(1_p * 2_p)(3.0, 2.0) << std::endl; in main()
23 std::cout << make_expression_function((1_p - 2_p) / 2_p)(3.0, 2.0) << std::endl; in main()
Dcalc1.cpp17 std::cout << evaluate( 1_p + 2.0, 3.0 ) << std::endl; in main()
20 std::cout << evaluate( 1_p * 2_p, 3.0, 2.0 ) << std::endl; in main()
23 std::cout << evaluate( (1_p - 2_p) / 2_p, 3.0, 2.0 ) << std::endl; in main()
Dcalc2a.cpp16 auto expr_1 = 1_p + 2.0; in main()
22 auto expr_2 = 1_p * 2_p; in main()
28 auto expr_3 = (1_p - 2_p) / 2_p; in main()
Dcalc3.cpp59 auto expr_1 = 1_p + 2.0; in main()
67 auto expr_2 = 1_p * 2_p; in main()
75 auto expr_3 = (1_p - 2_p) / 2_p; in main()
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/
D712.patch39 _p(2,'%s /* %s */ = {', node.targetid, name)
40 _p(3,'isa = PBXNativeTarget;')
41_p(3,'buildConfigurationList = %s /* Build configuration list for PBXNativeTarget "%s" */;', node.…
42 _p(3,'buildPhases = (')
45 _p(4,'9607AE1010C857E500CD1376 /* Prebuild */,')
47 _p(4,'%s /* Resources */,', node.resstageid)
48 _p(4,'%s /* Sources */,', node.sourcesid)
51 _p(4,'9607AE3510C85E7E00CD1376 /* Prelink */,')
53 _p(4,'%s /* Frameworks */,', node.fxstageid)
56 _p(4,'9607AE3710C85E8F00CD1376 /* Postbuild */,')
[all …]
/third_party/python/Objects/stringlib/
Dcodecs.h45 STRINGLIB_CHAR *_p = p; in STRINGLIB() local
54 _p[0] = (STRINGLIB_CHAR)(value & 0xFFu); in STRINGLIB()
55 _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu); in STRINGLIB()
56 _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu); in STRINGLIB()
57 _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu); in STRINGLIB()
59 _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu); in STRINGLIB()
60 _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu); in STRINGLIB()
61 _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu); in STRINGLIB()
62 _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu); in STRINGLIB()
66 _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu); in STRINGLIB()
[all …]
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsClasses.types66 * @param {U} _p
68 set f1(_p) {}
70 >_p : U
81 * @param {U} _p
83 set f3(_p) {}
85 >_p : U
122 * @param {string} _p
124 static set s1(_p) {}
126 >_p : string
136 * @param {string} _p
[all …]
DjsDeclarationsClasses.symbols61 * @param {U} _p
63 set f1(_p) {}
65 >_p : Symbol(_p, Decl(index.js, 44, 11))
74 * @param {U} _p
76 set f3(_p) {}
78 >_p : Symbol(_p, Decl(index.js, 54, 11))
113 * @param {string} _p
115 static set s1(_p) {}
117 >_p : Symbol(_p, Decl(index.js, 85, 18))
126 * @param {string} _p
[all …]
DjsDeclarationsComputedNames.js25 constructor(_p = InnerSym) { argument
57 function MyClass(_p) { argument
58 if (_p === void 0) { _p = InnerSym; }
88 constructor(_p?: typeof TopLevelSym | typeof InnerSym);
/third_party/protobuf/src/google/protobuf/stubs/
Dport.h183 #define GOOGLE_UNALIGNED_LOAD16(_p) (*reinterpret_cast<const uint16 *>(_p)) argument
184 #define GOOGLE_UNALIGNED_LOAD32(_p) (*reinterpret_cast<const uint32 *>(_p)) argument
185 #define GOOGLE_UNALIGNED_LOAD64(_p) (*reinterpret_cast<const uint64 *>(_p)) argument
187 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val)) argument
188 #define GOOGLE_UNALIGNED_STORE32(_p, _val) (*reinterpret_cast<uint32 *>(_p) = (_val)) argument
189 #define GOOGLE_UNALIGNED_STORE64(_p, _val) (*reinterpret_cast<uint64 *>(_p) = (_val)) argument
/third_party/libnl/include/netlink-private/
Dutils.h112 __typeof__ (*_pp) _p; \
116 && (_p = *_pp)) { \
117 _nl_unused const void *const _p_check_is_pointer = _p; \
121 (destroy) (_p); \
133 __typeof__ (*_pp) _p = NULL; \
136 && (_p = *_pp)) { \
140 _p; \
/third_party/boost/libs/gil/test/legacy/
Dperformance.cpp56 P _p; member
57 fill_gil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_gil_t()
58 void operator()() const {fill_pixels(_v,_p);} in operator ()()
66 P _p; member
67 fill_nongil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_nongil_t()
72 first[0]=boost::gil::at_c<0>(_p); in operator ()()
73 first[1]=boost::gil::at_c<1>(_p); in operator ()()
74 first[2]=boost::gil::at_c<2>(_p); in operator ()()
85 P _p; member
86 fill_nongil_t(const View& v_in,const P& p_in) : _v(v_in), _p(p_in) {} in fill_nongil_t()
[all …]

12345678