Lines Matching refs:right
14 thread bool operator==(const half2x4 left, const half2x4 right);
15 thread bool operator!=(const half2x4 left, const half2x4 right);
17 thread bool operator==(const half4x2 left, const half4x2 right);
18 thread bool operator!=(const half4x2 left, const half4x2 right);
20 thread bool operator==(const float4x3 left, const float4x3 right);
21 thread bool operator!=(const float4x3 left, const float4x3 right);
33 thread bool operator==(const half2x4 left, const half2x4 right) {
34 return all(left[0] == right[0]) &&
35 all(left[1] == right[1]);
37 thread bool operator!=(const half2x4 left, const half2x4 right) {
38 return !(left == right);
40 thread bool operator==(const half4x2 left, const half4x2 right) {
41 return all(left[0] == right[0]) &&
42 all(left[1] == right[1]) &&
43 all(left[2] == right[2]) &&
44 all(left[3] == right[3]);
46 thread bool operator!=(const half4x2 left, const half4x2 right) {
47 return !(left == right);
49 thread bool operator==(const float4x3 left, const float4x3 right) {
50 return all(left[0] == right[0]) &&
51 all(left[1] == right[1]) &&
52 all(left[2] == right[2]) &&
53 all(left[3] == right[3]);
55 thread bool operator!=(const float4x3 left, const float4x3 right) {
56 return !(left == right);