/external/deqp/modules/gles2/scripts/ |
H A D | genutil.py | 141 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) 165 def step(a, b): return (b.expandVec(a)).applyBinary(lambda edge, x: [1.0, 0.0][x < edge], a.expandVec(b)) 198 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) member in class:Scalar 316 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y)) member in class:Vec2 402 def applyBinary(self, func, other): return Vec3(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z)) member in class:Vec3 494 def applyBinary(self, func, other): return Vec4(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z), func(self.w, other.w)) member in class:Vec4
|
/external/deqp/modules/gles3/scripts/ |
H A D | genutil.py | 151 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) 175 def step(a, b): return (b.expandVec(a)).applyBinary(lambda edge, x: [1.0, 0.0][x < edge], a.expandVec(b)) 211 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) member in class:Scalar 380 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y)) member in class:Vec2 491 def applyBinary(self, func, other): return Vec3(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z)) member in class:Vec3 610 def applyBinary(self, func, other): return Vec4(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z), func(self.w, other.w)) member in class:Vec4
|
/external/deqp/modules/gles31/scripts/ |
H A D | genutil.py | 151 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) 175 def step(a, b): return (b.expandVec(a)).applyBinary(lambda edge, x: [1.0, 0.0][x < edge], a.expandVec(b)) 211 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) member in class:Scalar 382 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y)) member in class:Vec2 493 def applyBinary(self, func, other): return Vec3(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z)) member in class:Vec3 612 def applyBinary(self, func, other): return Vec4(func(self.x, other.x), func(self.y, other.y), func(self.z, other.z), func(self.w, other.w)) member in class:Vec4
|