| /external/tensorflow/tensorflow/lite/delegates/gpu/common/ | 
| D | types.h | 135 struct alignas(sizeof(T)) Vec2 {  struct143   Vec2() : Vec2(T(0.0f)) {}  in Vec2()  argument
 146   Vec2(S x_, S y_) : x(x_), y(y_) {}  in Vec2()  argument
 147   explicit Vec2(T v) : x(v), y(v) {}  in Vec2()  function
 150   explicit Vec2(S v) : x(v), y(v) {}  in Vec2()  argument
 152   Vec2(const Vec2& f) : x(f.x), y(f.y) {}  in Vec2()  argument
 155   Vec2(const Vec2<S>& f) : x(f.x), y(f.y) {}  in Vec2()  argument
 177 using float2 = Vec2<float>;  argument
 
 | 
| /external/rust/crates/glam/src/f32/ | 
| D | vec2.rs | 16 pub const fn vec2(x: f32, y: f32) -> Vec2 {  in vec2()25 pub struct Vec2 {  struct
 30 impl Vec2 {  implementation
 671 impl Default for Vec2 {  implementation
 678 impl Div<Vec2> for Vec2 {  implementation
 689 impl DivAssign<Vec2> for Vec2 {  implementation
 697 impl Div<f32> for Vec2 {  implementation
 708 impl DivAssign<f32> for Vec2 {  implementation
 719     fn div(self, rhs: Vec2) -> Vec2 {  in div()
 727 impl Mul<Vec2> for Vec2 {  implementation
 [all …]
 
 | 
| D | affine2.rs | 40     pub const fn from_cols(x_axis: Vec2, y_axis: Vec2, z_axis: Vec2) -> Self {  in from_cols()169     pub fn from_scale_angle_translation(scale: Vec2, angle: f32, translation: Vec2) -> Self {  in from_scale_angle_translation()
 211     pub fn transform_point2(&self, rhs: Vec2) -> Vec2 {  in transform_point2()
 220     pub fn transform_vector2(&self, rhs: Vec2) -> Vec2 {  in transform_vector2()
 
 | 
| /external/llvm/unittests/ADT/ | 
| D | PackedVectorTest.cpp | 34   PackedVector<unsigned, 2> Vec2(3);  in TEST()  local77   PackedVector<unsigned, 3> Vec2(1);  in TEST()  local
 92   PackedVector<signed, 3> Vec2(1);  in TEST()  local
 
 | 
| /external/rust/crates/glam/src/swizzles/ | 
| D | vec2_impl.rs | 5 impl Vec2Swizzles for Vec2 {  implementation11     fn xx(self) -> Vec2 {  in xx()
 19     fn xy(self) -> Vec2 {  in xy()
 27     fn yx(self) -> Vec2 {  in yx()
 35     fn yy(self) -> Vec2 {  in yy()
 
 | 
| D | vec3_impl.rs | 6     type Vec2 = Vec2;  typedef11     fn xx(self) -> Vec2 {  in xx()
 19     fn xy(self) -> Vec2 {  in xy()
 27     fn xz(self) -> Vec2 {  in xz()
 35     fn yx(self) -> Vec2 {  in yx()
 43     fn yy(self) -> Vec2 {  in yy()
 51     fn yz(self) -> Vec2 {  in yz()
 59     fn zx(self) -> Vec2 {  in zx()
 67     fn zy(self) -> Vec2 {  in zy()
 75     fn zz(self) -> Vec2 {  in zz()
 
 | 
| D | vec_traits.rs | 69     type Vec2;  typedef78     fn xx(self) -> Self::Vec2;  in xx()
 80     fn xy(self) -> Self::Vec2;  in xy()
 82     fn xz(self) -> Self::Vec2;  in xz()
 84     fn yx(self) -> Self::Vec2;  in yx()
 86     fn yy(self) -> Self::Vec2;  in yy()
 88     fn yz(self) -> Self::Vec2;  in yz()
 90     fn zx(self) -> Self::Vec2;  in zx()
 92     fn zy(self) -> Self::Vec2;  in zy()
 94     fn zz(self) -> Self::Vec2;  in zz()
 [all …]
 
 | 
| /external/clang/test/CodeGen/ | 
| D | arm_function_epilog.cpp | 4 struct Vec2 {  struct10 // CHECK: define arm_aapcs_vfpcc %struct.Vec2 @_Z7getVec2v()  argument
 
 | 
| /external/rust/crates/glam/src/swizzles/coresimd/ | 
| D | vec3a_impl.rs | 10     type Vec2 = Vec2;  typedef15     fn xx(self) -> Vec2 {  in xx()
 23     fn xy(self) -> Vec2 {  in xy()
 31     fn xz(self) -> Vec2 {  in xz()
 39     fn yx(self) -> Vec2 {  in yx()
 47     fn yy(self) -> Vec2 {  in yy()
 55     fn yz(self) -> Vec2 {  in yz()
 63     fn zx(self) -> Vec2 {  in zx()
 71     fn zy(self) -> Vec2 {  in zy()
 79     fn zz(self) -> Vec2 {  in zz()
 
 | 
| D | vec4_impl.rs | 10     type Vec2 = Vec2;  typedef15     fn xx(self) -> Vec2 {  in xx()
 23     fn xy(self) -> Vec2 {  in xy()
 31     fn xz(self) -> Vec2 {  in xz()
 39     fn xw(self) -> Vec2 {  in xw()
 47     fn yx(self) -> Vec2 {  in yx()
 55     fn yy(self) -> Vec2 {  in yy()
 63     fn yz(self) -> Vec2 {  in yz()
 71     fn yw(self) -> Vec2 {  in yw()
 79     fn zx(self) -> Vec2 {  in zx()
 [all …]
 
 | 
| /external/rust/crates/glam/src/swizzles/wasm32/ | 
| D | vec3a_impl.rs | 10     type Vec2 = Vec2;  typedef15     fn xx(self) -> Vec2 {  in xx()
 23     fn xy(self) -> Vec2 {  in xy()
 31     fn xz(self) -> Vec2 {  in xz()
 39     fn yx(self) -> Vec2 {  in yx()
 47     fn yy(self) -> Vec2 {  in yy()
 55     fn yz(self) -> Vec2 {  in yz()
 63     fn zx(self) -> Vec2 {  in zx()
 71     fn zy(self) -> Vec2 {  in zy()
 79     fn zz(self) -> Vec2 {  in zz()
 
 | 
| D | vec4_impl.rs | 10     type Vec2 = Vec2;  typedef15     fn xx(self) -> Vec2 {  in xx()
 23     fn xy(self) -> Vec2 {  in xy()
 31     fn xz(self) -> Vec2 {  in xz()
 39     fn xw(self) -> Vec2 {  in xw()
 47     fn yx(self) -> Vec2 {  in yx()
 55     fn yy(self) -> Vec2 {  in yy()
 63     fn yz(self) -> Vec2 {  in yz()
 71     fn yw(self) -> Vec2 {  in yw()
 79     fn zx(self) -> Vec2 {  in zx()
 [all …]
 
 | 
| /external/rust/crates/glam/src/swizzles/scalar/ | 
| D | vec3a_impl.rs | 6     type Vec2 = Vec2;  typedef11     fn xx(self) -> Vec2 {  in xx()
 19     fn xy(self) -> Vec2 {  in xy()
 27     fn xz(self) -> Vec2 {  in xz()
 35     fn yx(self) -> Vec2 {  in yx()
 43     fn yy(self) -> Vec2 {  in yy()
 51     fn yz(self) -> Vec2 {  in yz()
 59     fn zx(self) -> Vec2 {  in zx()
 67     fn zy(self) -> Vec2 {  in zy()
 75     fn zz(self) -> Vec2 {  in zz()
 
 | 
| D | vec4_impl.rs | 6     type Vec2 = Vec2;  typedef11     fn xx(self) -> Vec2 {  in xx()
 19     fn xy(self) -> Vec2 {  in xy()
 27     fn xz(self) -> Vec2 {  in xz()
 35     fn xw(self) -> Vec2 {  in xw()
 43     fn yx(self) -> Vec2 {  in yx()
 51     fn yy(self) -> Vec2 {  in yy()
 59     fn yz(self) -> Vec2 {  in yz()
 67     fn yw(self) -> Vec2 {  in yw()
 75     fn zx(self) -> Vec2 {  in zx()
 [all …]
 
 | 
| /external/rust/crates/glam/src/swizzles/sse2/ | 
| D | vec3a_impl.rs | 13     type Vec2 = Vec2;  typedef18     fn xx(self) -> Vec2 {  in xx()
 26     fn xy(self) -> Vec2 {  in xy()
 34     fn xz(self) -> Vec2 {  in xz()
 42     fn yx(self) -> Vec2 {  in yx()
 50     fn yy(self) -> Vec2 {  in yy()
 58     fn yz(self) -> Vec2 {  in yz()
 66     fn zx(self) -> Vec2 {  in zx()
 74     fn zy(self) -> Vec2 {  in zy()
 82     fn zz(self) -> Vec2 {  in zz()
 
 | 
| D | vec4_impl.rs | 13     type Vec2 = Vec2;  typedef18     fn xx(self) -> Vec2 {  in xx()
 26     fn xy(self) -> Vec2 {  in xy()
 34     fn xz(self) -> Vec2 {  in xz()
 42     fn xw(self) -> Vec2 {  in xw()
 50     fn yx(self) -> Vec2 {  in yx()
 58     fn yy(self) -> Vec2 {  in yy()
 66     fn yz(self) -> Vec2 {  in yz()
 74     fn yw(self) -> Vec2 {  in yw()
 82     fn zx(self) -> Vec2 {  in zx()
 [all …]
 
 | 
| /external/rust/crates/glam/src/f32/scalar/ | 
| D | mat2.rs | 15 pub const fn mat2(x_axis: Vec2, y_axis: Vec2) -> Mat2 {  in mat2()53     pub const fn from_cols(x_axis: Vec2, y_axis: Vec2) -> Self {  in from_cols()
 97     pub fn from_scale_angle(scale: Vec2, angle: f32) -> Self {  in from_scale_angle()
 150     pub fn col(&self, index: usize) -> Vec2 {  in col()
 164     pub fn col_mut(&mut self, index: usize) -> &mut Vec2 {  in col_mut()
 178     pub fn row(&self, index: usize) -> Vec2 {  in row()
 240     pub fn mul_vec2(&self, rhs: Vec2) -> Vec2 {  in mul_vec2()
 
 | 
| D | mat3a.rs | 282     pub fn from_scale_angle_translation(scale: Vec2, angle: f32, translation: Vec2) -> Self {  in from_scale_angle_translation()455     pub fn transform_point2(&self, rhs: Vec2) -> Vec2 {  in transform_point2()
 470     pub fn transform_vector2(&self, rhs: Vec2) -> Vec2 {  in transform_vector2()
 
 | 
| /external/rust/crates/glam/src/f32/wasm32/ | 
| D | mat2.rs | 17 pub const fn mat2(x_axis: Vec2, y_axis: Vec2) -> Mat2 {  in mat2()44     pub const fn from_cols(x_axis: Vec2, y_axis: Vec2) -> Self {  in from_cols()
 88     pub fn from_scale_angle(scale: Vec2, angle: f32) -> Self {  in from_scale_angle()
 141     pub fn col(&self, index: usize) -> Vec2 {  in col()
 155     pub fn col_mut(&mut self, index: usize) -> &mut Vec2 {  in col_mut()
 169     pub fn row(&self, index: usize) -> Vec2 {  in row()
 231     pub fn mul_vec2(&self, rhs: Vec2) -> Vec2 {  in mul_vec2()
 241             *(&out.assume_init() as *const v128 as *const Vec2)  in mul_vec2()  constant
 
 | 
| /external/rust/crates/glam/src/f32/coresimd/ | 
| D | mat2.rs | 17 pub const fn mat2(x_axis: Vec2, y_axis: Vec2) -> Mat2 {  in mat2()44     pub const fn from_cols(x_axis: Vec2, y_axis: Vec2) -> Self {  in from_cols()
 88     pub fn from_scale_angle(scale: Vec2, angle: f32) -> Self {  in from_scale_angle()
 141     pub fn col(&self, index: usize) -> Vec2 {  in col()
 155     pub fn col_mut(&mut self, index: usize) -> &mut Vec2 {  in col_mut()
 169     pub fn row(&self, index: usize) -> Vec2 {  in row()
 231     pub fn mul_vec2(&self, rhs: Vec2) -> Vec2 {  in mul_vec2()
 237         unsafe { *(&result as *const f32x4 as *const Vec2) }  in mul_vec2()  constant
 
 | 
| /external/rust/crates/glam/src/f32/sse2/ | 
| D | mat2.rs | 25 pub const fn mat2(x_axis: Vec2, y_axis: Vec2) -> Mat2 {  in mat2()57     pub const fn from_cols(x_axis: Vec2, y_axis: Vec2) -> Self {  in from_cols()
 106     pub fn from_scale_angle(scale: Vec2, angle: f32) -> Self {  in from_scale_angle()
 159     pub fn col(&self, index: usize) -> Vec2 {  in col()
 173     pub fn col_mut(&mut self, index: usize) -> &mut Vec2 {  in col_mut()
 187     pub fn row(&self, index: usize) -> Vec2 {  in row()
 253     pub fn mul_vec2(&self, rhs: Vec2) -> Vec2 {  in mul_vec2()
 
 | 
| D | mat3a.rs | 284     pub fn from_scale_angle_translation(scale: Vec2, angle: f32, translation: Vec2) -> Self {  in from_scale_angle_translation()462     pub fn transform_point2(&self, rhs: Vec2) -> Vec2 {  in transform_point2()
 477     pub fn transform_vector2(&self, rhs: Vec2) -> Vec2 {  in transform_vector2()
 
 | 
| /external/rust/crates/glam/benches/ | 
| D | support.rs | 43 pub fn random_vec2(rng: &mut PCG32) -> Vec2 {  in random_vec2()64 pub fn random_nonzero_vec2(rng: &mut PCG32) -> Vec2 {  in random_nonzero_vec2()
 
 | 
| /external/rust/crates/glam/src/features/ | 
| D | impl_bytemuck.rs | 17 unsafe impl Pod for Vec2 {}  implementation18 unsafe impl Zeroable for Vec2 {}  implementation
 
 | 
| /external/deqp/framework/common/ | 
| D | tcuVectorType.hpp | 39 typedef Vector<float, 2>	Vec2;  typedef
 |