Searched refs:otherData (Results 1 - 6 of 6) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/ |
H A D | rs_vector4.h | 325 const T* otherData = other.data_; in operator -() local 328 data_[0] - otherData[0], data_[1] - otherData[1], data_[2] - otherData[2], data_[3] - otherData[3]); in operator -() 335 const T* otherData = other.data_; in operator +() local 338 thisData[0] + otherData[0], thisData[1] + otherData[1], thisData[2] + otherData[2], thisData[3] + otherData[ in operator +() [all...] |
H A D | rs_vector2.h | 242 const T* otherData = other.data_; in IsNearEqual() local 244 return (ROSEN_EQ<T>(data_[0], otherData[0], threshold)) && (ROSEN_EQ<T>(data_[1], otherData[1], threshold)); in IsNearEqual()
|
H A D | rs_matrix3.h | 384 const T* otherData = other.data_; in IsNearEqual() local 385 auto result = std::equal(data_, data_ + 8, otherData, in IsNearEqual()
|
/foundation/multimodalinput/input/util/common/include/ |
H A D | mmi_vector2.h | 231 const T* otherData = other.data_; in IsNearEqual() local 233 return (MMI_EQ<T>(data_[0], otherData[0], threshold)) && (MMI_EQ<T>(data_[1], otherData[1], threshold)); in IsNearEqual()
|
H A D | mmi_matrix3.h | 398 const T* otherData = other.data_; in IsNearEqual() local 399 auto result = std::equal(data_, data_ + 8, otherData, in IsNearEqual()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/modifier/ |
H A D | rs_render_property.cpp | 769 auto& otherData = otherValue.data_; in IsNearEqual() local 771 return thisData[0].IsNearEqual(otherData[0], threshold) && thisData[2].IsNearEqual(otherData[2], threshold) && in IsNearEqual() 772 thisData[2].IsNearEqual(otherData[2], threshold) && thisData[3].IsNearEqual(otherData[3], threshold); in IsNearEqual()
|
Completed in 6 milliseconds