/external/fonttools/Lib/fontTools/misc/ |
H A D | arrayTools.py | 13 (xMin, yMin, xMax, yMax) 23 tuple: (xMin, yMin, xMax, yMax) 25 xMin, yMin, xMax, yMax = calcBounds(array) 29 yMax = int(math.ceil(yMax)) 30 return xMin, yMin, xMax, yMax 36 xMin, yMin, xMax, yMax = bounds 37 return min(xMin, x), min(yMin, y), max(xMax, x), max(yMax, y) 42 xMin, yMin, xMax, yMax = rect 43 return (xMin <= x <= xMax) and (yMin <= y <= yMax) [all...] |
/external/fonttools/Tools/fontTools/misc/ |
H A D | arrayTools.py | 13 (xMin, yMin, xMax, yMax) 23 tuple: (xMin, yMin, xMax, yMax) 25 xMin, yMin, xMax, yMax = calcBounds(array) 29 yMax = int(math.ceil(yMax)) 30 return xMin, yMin, xMax, yMax 36 xMin, yMin, xMax, yMax = bounds 37 return min(xMin, x), min(yMin, y), max(xMax, x), max(yMax, y) 42 xMin, yMin, xMax, yMax = rect 43 return (xMin <= x <= xMax) and (yMin <= y <= yMax) [all...] |
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
H A D | BC_PDF417BarcodeMatrix.cpp | 71 int32_t yMax = m_height * yScale;
local 75 m_matrixOut.SetSize(xMax * yMax);
77 m_outHeight = yMax;
79 for (int32_t i = 0; i < yMax; i++) {
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
H A D | _m_a_x_p.py | 69 yMax = -INFINITY 85 yMax = max(yMax, g.yMax) 100 headTable.yMax = 0 105 headTable.yMax = yMax
|
H A D | _v_h_e_a.py | 57 rsb = height - tsb - (g.yMax - g.yMin) 59 extent = tsb + (g.yMax - g.yMin)
|
/external/fonttools/Tools/fontTools/ttLib/tables/ |
H A D | _m_a_x_p.py | 69 yMax = -INFINITY 85 yMax = max(yMax, g.yMax) 100 headTable.yMax = 0 105 headTable.yMax = yMax
|
H A D | _v_h_e_a.py | 57 rsb = height - tsb - (g.yMax - g.yMin) 59 extent = tsb + (g.yMax - g.yMin)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
H A D | BrentSolver.java | 160 double yMax = f.value(max); 161 if (FastMath.abs(yMax) <= functionValueAccuracy) { 167 if (yInitial * yMax < 0) { 168 return solve(f, initial, yInitial, max, yMax, initial, yInitial); 172 LocalizedFormats.SAME_SIGN_AT_ENDPOINTS, min, max, yMin, yMax); 231 double yMax = f.value(max); 234 double sign = yMin * yMax; 240 } else if (FastMath.abs(yMax) <= functionValueAccuracy) { 246 LocalizedFormats.SAME_SIGN_AT_ENDPOINTS, min, max, yMin, yMax); 250 ret = solve(f, min, yMin, max, yMax, mi [all...] |
/external/freetype/src/truetype/ |
H A D | ttgload.h | 46 FT_Pos yMax,
|
/external/harfbuzz_ng/src/ |
H A D | hb-ot-glyf-table.hh | 96 FWORD yMax; /* Maximum y for coordinate data. */ member in struct:OT::glyfGlyphHeader
|
H A D | hb-ot-head-table.hh | 127 SHORT yMax; /* For all glyph bounding boxes. */ member in struct:OT::head
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
H A D | HillHeightMap.java | 176 int yMax = Math.round(y + radius + 1);
189 if (yMax > size) {
190 yMax = size - 1;
194 for (int j = yMin; j <= yMax; j++) {
|
/external/pdfium/third_party/freetype/src/truetype/ |
H A D | ttgload.h | 46 FT_Pos yMax,
|
/external/freetype/src/raster/ |
H A D | ftrend1.c | 143 cbox.yMax = FT_PIX_ROUND( cbox0.yMax ); 148 cbox.yMax = FT_PIX_CEIL( cbox.yMax ); 165 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 169 cbox.yMax = FT_PIX_CEIL( cbox0.yMax ); 171 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 220 slot->bitmap_top = (FT_Int)( cbox.yMax >> 6 );
|
/external/pdfium/third_party/freetype/src/raster/ |
H A D | ftrend1.c | 143 cbox.yMax = FT_PIX_ROUND( cbox0.yMax ); 148 cbox.yMax = FT_PIX_CEIL( cbox.yMax ); 165 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 169 cbox.yMax = FT_PIX_CEIL( cbox0.yMax ); 171 height = (FT_UInt)( ( cbox.yMax - cbox.yMin ) >> 6 ); 220 slot->bitmap_top = (FT_Int)( cbox.yMax >> 6 );
|
/external/freetype/src/base/ |
H A D | ftbbox.c | 53 if ( p->y > bbox.yMax ) \ 54 bbox.yMax = p->y; \ 61 ( p->y < bbox.yMin || p->y > bbox.yMax ) 217 &user->bbox.yMax ); 418 &user->bbox.yMax ); 459 abbox->yMin = abbox->yMax = 0; 481 cbox.yMin < bbox.yMin || cbox.yMax > bbox.yMax )
|
H A D | ftglyph.c | 130 cbox->yMax = glyph->top * 64; 131 cbox->yMin = cbox->yMax - (FT_Pos)( glyph->bitmap.rows * 64 ); 470 acbox->xMin = acbox->yMin = acbox->xMax = acbox->yMax = 0; 489 acbox->yMax = FT_PIX_CEIL( acbox->yMax ); 499 acbox->yMax >>= 6;
|
/external/pdfium/third_party/freetype/src/base/ |
H A D | ftbbox.c | 53 if ( p->y > bbox.yMax ) \ 54 bbox.yMax = p->y; \ 61 ( p->y < bbox.yMin || p->y > bbox.yMax ) 217 &user->bbox.yMax ); 418 &user->bbox.yMax ); 459 abbox->yMin = abbox->yMax = 0; 481 cbox.yMin < bbox.yMin || cbox.yMax > bbox.yMax )
|
H A D | ftglyph.c | 130 cbox->yMax = glyph->top << 6; 131 cbox->yMin = cbox->yMax - (FT_Pos)( glyph->bitmap.rows << 6 ); 470 acbox->xMin = acbox->yMin = acbox->xMax = acbox->yMax = 0; 489 acbox->yMax = FT_PIX_CEIL( acbox->yMax ); 499 acbox->yMax >>= 6;
|
/external/neven/FaceRecEm/common/src/b_FDSDK/ |
H A D | DCR.h | 57 s16p16 yMax; /* y max coordinate */ member in struct:__anon14855
|
H A D | DCR.c | 221 if( pRectA->xMax <= pRectA->xMin || pRectA->yMax <= pRectA->yMin ) 233 pRectA->yMax >> 16 ); 342 pRectA->yMax = ( pRectA->yMin + ( pRectA->xMax - pRectA->xMin ) ); 351 pRectA->yMax += ( int32 )hdcrA->dcrE.roiRectE.y1E << 16; 357 pRectA->yMax += ( int32 )hdcrA->dcrE.offsE.yE << 16;
|
/external/freetype/src/smooth/ |
H A D | ftsmooth.c | 153 cbox.yMax = FT_PIX_CEIL( cbox.yMax + y_shift ); 159 y_top = cbox.yMax >> 6; 162 height = (FT_ULong)( cbox.yMax - cbox.yMin ) >> 6;
|
/external/pdfium/third_party/freetype/src/smooth/ |
H A D | ftsmooth.c | 153 cbox.yMax = FT_PIX_CEIL( cbox.yMax + y_shift ); 159 y_top = cbox.yMax >> 6; 162 height = (FT_ULong)( cbox.yMax - cbox.yMin ) >> 6;
|
/external/pdfium/third_party/freetype/src/cid/ |
H A D | cidobjs.c | 430 cidface->bbox.yMax = ( cid->font_bbox.yMax + 0xFFFF ) >> 16; 435 cidface->ascender = (FT_Short)( cidface->bbox.yMax );
|
/external/pdfium/third_party/freetype/src/type1/ |
H A D | t1afm.c | 250 fi->Ascender = t1_font->font_bbox.yMax; 292 t1_face->bbox.yMax = ( fi->FontBBox.yMax + 0xFFFF ) >> 16;
|