Searched refs:FXSYS_sqrt (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/core/src/fxcrt/
H A Dfx_basic_coords.cpp395 return FXSYS_sqrt(a * a + b * b);
405 return FXSYS_sqrt(c * c + d * d);
421 FX_FLOAT A = FXSYS_sqrt(a * a + b * b);
422 FX_FLOAT B = FXSYS_sqrt(c * c + d * d);
424 FX_FLOAT C = FXSYS_sqrt(ac * ac + bd * bd);
426 return FXSYS_sqrt(P * (P - A) * (P - B) * (P - C)) * 2;
431 return FXSYS_sqrt(fx * fx + fy * fy);
436 return FXSYS_round(FXSYS_sqrt(fx * fx + fy * fy));
441 return FXSYS_sqrt(fx * fx + fy * fy);
446 return FXSYS_round(FXSYS_sqrt(f
[all...]
/external/pdfium/core/src/reflow/
H A Dreflowedtextpage.cpp153 return FXSYS_sqrt(FXSYS_pow(point.x - floatRect.right, 2) + FXSYS_pow(floatRect.bottom - point.y, 2));
156 return FXSYS_sqrt(FXSYS_pow(point.x - floatRect.right, 2) + FXSYS_pow(point.y - floatRect.top, 2));
159 return FXSYS_sqrt(FXSYS_pow(floatRect.bottom - point.y, 2) + FXSYS_pow(floatRect.left - point.x, 2));
170 return FXSYS_sqrt(FXSYS_pow(floatRect.left - point.x, 2) + FXSYS_pow(point.y - floatRect.top, 2));
/external/pdfium/core/include/fxcrt/
H A Dfx_system.h241 #define FXSYS_sqrt(a) (FX_FLOAT)sqrt(a) macro
275 #define FXSYS_sqrt2(a, b) (FX_FLOAT)FXSYS_sqrt((a)*(a) + (b)*(b))
H A Dfx_coordinates.h154 return FXSYS_sqrt(FXT_PSV::x * FXT_PSV::x + FXT_PSV::y * FXT_PSV::y);
158 FX_FLOAT fLen = FXSYS_sqrt(FXT_PSV::x * FXT_PSV::x + FXT_PSV::y * FXT_PSV::y);
210 return dotProduct / (FX_FLOAT)FXSYS_sqrt(v1.SquareLength() * v2.SquareLength());
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp128 FX_FLOAT size_scale = FXSYS_sqrt(area_scale);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp162 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)));
184 FX_FLOAT root = FXSYS_sqrt(b2_4ac);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_func.cpp252 Push((FX_FLOAT)FXSYS_sqrt(d1));

Completed in 1186 milliseconds