Searched refs:absPower (Results 1 – 6 of 6) sorted by relevance
62 int absPower = Math.abs(this.getDimensionality()); in getNeutralIdentifier() local64 assert absPower > 0 : "this function does not support the dimensionless single units"; in getNeutralIdentifier()66 if (absPower == 1) { in getNeutralIdentifier()68 } else if (absPower == 2) { in getNeutralIdentifier()70 } else if (absPower == 3) { in getNeutralIdentifier()72 } else if (absPower <= 15) { in getNeutralIdentifier()74 result.append(absPower); in getNeutralIdentifier()
64 int absPower = Math.abs(this.getDimensionality()); in getNeutralIdentifier() local66 assert absPower > 0 : "this function does not support the dimensionless single units"; in getNeutralIdentifier()68 if (absPower == 1) { in getNeutralIdentifier()70 } else if (absPower == 2) { in getNeutralIdentifier()72 } else if (absPower == 3) { in getNeutralIdentifier()74 } else if (absPower <= 15) { in getNeutralIdentifier()76 result.append(absPower); in getNeutralIdentifier()
950 int32_t absPower = std::abs(this->dimensionality); in appendNeutralIdentifier() local952 U_ASSERT(absPower > 0); // "this function does not support the dimensionless single units"; in appendNeutralIdentifier()954 if (absPower == 1) { in appendNeutralIdentifier()956 } else if (absPower == 2) { in appendNeutralIdentifier()958 } else if (absPower == 3) { in appendNeutralIdentifier()960 } else if (absPower <= 15) { in appendNeutralIdentifier()962 result.appendNumber(absPower, status); in appendNeutralIdentifier()
91 auto absPower = std::abs(this->constantExponents[i]); in substituteConstants() local93 double absConstantValue = std::pow(constantsValues[i], absPower); in substituteConstants()