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

  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MosaicTypes.h 59 double lft, rgt, top, bot; member in class:BlendRect
  /system/tools/hidl/
ConstantExpression.cpp 72 ScalarType::Kind rgt) {
73 CHECK(isSupported(lft) && isSupported(rgt));
75 if(lft == rgt) return lft; // easy case
76 if(lft == SK(BOOL)) return rgt;
77 if(rgt == SK(BOOL)) return lft;
80 bool isRgtSigned = (rgt == SK(INT8)) || (rgt == SK(INT16))
81 || (rgt == SK(INT32)) || (rgt == SK(INT64));
82 if(isLftSigned == isRgtSigned) return lft < rgt ? rgt : lft
90 CHECK(false) << "Could not do usual arithmetic conversion for type " << lft << "and" << rgt; local
    [all...]

Completed in 713 milliseconds