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

  /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/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/clang/lib/AST/
ASTImporter.cpp 493 const DependentSizedExtVectorType *Vec2
496 Vec1->getSizeExpr(), Vec2->getSizeExpr()))
500 Vec2->getElementType()))
508 const VectorType *Vec2 = cast<VectorType>(T2);
511 Vec2->getElementType()))
513 if (Vec1->getNumElements() != Vec2->getNumElements())
515 if (Vec1->getVectorKind() != Vec2->getVectorKind())
    [all...]

Completed in 113 milliseconds