OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FXSYS_Div
(Results
1 - 11
of
11
) sorted by null
/external/pdfium/core/src/fxge/agg/agg23/
agg_clip_liang_barsky.h
53
FX_FLOAT tinx =
FXSYS_Div
(xin - x1, deltax);
65
FX_FLOAT tiny =
FXSYS_Div
(yin - y1, deltay);
81
FX_FLOAT toutx =
FXSYS_Div
(xout - x1, deltax);
82
FX_FLOAT touty =
FXSYS_Div
(yout - y1, deltay);
agg_math_stroke.h
61
da = FXSYS_acos(
FXSYS_Div
(width, width +
FXSYS_Div
(1.0f / 8, approximation_scale))) * 2;
155
FX_FLOAT dx1 =
FXSYS_Div
(v1.y - v0.y, len);
156
FX_FLOAT dy1 =
FXSYS_Div
(v1.x - v0.x, len);
171
FX_FLOAT da = FXSYS_acos(
FXSYS_Div
(width, width +
172
FXSYS_Div
(1.0f / 8, approximation_scale))) * 2;
fx_agg_driver.cpp
151
unit =
FXSYS_Div
(1.0f, (pObject2Device->GetXUnit() + pObject2Device->GetYUnit()) / 2);
[
all
...]
/external/pdfium/core/src/reflow/
reflowedpage.cpp
194
display_matrix.Set(
FXSYS_Div
((FX_FLOAT)(x2 - x0), m_PageWidth),
195
FXSYS_Div
((FX_FLOAT)(y2 - y0), m_PageWidth),
196
FXSYS_Div
((FX_FLOAT)(x1 - x0), m_PageHeight),
197
FXSYS_Div
((FX_FLOAT)(y1 - y0), m_PageHeight),
/external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp
79
FX_FLOAT scale =
FXSYS_Div
(FXSYS_Mul(x - start_x, x_span) + FXSYS_Mul(y - start_y, y_span), axis_len_square);
176
s =
FXSYS_Div
(-c, b);
185
s1 =
FXSYS_Div
(-b - root, 2 * a);
186
s2 =
FXSYS_Div
(-b + root, 2 * a);
188
s2 =
FXSYS_Div
(-b - root, 2 * a);
189
s1 =
FXSYS_Div
(-b + root, 2 * a);
[
all
...]
/external/pdfium/core/src/fxge/dib/
fx_dib_engine.cpp
19
scale =
FXSYS_Div
((FX_FLOAT)(src_len), (FX_FLOAT)(dest_len));
160
double dest_start =
FXSYS_Div
((FX_FLOAT)(j) - base, scale);
161
double dest_end =
FXSYS_Div
((FX_FLOAT)(j + 1) - base, scale);
231
double scale_x =
FXSYS_Div
((FX_FLOAT)(m_SrcWidth), (FX_FLOAT)(m_DestWidth));
232
double scale_y =
FXSYS_Div
((FX_FLOAT)(m_SrcHeight), (FX_FLOAT)(m_DestHeight));
[
all
...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp
1016
display_matrix.Set(
FXSYS_Div
((FX_FLOAT)(x2 - x0), m_PageWidth),
1017
FXSYS_Div
((FX_FLOAT)(y2 - y0), m_PageWidth),
1018
FXSYS_Div
((FX_FLOAT)(x1 - x0), m_PageHeight),
1019
FXSYS_Div
((FX_FLOAT)(y1 - y0), m_PageHeight),
/external/pdfium/core/src/fxge/ge/
fx_ge_path.cpp
268
start_k =
FXSYS_Div
(middle_y - start_y, middle_x - start_x);
274
end_k =
FXSYS_Div
(end_y - middle_y, end_x - middle_x);
333
FX_FLOAT join_x =
FXSYS_Div
(end_outside_c - start_outside_c, start_k - end_k);
/external/pdfium/core/include/fxcrt/
fx_system.h
305
#define
FXSYS_Div
(a, b) ((a) / (b))
/external/pdfium/core/src/fxge/win32/
fx_win32_print.cpp
127
FX_FLOAT area_scale =
FXSYS_Div
((FX_FLOAT)(src_width * src_height), dest_area);
fx_win32_gdipext.cpp
[
all
...]
Completed in 1130 milliseconds