/external/webrtc/api/ |
D | rtp_packet_info_unittest.cc | 22 RtpPacketInfo rhs; in TEST() local 24 EXPECT_TRUE(lhs == rhs); in TEST() 25 EXPECT_FALSE(lhs != rhs); in TEST() 27 rhs.set_ssrc(kValue); in TEST() 28 EXPECT_EQ(rhs.ssrc(), kValue); in TEST() 30 EXPECT_FALSE(lhs == rhs); in TEST() 31 EXPECT_TRUE(lhs != rhs); in TEST() 33 lhs = rhs; in TEST() 35 EXPECT_TRUE(lhs == rhs); in TEST() 36 EXPECT_FALSE(lhs != rhs); in TEST() [all …]
|
/external/vulkan-headers/include/vulkan/ |
D | vulkan_video.hpp | 449 bool operator==( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator ==() 451 …rn ( aspect_ratio_info_present_flag == rhs.aspect_ratio_info_present_flag ) && ( overscan_info_pre… in operator ==() 452 …( overscan_appropriate_flag == rhs.overscan_appropriate_flag ) && ( video_signal_type_present_flag… in operator ==() 453 …( video_full_range_flag == rhs.video_full_range_flag ) && ( color_description_present_flag == rhs.… in operator ==() 454 …( chroma_loc_info_present_flag == rhs.chroma_loc_info_present_flag ) && ( timing_info_present_flag… in operator ==() 455 …( fixed_frame_rate_flag == rhs.fixed_frame_rate_flag ) && ( bitstream_restriction_flag == rhs.bits… in operator ==() 456 ( nal_hrd_parameters_present_flag == rhs.nal_hrd_parameters_present_flag ) && in operator ==() 457 ( vcl_hrd_parameters_present_flag == rhs.vcl_hrd_parameters_present_flag ); in operator ==() 460 bool operator!=( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator !=() 462 return !operator==( rhs ); in operator !=() [all …]
|
/external/swiftshader/include/vulkan/ |
D | vulkan_video.hpp | 449 bool operator==( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator ==() 451 …rn ( aspect_ratio_info_present_flag == rhs.aspect_ratio_info_present_flag ) && ( overscan_info_pre… in operator ==() 452 …( overscan_appropriate_flag == rhs.overscan_appropriate_flag ) && ( video_signal_type_present_flag… in operator ==() 453 …( video_full_range_flag == rhs.video_full_range_flag ) && ( color_description_present_flag == rhs.… in operator ==() 454 …( chroma_loc_info_present_flag == rhs.chroma_loc_info_present_flag ) && ( timing_info_present_flag… in operator ==() 455 …( fixed_frame_rate_flag == rhs.fixed_frame_rate_flag ) && ( bitstream_restriction_flag == rhs.bits… in operator ==() 456 ( nal_hrd_parameters_present_flag == rhs.nal_hrd_parameters_present_flag ) && in operator ==() 457 ( vcl_hrd_parameters_present_flag == rhs.vcl_hrd_parameters_present_flag ); in operator ==() 460 bool operator!=( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator !=() 462 return !operator==( rhs ); in operator !=() [all …]
|
/external/angle/third_party/vulkan-headers/src/include/vulkan/ |
D | vulkan_video.hpp | 467 bool operator==( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator ==() 469 …rn ( aspect_ratio_info_present_flag == rhs.aspect_ratio_info_present_flag ) && ( overscan_info_pre… in operator ==() 470 …( overscan_appropriate_flag == rhs.overscan_appropriate_flag ) && ( video_signal_type_present_flag… in operator ==() 471 …( video_full_range_flag == rhs.video_full_range_flag ) && ( color_description_present_flag == rhs.… in operator ==() 472 …( chroma_loc_info_present_flag == rhs.chroma_loc_info_present_flag ) && ( timing_info_present_flag… in operator ==() 473 …( fixed_frame_rate_flag == rhs.fixed_frame_rate_flag ) && ( bitstream_restriction_flag == rhs.bits… in operator ==() 474 ( nal_hrd_parameters_present_flag == rhs.nal_hrd_parameters_present_flag ) && in operator ==() 475 ( vcl_hrd_parameters_present_flag == rhs.vcl_hrd_parameters_present_flag ); in operator ==() 478 bool operator!=( H264SpsVuiFlags const & rhs ) const VULKAN_HPP_NOEXCEPT in operator !=() 480 return !operator==( rhs ); in operator !=() [all …]
|
/external/rust/android-crates-io/crates/glam/src/i32/ |
D | ivec2.rs | 158 pub fn dot(self, rhs: Self) -> i32 { in dot() 159 (self.x * rhs.x) + (self.y * rhs.y) in dot() 165 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 166 Self::splat(self.dot(rhs)) in dot_into_vec() 174 pub fn min(self, rhs: Self) -> Self { in min() 176 x: self.x.min(rhs.x), in min() 177 y: self.y.min(rhs.y), in min() 186 pub fn max(self, rhs: Self) -> Self { in max() 188 x: self.x.max(rhs.x), in max() 189 y: self.y.max(rhs.y), in max() [all …]
|
D | ivec4.rs | 203 pub fn dot(self, rhs: Self) -> i32 { in dot() 204 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 210 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 211 Self::splat(self.dot(rhs)) in dot_into_vec() 219 pub fn min(self, rhs: Self) -> Self { in min() 221 x: self.x.min(rhs.x), in min() 222 y: self.y.min(rhs.y), in min() 223 z: self.z.min(rhs.z), in min() 224 w: self.w.min(rhs.w), in min() 233 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | ivec3.rs | 197 pub fn dot(self, rhs: Self) -> i32 { in dot() 198 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 204 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 205 Self::splat(self.dot(rhs)) in dot_into_vec() 211 pub fn cross(self, rhs: Self) -> Self { in cross() 213 x: self.y * rhs.z - rhs.y * self.z, in cross() 214 y: self.z * rhs.x - rhs.z * self.x, in cross() 215 z: self.x * rhs.y - rhs.x * self.y, in cross() 224 pub fn min(self, rhs: Self) -> Self { in min() 226 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/i16/ |
D | i16vec2.rs | 158 pub fn dot(self, rhs: Self) -> i16 { in dot() 159 (self.x * rhs.x) + (self.y * rhs.y) in dot() 165 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 166 Self::splat(self.dot(rhs)) in dot_into_vec() 174 pub fn min(self, rhs: Self) -> Self { in min() 176 x: self.x.min(rhs.x), in min() 177 y: self.y.min(rhs.y), in min() 186 pub fn max(self, rhs: Self) -> Self { in max() 188 x: self.x.max(rhs.x), in max() 189 y: self.y.max(rhs.y), in max() [all …]
|
D | i16vec4.rs | 203 pub fn dot(self, rhs: Self) -> i16 { in dot() 204 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 210 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 211 Self::splat(self.dot(rhs)) in dot_into_vec() 219 pub fn min(self, rhs: Self) -> Self { in min() 221 x: self.x.min(rhs.x), in min() 222 y: self.y.min(rhs.y), in min() 223 z: self.z.min(rhs.z), in min() 224 w: self.w.min(rhs.w), in min() 233 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | i16vec3.rs | 197 pub fn dot(self, rhs: Self) -> i16 { in dot() 198 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 204 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 205 Self::splat(self.dot(rhs)) in dot_into_vec() 211 pub fn cross(self, rhs: Self) -> Self { in cross() 213 x: self.y * rhs.z - rhs.y * self.z, in cross() 214 y: self.z * rhs.x - rhs.z * self.x, in cross() 215 z: self.x * rhs.y - rhs.x * self.y, in cross() 224 pub fn min(self, rhs: Self) -> Self { in min() 226 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/i64/ |
D | i64vec2.rs | 158 pub fn dot(self, rhs: Self) -> i64 { in dot() 159 (self.x * rhs.x) + (self.y * rhs.y) in dot() 165 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 166 Self::splat(self.dot(rhs)) in dot_into_vec() 174 pub fn min(self, rhs: Self) -> Self { in min() 176 x: self.x.min(rhs.x), in min() 177 y: self.y.min(rhs.y), in min() 186 pub fn max(self, rhs: Self) -> Self { in max() 188 x: self.x.max(rhs.x), in max() 189 y: self.y.max(rhs.y), in max() [all …]
|
D | i64vec4.rs | 203 pub fn dot(self, rhs: Self) -> i64 { in dot() 204 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 210 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 211 Self::splat(self.dot(rhs)) in dot_into_vec() 219 pub fn min(self, rhs: Self) -> Self { in min() 221 x: self.x.min(rhs.x), in min() 222 y: self.y.min(rhs.y), in min() 223 z: self.z.min(rhs.z), in min() 224 w: self.w.min(rhs.w), in min() 233 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | i64vec3.rs | 197 pub fn dot(self, rhs: Self) -> i64 { in dot() 198 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 204 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 205 Self::splat(self.dot(rhs)) in dot_into_vec() 211 pub fn cross(self, rhs: Self) -> Self { in cross() 213 x: self.y * rhs.z - rhs.y * self.z, in cross() 214 y: self.z * rhs.x - rhs.z * self.x, in cross() 215 z: self.x * rhs.y - rhs.x * self.y, in cross() 224 pub fn min(self, rhs: Self) -> Self { in min() 226 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/u16/ |
D | u16vec4.rs | 188 pub fn dot(self, rhs: Self) -> u16 { in dot() 189 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 195 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 196 Self::splat(self.dot(rhs)) in dot_into_vec() 204 pub fn min(self, rhs: Self) -> Self { in min() 206 x: self.x.min(rhs.x), in min() 207 y: self.y.min(rhs.y), in min() 208 z: self.z.min(rhs.z), in min() 209 w: self.w.min(rhs.w), in min() 218 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | u16vec3.rs | 185 pub fn dot(self, rhs: Self) -> u16 { in dot() 186 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 192 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 193 Self::splat(self.dot(rhs)) in dot_into_vec() 199 pub fn cross(self, rhs: Self) -> Self { in cross() 201 x: self.y * rhs.z - rhs.y * self.z, in cross() 202 y: self.z * rhs.x - rhs.z * self.x, in cross() 203 z: self.x * rhs.y - rhs.x * self.y, in cross() 212 pub fn min(self, rhs: Self) -> Self { in min() 214 x: self.x.min(rhs.x), in min() [all …]
|
D | u16vec2.rs | 149 pub fn dot(self, rhs: Self) -> u16 { in dot() 150 (self.x * rhs.x) + (self.y * rhs.y) in dot() 156 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 157 Self::splat(self.dot(rhs)) in dot_into_vec() 165 pub fn min(self, rhs: Self) -> Self { in min() 167 x: self.x.min(rhs.x), in min() 168 y: self.y.min(rhs.y), in min() 177 pub fn max(self, rhs: Self) -> Self { in max() 179 x: self.x.max(rhs.x), in max() 180 y: self.y.max(rhs.y), in max() [all …]
|
/external/rust/android-crates-io/crates/glam/src/u32/ |
D | uvec4.rs | 188 pub fn dot(self, rhs: Self) -> u32 { in dot() 189 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 195 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 196 Self::splat(self.dot(rhs)) in dot_into_vec() 204 pub fn min(self, rhs: Self) -> Self { in min() 206 x: self.x.min(rhs.x), in min() 207 y: self.y.min(rhs.y), in min() 208 z: self.z.min(rhs.z), in min() 209 w: self.w.min(rhs.w), in min() 218 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | uvec3.rs | 185 pub fn dot(self, rhs: Self) -> u32 { in dot() 186 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 192 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 193 Self::splat(self.dot(rhs)) in dot_into_vec() 199 pub fn cross(self, rhs: Self) -> Self { in cross() 201 x: self.y * rhs.z - rhs.y * self.z, in cross() 202 y: self.z * rhs.x - rhs.z * self.x, in cross() 203 z: self.x * rhs.y - rhs.x * self.y, in cross() 212 pub fn min(self, rhs: Self) -> Self { in min() 214 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/u64/ |
D | u64vec4.rs | 188 pub fn dot(self, rhs: Self) -> u64 { in dot() 189 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 195 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 196 Self::splat(self.dot(rhs)) in dot_into_vec() 204 pub fn min(self, rhs: Self) -> Self { in min() 206 x: self.x.min(rhs.x), in min() 207 y: self.y.min(rhs.y), in min() 208 z: self.z.min(rhs.z), in min() 209 w: self.w.min(rhs.w), in min() 218 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | u64vec3.rs | 185 pub fn dot(self, rhs: Self) -> u64 { in dot() 186 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 192 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 193 Self::splat(self.dot(rhs)) in dot_into_vec() 199 pub fn cross(self, rhs: Self) -> Self { in cross() 201 x: self.y * rhs.z - rhs.y * self.z, in cross() 202 y: self.z * rhs.x - rhs.z * self.x, in cross() 203 z: self.x * rhs.y - rhs.x * self.y, in cross() 212 pub fn min(self, rhs: Self) -> Self { in min() 214 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/u8/ |
D | u8vec4.rs | 188 pub fn dot(self, rhs: Self) -> u8 { in dot() 189 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 195 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 196 Self::splat(self.dot(rhs)) in dot_into_vec() 204 pub fn min(self, rhs: Self) -> Self { in min() 206 x: self.x.min(rhs.x), in min() 207 y: self.y.min(rhs.y), in min() 208 z: self.z.min(rhs.z), in min() 209 w: self.w.min(rhs.w), in min() 218 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | u8vec3.rs | 185 pub fn dot(self, rhs: Self) -> u8 { in dot() 186 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 192 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 193 Self::splat(self.dot(rhs)) in dot_into_vec() 199 pub fn cross(self, rhs: Self) -> Self { in cross() 201 x: self.y * rhs.z - rhs.y * self.z, in cross() 202 y: self.z * rhs.x - rhs.z * self.x, in cross() 203 z: self.x * rhs.y - rhs.x * self.y, in cross() 212 pub fn min(self, rhs: Self) -> Self { in min() 214 x: self.x.min(rhs.x), in min() [all …]
|
/external/rust/android-crates-io/crates/glam/src/i8/ |
D | i8vec4.rs | 203 pub fn dot(self, rhs: Self) -> i8 { in dot() 204 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w) in dot() 210 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 211 Self::splat(self.dot(rhs)) in dot_into_vec() 219 pub fn min(self, rhs: Self) -> Self { in min() 221 x: self.x.min(rhs.x), in min() 222 y: self.y.min(rhs.y), in min() 223 z: self.z.min(rhs.z), in min() 224 w: self.w.min(rhs.w), in min() 233 pub fn max(self, rhs: Self) -> Self { in max() [all …]
|
D | i8vec3.rs | 197 pub fn dot(self, rhs: Self) -> i8 { in dot() 198 (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) in dot() 204 pub fn dot_into_vec(self, rhs: Self) -> Self { in dot_into_vec() 205 Self::splat(self.dot(rhs)) in dot_into_vec() 211 pub fn cross(self, rhs: Self) -> Self { in cross() 213 x: self.y * rhs.z - rhs.y * self.z, in cross() 214 y: self.z * rhs.x - rhs.z * self.x, in cross() 215 z: self.x * rhs.y - rhs.x * self.y, in cross() 224 pub fn min(self, rhs: Self) -> Self { in min() 226 x: self.x.min(rhs.x), in min() [all …]
|
/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/ |
D | int_adapter.hpp | 139 BOOST_CONSTEXPR bool operator==(const int_adapter& rhs) const in operator ==() 141 return (compare(rhs) == 0); in operator ==() 143 BOOST_CXX14_CONSTEXPR bool operator==(const int& rhs) const in operator ==() 147 if(is_neg_inf(value_) && rhs == 0) in operator ==() 152 return (compare(rhs) == 0); in operator ==() 154 BOOST_CONSTEXPR bool operator!=(const int_adapter& rhs) const in operator !=() 156 return (compare(rhs) != 0); in operator !=() 158 BOOST_CXX14_CONSTEXPR bool operator!=(const int& rhs) const in operator !=() 162 if(is_neg_inf(value_) && rhs == 0) in operator !=() 167 return (compare(rhs) != 0); in operator !=() [all …]
|