Home
last modified time | relevance | path

Searched refs:rhs (Results 176 – 200 of 45765) sorted by relevance

12345678910>>...1831

/dports/devel/hyperscan/boost_1_75_0/boost/wave/grammars/
H A Dcpp_expression_value.hpp141 valid = rhs.valid; in operator =()
147 value.i = rhs; in operator =()
154 value.ui = rhs; in operator =()
161 value.i = rhs; in operator =()
168 value.ui = rhs; in operator =()
175 value.b = rhs; in operator =()
564 case is_bool: return closure_value(-as_long(rhs), rhs.valid); in operator -()
576 return closure_value(~as_ulong(rhs), rhs.valid); in operator ~()
582 case is_int: return closure_value(!as_long(rhs), rhs.valid); in operator !()
583 case is_bool: return closure_value(!as_bool(rhs), rhs.valid); in operator !()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Math/
H A DMatrix3.h129 m00_ * rhs.x_ + m01_ * rhs.y_ + m02_ * rhs.z_,
130 m10_ * rhs.x_ + m11_ * rhs.y_ + m12_ * rhs.z_,
131 m20_ * rhs.x_ + m21_ * rhs.y_ + m22_ * rhs.z_
187 m00_ * rhs.m00_ + m01_ * rhs.m10_ + m02_ * rhs.m20_,
188 m00_ * rhs.m01_ + m01_ * rhs.m11_ + m02_ * rhs.m21_,
189 m00_ * rhs.m02_ + m01_ * rhs.m12_ + m02_ * rhs.m22_,
190 m10_ * rhs.m00_ + m11_ * rhs.m10_ + m12_ * rhs.m20_,
191 m10_ * rhs.m01_ + m11_ * rhs.m11_ + m12_ * rhs.m21_,
192 m10_ * rhs.m02_ + m11_ * rhs.m12_ + m12_ * rhs.m22_,
193 m20_ * rhs.m00_ + m21_ * rhs.m10_ + m22_ * rhs.m20_,
[all …]
H A DMatrix4.h311 m00_ * rhs.x_ + m01_ * rhs.y_ + m02_ * rhs.z_ + m03_ * rhs.w_,
312 m10_ * rhs.x_ + m11_ * rhs.y_ + m12_ * rhs.z_ + m13_ * rhs.w_,
313 m20_ * rhs.x_ + m21_ * rhs.y_ + m22_ * rhs.z_ + m23_ * rhs.w_,
314 m30_ * rhs.x_ + m31_ * rhs.y_ + m32_ * rhs.z_ + m33_ * rhs.w_
458 m00_ * rhs.m00_ + m01_ * rhs.m10_ + m02_ * rhs.m20_ + m03_ * rhs.m30_,
459 m00_ * rhs.m01_ + m01_ * rhs.m11_ + m02_ * rhs.m21_ + m03_ * rhs.m31_,
460 m00_ * rhs.m02_ + m01_ * rhs.m12_ + m02_ * rhs.m22_ + m03_ * rhs.m32_,
461 m00_ * rhs.m03_ + m01_ * rhs.m13_ + m02_ * rhs.m23_ + m03_ * rhs.m33_,
462 m10_ * rhs.m00_ + m11_ * rhs.m10_ + m12_ * rhs.m20_ + m13_ * rhs.m30_,
463 m10_ * rhs.m01_ + m11_ * rhs.m11_ + m12_ * rhs.m21_ + m13_ * rhs.m31_,
[all …]
/dports/sysutils/dua-cli/dua-cli-2.14.11/cargo-crates/windows_gen-0.9.1/src/types/
H A Dvector3.rs45 self.X * rhs.X + self.Y * rhs.Y + self.Z * rhs.Z in gen_vector3()
110 self.impl_add(&rhs) in gen_vector3()
116 self.impl_add(rhs) in gen_vector3()
122 self.impl_add(&rhs) in gen_vector3()
128 self.impl_add(rhs) in gen_vector3()
140 self.impl_sub(rhs) in gen_vector3()
152 self.impl_sub(rhs) in gen_vector3()
164 self.impl_div(rhs) in gen_vector3()
176 self.impl_div(rhs) in gen_vector3()
200 self.impl_mul(rhs) in gen_vector3()
[all …]
H A Dvector4.rs58 self.X * rhs.X + self.Y * rhs.Y + self.Z * rhs.Z + self.W * rhs.W in gen_vector4()
129 self.impl_add(&rhs) in gen_vector4()
135 self.impl_add(rhs) in gen_vector4()
141 self.impl_add(&rhs) in gen_vector4()
147 self.impl_add(rhs) in gen_vector4()
159 self.impl_sub(rhs) in gen_vector4()
171 self.impl_sub(rhs) in gen_vector4()
183 self.impl_div(rhs) in gen_vector4()
195 self.impl_div(rhs) in gen_vector4()
219 self.impl_mul(rhs) in gen_vector4()
[all …]
H A Dmatrix3x2.rs55 M11: self.M11 * rhs.M11 + self.M12 * rhs.M21, in gen_matrix3x2()
56 M12: self.M11 * rhs.M12 + self.M12 * rhs.M22, in gen_matrix3x2()
57 M21: self.M21 * rhs.M11 + self.M22 * rhs.M21, in gen_matrix3x2()
58 M22: self.M21 * rhs.M12 + self.M22 * rhs.M22, in gen_matrix3x2()
59 M31: self.M31 * rhs.M11 + self.M32 * rhs.M21 + rhs.M31, in gen_matrix3x2()
60 M32: self.M31 * rhs.M12 + self.M32 * rhs.M22 + rhs.M32, in gen_matrix3x2()
78 self.impl_add(&rhs) in gen_matrix3x2()
84 self.impl_add(rhs) in gen_matrix3x2()
96 self.impl_add(rhs) in gen_matrix3x2()
108 self.impl_sub(rhs) in gen_matrix3x2()
[all …]
H A Dvector2.rs22 self.X * rhs.X + self.Y * rhs.Y
60 X: self.X / rhs,
61 Y: self.Y / rhs,
81 self.impl_add(&rhs)
87 self.impl_add(rhs)
93 self.impl_add(&rhs)
99 self.impl_add(rhs)
111 self.impl_sub(rhs)
123 self.impl_sub(rhs)
135 self.impl_div(rhs)
[all …]
/dports/audio/boops-lv2/BOops-1.8.2/src/
H A DStereo.hpp37 left += rhs.left; in operator +=()
44 left -= rhs.left; in operator -=()
51 left *= rhs.left; in operator *=()
65 left += rhs; in operator +=()
66 right += rhs; in operator +=()
72 left -= rhs; in operator -=()
73 right -= rhs; in operator -=()
79 left *= rhs; in operator *=()
80 right *= rhs; in operator *=()
86 left /= rhs; in operator /=()
[all …]
/dports/math/py-libpoly/libpoly-0.1.11/src/polyxx/
H A Dalgebraic_number.cpp108 return rhs == lhs; in operator ==()
111 return rhs != lhs; in operator !=()
114 return rhs > lhs; in operator <()
117 return rhs >= lhs; in operator <=()
120 return rhs < lhs; in operator >()
123 return rhs <= lhs; in operator >=()
152 return rhs == lhs; in operator ==()
158 return rhs > lhs; in operator <()
164 return rhs < lhs; in operator >()
202 return rhs > lhs; in operator <()
[all …]
H A Ddyadic_interval.cpp170 return rhs == lhs; in operator ==()
173 return rhs != lhs; in operator !=()
176 return rhs > lhs; in operator <()
179 return rhs >= lhs; in operator <=()
182 return rhs < lhs; in operator >()
185 return rhs <= lhs; in operator >=()
214 return rhs == lhs; in operator ==()
220 return rhs > lhs; in operator <()
226 return rhs < lhs; in operator >()
264 return rhs > lhs; in operator <()
[all …]
/dports/math/libpoly/libpoly-0.1.11/src/polyxx/
H A Dalgebraic_number.cpp108 return rhs == lhs; in operator ==()
111 return rhs != lhs; in operator !=()
114 return rhs > lhs; in operator <()
117 return rhs >= lhs; in operator <=()
120 return rhs < lhs; in operator >()
123 return rhs <= lhs; in operator >=()
152 return rhs == lhs; in operator ==()
158 return rhs > lhs; in operator <()
164 return rhs < lhs; in operator >()
202 return rhs > lhs; in operator <()
[all …]
H A Ddyadic_interval.cpp170 return rhs == lhs; in operator ==()
173 return rhs != lhs; in operator !=()
176 return rhs > lhs; in operator <()
179 return rhs >= lhs; in operator <=()
182 return rhs < lhs; in operator >()
185 return rhs <= lhs; in operator >=()
214 return rhs == lhs; in operator ==()
220 return rhs > lhs; in operator <()
226 return rhs < lhs; in operator >()
264 return rhs > lhs; in operator <()
[all …]
/dports/science/ALPSCore/ALPSCore-2.2.0/params/test/
H A Dparams_gen_equality_test_helper.py40 vars2refs={'Left' :lambda lhs,rhs: ('cdict_["%s"]'%lhs, "+"+rhs),
41 'Right':lambda lhs,rhs: ("+"+lhs, 'cdict_["%s"]'%rhs),
42 'Both' : lambda lhs,rhs: ('cdict_["%s"]'%lhs, 'cdict_["%s"]'%rhs)}
72 vars2refs={'Left' :lambda lhs,rhs: ('cdict_["%s"]'%lhs, rhs),
73 'Right':lambda lhs,rhs: (lhs, 'cdict_["%s"]'%rhs),
74 'Both' : lambda lhs,rhs: ('cdict_["%s"]'%lhs, 'cdict_["%s"]'%rhs)}
77 if lhs is rhs:
103 vars2refs={'Left' :lambda lhs,rhs: ('cdict_["%s"]'%lhs, rhs),
104 'Right':lambda lhs,rhs: (lhs, 'cdict_["%s"]'%rhs),
105 'Both' : lambda lhs,rhs: ('cdict_["%s"]'%lhs, 'cdict_["%s"]'%rhs)}
[all …]
/dports/graphics/nip2/nip2-8.7.1/src/
H A Drhs.c70 rhs->scol = NULL; in rhs_child_remove()
191 if( !rhs->graphic || !TYPE_EXACT( rhs->graphic, type ) ) in rhs_refresh_graphic()
223 return( rhs ); in rhs_new_heap()
228 return( rhs ); in rhs_new_heap()
232 if( !rhs->scol || !IS_SUBCOLUMN( rhs->scol ) ) in rhs_new_heap()
251 if( rhs->scol ) in rhs_new_heap()
327 rhs_set_vislevel( rhs, rhs->vislevel + 1 ); in rhs_vislevel_up()
333 rhs_set_vislevel( rhs, rhs->vislevel - 1 ); in rhs_vislevel_down()
343 rhs_set_vislevel( rhs, rhs->vislevel ); in rhs_update_model()
433 return( rhs ); in rhs_new()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/gapi/src/api/
H A Doperators.cpp19 return cv::gapi::add(lhs, rhs); in operator +()
24 return cv::gapi::addC(lhs, rhs); in operator +()
29 return cv::gapi::addC(rhs, lhs); in operator +()
34 return cv::gapi::sub(lhs, rhs); in operator -()
39 return cv::gapi::subC(lhs, rhs); in operator -()
44 return cv::gapi::subRC(lhs, rhs); in operator -()
59 return cv::gapi::mulC(lhs, rhs); in operator *()
64 return cv::gapi::mulC(rhs, lhs); in operator *()
134 return cv::gapi::cmpGT(lhs, rhs); in operator >()
139 return cv::gapi::cmpGE(lhs, rhs); in operator >=()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/common/search/
H A Dinstant_types.cc14 return bg == rhs.bg && icon == rhs.icon && in operator ==()
15 icon_selected == rhs.icon_selected && placeholder == rhs.placeholder && in operator ==()
16 results_bg == rhs.results_bg && in operator ==()
19 results_dim == rhs.results_dim && in operator ==()
24 results_url_selected == rhs.results_url_selected && text == rhs.text; in operator ==()
47 text_color == rhs.text_color && in operator ==()
48 text_color_light == rhs.text_color_light && theme_id == rhs.theme_id && in operator ==()
55 theme_name == rhs.theme_name && color_id == rhs.color_id && in operator ==()
56 color_dark == rhs.color_dark && color_light == rhs.color_light && in operator ==()
57 color_picked == rhs.color_picked && logo_color == rhs.logo_color && in operator ==()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/common/search/
H A Dinstant_types.cc14 return bg == rhs.bg && icon == rhs.icon && in operator ==()
15 icon_selected == rhs.icon_selected && placeholder == rhs.placeholder && in operator ==()
16 results_bg == rhs.results_bg && in operator ==()
19 results_dim == rhs.results_dim && in operator ==()
24 results_url_selected == rhs.results_url_selected && text == rhs.text; in operator ==()
47 text_color == rhs.text_color && in operator ==()
48 text_color_light == rhs.text_color_light && theme_id == rhs.theme_id && in operator ==()
55 theme_name == rhs.theme_name && color_id == rhs.color_id && in operator ==()
56 color_dark == rhs.color_dark && color_light == rhs.color_light && in operator ==()
57 color_picked == rhs.color_picked && logo_color == rhs.logo_color && in operator ==()
[all …]
/dports/games/warmux/warmux-11.04/build/symbian/lib/stlport/src/
H A Duint64.h16 _compound_int(const _Tp& rhs) : _Tp(rhs) {} in _compound_int() argument
32 _Self& operator= (unsigned long rhs) { return *this = _Self(rhs); }
33 _Self& operator+= (unsigned long rhs) { return *this += _Self(rhs); }
34 _Self& operator-= (unsigned long rhs) { return *this -= _Self(rhs); }
35 _Self& operator*= (unsigned long rhs) { return *this *= _Self(rhs); }
36 _Self& operator/= (unsigned long rhs) { return *this /= _Self(rhs); }
37 _Self& operator%= (unsigned long rhs) { return *this %= _Self(rhs); }
38 _Self& operator&= (unsigned long rhs) { return *this &= _Self(rhs); }
39 _Self& operator|= (unsigned long rhs) { return *this |= _Self(rhs); }
40 _Self& operator^= (unsigned long rhs) { return *this ^= _Self(rhs); }
[all …]
/dports/misc/usd/USD-21.11/pxr/imaging/hgi/
H A DgraphicsPipeline.cpp49 return !(lhs == rhs); in operator !=()
60 const HgiVertexBufferDesc& rhs) in operator ==() argument
69 const HgiVertexBufferDesc& rhs) in operator !=() argument
71 return !(lhs == rhs); in operator !=()
82 const HgiMultiSampleState& rhs) in operator ==() argument
90 const HgiMultiSampleState& rhs) in operator !=() argument
92 return !(lhs == rhs); in operator !=()
119 return !(lhs == rhs); in operator !=()
144 return !(lhs == rhs); in operator !=()
165 return !(lhs == rhs); in operator !=()
[all …]
/dports/math/kalker/kalker-1.1.0/cargo-crates/rug-1.11.0/src/
H A Dops_prim.rs68 self.pow(rhs)
398 self / rhs
402 let (q, r) = (self / rhs, self % rhs);
412 let (q, r) = (self / rhs, self % rhs);
422 let (q, r) = (self / rhs, self % rhs);
447 self % rhs
501 self / rhs
505 let (q, r) = (self / rhs, self % rhs);
542 let (q, r) = ((self / rhs).trunc(), self % rhs);
552 let (q, r) = ((self / rhs).trunc(), self % rhs);
[all …]
/dports/science/py-dlib/dlib-19.22/dlib/simd/
H A Dsimd4i.h211 return vaddq_s32(lhs, rhs);
360 return simd4i(lhs[0]<<rhs,
361 lhs[1]<<rhs,
362 lhs[2]<<rhs,
384 return simd4i(lhs[0]>>rhs,
385 lhs[1]>>rhs,
386 lhs[2]>>rhs,
416 return ~(lhs==rhs);
447 return rhs < lhs;
455 return ~(lhs > rhs);
[all …]
/dports/science/dlib-cpp/dlib-19.22/dlib/simd/
H A Dsimd4i.h211 return vaddq_s32(lhs, rhs);
360 return simd4i(lhs[0]<<rhs,
361 lhs[1]<<rhs,
362 lhs[2]<<rhs,
384 return simd4i(lhs[0]>>rhs,
385 lhs[1]>>rhs,
386 lhs[2]>>rhs,
416 return ~(lhs==rhs);
447 return rhs < lhs;
455 return ~(lhs > rhs);
[all …]
/dports/devel/xsimd/xsimd-7.6.0/include/xsimd/types/
H A Dxsimd_avx512_int16.hpp221 XSIMD_SPLIT_AVX512(rhs); in neg()
330 XSIMD_SPLIT_AVX512(rhs); in hadd()
371 case 0: return rhs; in extract_pair()
402 XSIMD_SPLIT_AVX512(rhs); in abs()
470 return rhs; in abs()
553 return _mm512_slli_epi16(lhs, rhs); in operator <<()
571 return _mm512_srai_epi16(lhs, rhs); in operator >>()
581 return _mm512_sllv_epi16(lhs, rhs); in operator <<()
590 return _mm512_srav_epi16(lhs, rhs); in operator >>()
605 return _mm512_slli_epi16(lhs, rhs); in operator <<()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/base/
H A Dcompare_numbers.h52 return lhs == rhs ? 0 : lhs < rhs ? -1 : 1; in compareInts()
56 return lhs == rhs ? 0 : lhs < rhs ? -1 : 1; in compareLongs()
60 if (lhs == rhs) in compareDoubles()
62 if (lhs < rhs) in compareDoubles()
64 if (lhs > rhs) in compareDoubles()
70 dassert(std::isnan(rhs)); in compareDoubles()
82 if (std::isnan(rhs)) in compareLongToDouble()
123 if (lhs.isGreater(rhs)) in compareDecimals()
125 if (lhs.isLess(rhs)) in compareDecimals()
129 if (rhs.isNaN()) in compareDecimals()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/media/
H A DMediaInfo.cpp28 mId == rhs.mId && mKind == rhs.mKind && mLabel == rhs.mLabel && in IsEqualTo()
29 mLanguage == rhs.mLanguage && mEnabled == rhs.mEnabled && in IsEqualTo()
30 mTrackId == rhs.mTrackId && mMimeType == rhs.mMimeType && in IsEqualTo()
31 mDuration == rhs.mDuration && mMediaTime == rhs.mMediaTime && in IsEqualTo()
42 return (TrackInfo::IsEqualTo(rhs) && mDisplay == rhs.mDisplay && in operator ==()
43 mStereoMode == rhs.mStereoMode && mImage == rhs.mImage && in operator ==()
45 *mExtraData == *rhs.mExtraData && mRotation == rhs.mRotation && in operator ==()
46 mColorDepth == rhs.mColorDepth && mImageRect == rhs.mImageRect && in operator ==()
51 return (TrackInfo::IsEqualTo(rhs) && mRate == rhs.mRate && in operator ==()
52 mChannels == rhs.mChannels && mChannelMap == rhs.mChannelMap && in operator ==()
[all …]

12345678910>>...1831