HomeSort by relevance Sort by last modified time
    Searched defs:Vec2 (Results 1 - 12 of 12) sorted by null

  /external/clang/test/CodeGen/
arm_function_epilog.cpp 4 struct Vec2 {
10 // CHECK: define arm_aapcs_vfpcc %struct.Vec2 @_Z7getVec2v()
11 // CHECK: ret %struct.Vec2
12 Vec2 getVec2() {
13 Vec2 out;
14 union { Vec2* v; unsigned char* u; } x;
  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 24 class Vec2{
26 Vec2(T inputX, T inputY) {
31 Vec2() {}
33 inline Vec2<T> operator+ (const Vec2<T> &param) const {
34 Vec2<T> temp(mX + param.x(), mY + param.y());
38 inline Vec2<T> operator- (const Vec2<T> &param) const {
39 Vec2<T> temp(mX - param.x(), mY - param.y());
43 inline Vec2<float> operator/ (const int param) const
    [all...]
  /external/deqp/framework/common/
tcuVectorType.hpp 39 typedef Vector<float, 2> Vec2;
  /prebuilts/ndk/r16/sources/android/ndk_helper/
vecmath.h 34 class Vec2;
43 class Vec2
55 Vec2()
60 Vec2( const float fX, const float fY )
66 Vec2( const Vec2& vec )
72 Vec2( const float* pVec )
79 Vec2 operator*( const Vec2& rhs ) const
81 Vec2 ret
    [all...]
  /external/deqp/modules/gles2/scripts/
genutil.py 226 def toVec2(self): return Vec2(self.x, self.x)
283 elif isinstance(val, Vec2):
284 return Vec2(self.x * val.x, self.x * val.y)
295 elif isinstance(val, Vec2):
296 return Vec2(self.x / val.x, self.x / val.y)
309 elif (len(lst) == 2): return Vec2(lst[0], lst[1])
331 class Vec2(Vec):
337 def applyUnary(self, func): return Vec2(func(self.x), func(self.y))
338 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y))
342 def toVec2(self): return Vec2(self.x, self.y
    [all...]
  /external/deqp/modules/gles3/scripts/
genutil.py 239 def toVec2(self): return Vec2(self.x, self.x)
315 elif isinstance(val, Vec2):
316 return Vec2(self.x * val.x, self.x * val.y)
327 elif isinstance(val, Vec2):
328 return Vec2(self.x / val.x, self.x / val.y)
367 elif (len(lst) == 2): return Vec2(lst[0], lst[1])
395 class Vec2(Vec):
401 def applyUnary(self, func): return Vec2(func(self.x), func(self.y))
402 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y))
406 def toVec2(self): return Vec2(self.x, self.y
    [all...]
  /external/deqp/modules/gles31/scripts/
genutil.py 239 def toVec2(self): return Vec2(self.x, self.x)
317 elif isinstance(val, Vec2):
318 return Vec2(self.x * val.x, self.x * val.y)
329 elif isinstance(val, Vec2):
330 return Vec2(self.x / val.x, self.x / val.y)
369 elif (len(lst) == 2): return Vec2(lst[0], lst[1])
397 class Vec2(Vec):
403 def applyUnary(self, func): return Vec2(func(self.x), func(self.y))
404 def applyBinary(self, func, other): return Vec2(func(self.x, other.x), func(self.y, other.y))
408 def toVec2(self): return Vec2(self.x, self.y
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 608 const DependentSizedExtVectorType *Vec2
611 Vec1->getSizeExpr(), Vec2->getSizeExpr()))
615 Vec2->getElementType()))
623 const VectorType *Vec2 = cast<VectorType>(T2);
626 Vec2->getElementType()))
628 if (Vec1->getNumElements() != Vec2->getNumElements())
630 if (Vec1->getVectorKind() != Vec2->getVectorKind())
    [all...]

Completed in 554 milliseconds