Home | History | Annotate | Download | only in fpdf_render

Lines Matching refs:start_y

23     FX_FLOAT start_y = pCoords->GetNumber(1);
41 FX_FLOAT y_span = end_y - start_y;
79 FX_FLOAT scale = FXSYS_Div(FXSYS_Mul(x - start_x, x_span) + FXSYS_Mul(y - start_y, y_span), axis_len_square);
106 FX_FLOAT start_y = pCoords->GetNumber(1);
154 FXSYS_Mul(start_y - end_y, start_y - end_y) - FXSYS_Mul(start_r - end_r, start_r - end_r);
160 int length = (int)FXSYS_sqrt((FXSYS_Mul(start_x - end_x, start_x - end_x) + FXSYS_Mul(start_y - end_y, start_y - end_y)));
170 FX_FLOAT b = -2 * (FXSYS_Mul(x - start_x, end_x - start_x) + FXSYS_Mul(y - start_y, end_y - start_y) +
172 FX_FLOAT c = FXSYS_Mul(x - start_x, x - start_x) + FXSYS_Mul(y - start_y, y - start_y) -
1050 int start_x, start_y;
1053 start_y = FXSYS_round(mtPattern2Device.f) + row * height - clip_box.top;
1059 start_y = FXSYS_round(orig_y + top_offset) - clip_box.top;
1062 if (start_x < 0 || start_x >= clip_box.Width() || start_y < 0 || start_y >= clip_box.Height()) {
1065 FX_DWORD* dest_buf = (FX_DWORD*)(screen.GetBuffer() + screen.GetPitch() * start_y + start_x * 4);
1073 screen.CompositeBitmap(start_x, start_y, width, height, pPatternBitmap, 0, 0);
1075 screen.CompositeMask(start_x, start_y, width, height, pPatternBitmap, fill_argb, 0, 0);