Lines Matching refs:currentSqr
149 uint32_t currentSqr = static_cast<int32_t>(xi) * xi + ySqr_;
150 if (currentSqr > outRadiusSqr_) {
165 if (currentSqr < inRadiusSqr_) {
332 uint32_t currentSqr = static_cast<int32_t>(xAnti) * xAnti + ySqr_;
333 if ((currentSqr <= antiOutRadiusSqr_) || (xAnti == lineEnd_)) {
341 uint32_t currentSqr = static_cast<int32_t>(xAnti) * xAnti + ySqr_;
342 if ((currentSqr <= antiInRadiusSqr_) || (xAnti == -1)) {
349 uint32_t currentSqr = static_cast<int32_t>(xAnti) * xAnti + ySqr_;
351 (((static_cast<uint64_t>(outRadius_) << 1) - 1 - (currentSqr - antiOutRadiusSqr_)) * OPA_OPAQUE) /
358 uint32_t currentSqr = static_cast<int32_t>(xAnti) * xAnti + ySqr_;
359 if (currentSqr <= antiInRadiusSqr_) {
362 uint8_t antiOpa = (static_cast<uint64_t>(currentSqr - antiInRadiusSqr_) * OPA_OPAQUE) / ((inRadius_ << 1) - 1);