Lines Matching refs:y_
27 int32_t den = static_cast<int32_t>(aA.x_ - aB.x_) * (bA.y_ - bB.y_) -
28 static_cast<int32_t>(aA.y_ - aB.y_) * (bA.x_ - bB.x_);
32 int32_t xNum = (static_cast<int32_t>(aA.x_) * aB.y_ - static_cast<int32_t>(aA.y_) * aB.x_) * (bA.x_ - bB.x_) -
33 (aA.x_ - aB.x_) * (static_cast<int32_t>(bA.x_) * bB.y_ - static_cast<int32_t>(bA.y_) * bB.x_);
34 int32_t yNum = (static_cast<int32_t>(aA.x_) * aB.y_ - static_cast<int32_t>(aA.y_) * aB.x_) * (bA.y_ - bB.y_) -
35 (aA.y_ - aB.y_) * (static_cast<int32_t>(bA.x_) * bB.y_ - static_cast<int32_t>(bA.y_) * bB.x_);
37 out.y_ = yNum / den;
49 int32_t iPos = static_cast<int32_t>(aB.x_ - aA.x_) * (bA.y_ - aA.y_) -
50 static_cast<int32_t>(aB.y_ - aA.y_) * (bA.x_ - aA.x_);
51 int32_t kPos = static_cast<int32_t>(aB.x_ - aA.x_) * (bB.y_ - aA.y_) -
52 static_cast<int32_t>(aB.y_ - aA.y_) * (bB.x_ - aA.x_);
71 int16_t iY = poly[i].y_;
73 int16_t kY = poly[k].y_;
76 int16_t y1 = line[0].y_;
78 int16_t y2 = line[1].y_;
91 newPoly[newVertexNum].y_ = kY;
103 newPoly[newVertexNum].y_ = intersectPoint.y_;
107 newPoly[newVertexNum].y_ = kY;
118 newPoly[newVertexNum].y_ = intersectPoint.y_;
153 int16_t iY = poly[i].y_;
155 int16_t kY = poly[k].y_;
158 int16_t y1 = line[0].y_;
160 int16_t y2 = line[1].y_;
191 int16_t minY = vertexes_[0].y_;
192 int16_t maxY = vertexes_[0].y_;
200 if (minY > vertexes_[i].y_) {
201 minY = vertexes_[i].y_;
203 if (maxY < vertexes_[i].y_) {
204 maxY = vertexes_[i].y_;