/external/pdfium/core/src/fxge/apple/ |
fx_apple_platform.cpp | 55 CFX_AffineMatrix new_matrix;
local 61 new_matrix.Transform(ori_x, ori_y);
63 new_matrix.Concat(*pObject2Device);
87 new_matrix.a = -new_matrix.a;
89 new_matrix.b = -new_matrix.b;
90 new_matrix.d = -new_matrix.d;
92 quartz2d.setGraphicsTextMatrix(pContext, &new_matrix);
[all...] |
/external/valgrind/main/drd/tests/ |
matinv.c | 56 static elem_t* new_matrix(const int rows, const int cols) function 147 prod = new_matrix(rows1, cols2); 268 elem_t* const inv = new_matrix(n, n); 269 elem_t* const tmp = new_matrix(n, 2*n); 345 a = new_matrix(matrix_size, matrix_size);
|
omp_matinv.c | 44 static elem_t* new_matrix(const int rows, const int cols) function 135 prod = new_matrix(rows1, cols2); 232 elem_t* const inv = new_matrix(n, n); 233 elem_t* const tmp = new_matrix(n, 2*n); 325 a = new_matrix(matrix_size, matrix_size);
|
/external/srec/srec/include/ |
prelib.h | 59 void copy_linear_transform(preprocessed *datapak, float **new_matrix,
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_image.cpp | 554 CFX_AffineMatrix new_matrix = m_ImageMatrix;
local 555 new_matrix.TranslateI(-rect.left, -rect.top);
585 if (image_render.Start(&bitmap_render, m_pDIBSource, 0xffffffff, 255, &new_matrix, m_Flags, TRUE)) {
644 CFX_AffineMatrix new_matrix = m_ImageMatrix;
local 645 new_matrix.TranslateI(-rect.left, -rect.top);
658 if (image_render.Start(&bitmap_render, m_pDIBSource, 0, 255, &new_matrix, m_Flags, TRUE)) {
672 if (image_render.Start(&bitmap_render, m_Loader.m_pMask, 0xffffffff, 255, &new_matrix, m_Flags, TRUE)) {
[all...] |
fpdf_render.cpp | 848 CFX_AffineMatrix new_matrix = *pObj2Device;
local 849 new_matrix.TranslateI(-rect.left, -rect.top);
850 new_matrix.Scale(scaleX, scaleY);
870 &text_matrix, &new_matrix, textobj->m_GraphState, (FX_ARGB) - 1, 0, NULL);
[all...] |
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_parser.cpp | 621 CFX_AffineMatrix new_matrix(a2, b2, c2, d2, e2, f2);
622 new_matrix.Concat(m_pCurStates->m_CTM);
623 m_pCurStates->m_CTM = new_matrix;
[all...] |
/external/pdfium/core/src/fxge/ge/ |
fx_ge_text.cpp | 251 CFX_AffineMatrix new_matrix(charpos.m_AdjustMatrix[0], charpos.m_AdjustMatrix[1],
253 new_matrix.Concat(deviceCtm);
254 glyph.m_pGlyph = pFaceCache->LoadGlyphBitmap(pFont, charpos.m_GlyphIndex, charpos.m_bFontStyle, &new_matrix,
[all...] |