Home | History | Annotate | Download | only in fpdf_render

Lines Matching refs:start_x

22     FX_FLOAT start_x = pCoords->GetNumber(0);
40 FX_FLOAT x_span = end_x - start_x;
79 FX_FLOAT scale = FXSYS_Div(FXSYS_Mul(x - start_x, x_span) + FXSYS_Mul(y - start_y, y_span), axis_len_square);
105 FX_FLOAT start_x = pCoords->GetNumber(0);
153 FX_FLOAT a = FXSYS_Mul(start_x - end_x, start_x - end_x) +
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) -
353 int start_x = min_x, end_x = max_x;
354 if (start_x < 0) {
355 start_x = 0;
360 FX_LPBYTE dib_buf = pBitmap->GetBuffer() + y * pBitmap->GetPitch() + start_x * 4;
364 FX_FLOAT R = r[start_index] + (start_x - min_x) * r_unit;
365 FX_FLOAT G = g[start_index] + (start_x - min_x) * g_unit;
366 FX_FLOAT B = b[start_index] + (start_x - min_x) * b_unit;
367 for (int x = start_x; x < end_x; x ++) {
1050 int start_x, start_y;
1052 start_x = FXSYS_round(mtPattern2Device.e) + col * width - clip_box.left;
1058 start_x = FXSYS_round(orig_x + left_offset) - clip_box.left;
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);