Searched defs:xMax (Results 1 - 25 of 30) sorted by relevance

12

/external/neven/FaceRecEm/common/src/b_FDSDK/
H A DDCR.h56 s16p16 xMax; /* x max coordinate */ member in struct:__anon14855
/external/harfbuzz_ng/src/
H A Dhb-ot-glyf-table.hh95 FWORD xMax; /* Maximum x for coordinate data. */ member in struct:OT::glyfGlyphHeader
H A Dhb-ot-head-table.hh126 SHORT xMax; /* For all glyph bounding boxes. */ member in struct:OT::head
/external/pdfium/xfa/src/fxbarcode/pdf417/
H A DBC_PDF417BarcodeMatrix.cpp74 int32_t xMax = bytearray.GetSize(); local
75 m_matrixOut.SetSize(xMax * yMax);
76 m_outWidth = xMax;
84 k = i * xMax;
85 for (int32_t l = 0; l < xMax; l++) {
/external/skia/src/sfnt/
H A DSkOTTable_head.h80 SK_OT_SHORT xMax; member in struct:SkOTTableHead
H A DSkOTTable_glyf.h71 SK_OT_FWORD xMax; member in struct:SkOTTableGlyphData
/external/freetype/src/base/
H A Dftoutln.c481 FT_Pos xMin, yMin, xMax, yMax; local
490 xMax = 0;
499 xMin = xMax = vec->x;
510 if ( x > xMax ) xMax = x;
518 acbox->xMax = xMax;
1065 if ( cbox.xMin == cbox.xMax || cbox.yMin == cbox.yMax )
1068 xshift = FT_MSB( (FT_UInt32)( FT_ABS( cbox.xMax ) |
/external/pdfium/third_party/freetype/src/base/
H A Dftoutln.c478 FT_Pos xMin, yMin, xMax, yMax; local
487 xMax = 0;
496 xMin = xMax = vec->x;
507 if ( x > xMax ) xMax = x;
515 acbox->xMax = xMax;
1059 if ( cbox.xMin == cbox.xMax || cbox.yMin == cbox.yMax )
1062 xshift = FT_MSB( (FT_UInt32)( FT_ABS( cbox.xMax ) |
/external/icu/icu4c/source/samples/layout/
H A Dsfnt.h158 le_int16 xMax; member in struct:HEADTable
/external/icu/icu4c/source/test/letest/
H A DFontObject.h121 le_int16 xMax; member in struct:HEADTable
H A Dsfnt.h287 le_int16 xMax; member in struct:HEADTable
/external/icu/icu4c/source/test/perf/leperf/
H A DFontObject.h121 le_int16 xMax; member in struct:HEADTable
H A Dsfnt.h287 le_int16 xMax; member in struct:HEADTable
/external/deqp/framework/referencerenderer/
H A DrrRasterizer.cpp508 const deInt64 xMax = de::max(de::max(x0, x1), x2); local
514 m_bboxMax.x() = ceilSubpixelToPixelCoord (xMax, m_horizontalFill == FILL_RIGHT);
888 const deInt64 xMax = de::max(x0, x1) + toSubpixelCoord(1);
898 m_bboxMax.x() = de::clamp(ceilSubpixelToPixelCoord (xMax, true), m_viewport.x(), m_viewport.x() + m_viewport.z() - 1);
912 m_bboxMax.x() = de::clamp(ceilSubpixelToPixelCoord (xMax, true), m_viewport.x() - lineWidthPixels, m_viewport.x() + m_viewport.z() - 1);
1108 const deInt64 xMax = de::max(x0, x1) + toSubpixelCoord(1);
1114 m_bboxMax.x() = ceilSubpixelToPixelCoord (xMax, true);
/external/deqp/modules/gles3/functional/
H A Des3fFboRenderTest.cpp434 int xMax = renderTarget.getWidth()-width+1; local
436 int x = deRandom_getUint32(&rnd) % xMax;
H A Des3fMultisampleTests.cpp122 int xMax = de::clamp(max4(p0.x(), p1.x(), p2.x(), p3.x()), 0, img.getWidth()-1); local
128 for (int x = xMin; x <= xMax; x++)
154 int xMax = de::clamp(max4(p0.x(), p1.x(), p2.x(), p3.x()), 0, img.getWidth()-1); local
156 tcu::RGBA refColor = img.getPixel((xMin + xMax) / 2, (yMin + yMax) / 2);
159 for (int x = xMin; x <= xMax; x++)
/external/freetype/include/freetype/
H A Dftimage.h97 /* xMax :: The horizontal maximum (right-most). */
118 FT_Pos xMax, yMax; member in struct:FT_BBox_
H A Dtttables.h98 FT_Short xMax; member in struct:TT_Header_
/external/pdfium/third_party/freetype/include/freetype/
H A Dftimage.h97 /* xMax :: The horizontal maximum (right-most). */
118 FT_Pos xMax, yMax; member in struct:FT_BBox_
H A Dtttables.h98 FT_Short xMax; member in struct:TT_Header_
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageLoadStoreTests.cpp288 const int xMax = imageSize.x() - 1; local
295 const tcu::IVec4 color(x^y^z, (xMax - x)^y^z, x^(yMax - y)^z, (xMax - x)^(yMax - y)^z);
320 const int xMax = access.getWidth() - 1; local
328 const tcu::UVec4 temp = access.getPixelUint(xMax - x, y, z);
329 access.setPixel(access.getPixelUint(x, y, z), xMax - x, y, z);
337 const tcu::Vec4 temp = access.getPixel(xMax - x, y, z);
338 access.setPixel(access.getPixel(x, y, z), xMax - x, y, z);
466 const std::string xMax = de::toString(m_texture.size().x() - 1); local
471 + "(" + xMax
922 const std::string xMax = de::toString(m_texture.size().x() - 1); local
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fFboRenderTest.cpp572 int xMax = renderTarget.getWidth()-width+1; local
574 int x = deRandom_getUint32(&rnd) % xMax;
H A Des2fMultisampleTests.cpp120 int xMax = de::clamp(max4(p0.x(), p1.x(), p2.x(), p3.x()), 0, img.getWidth()-1); local
126 for (int x = xMin; x <= xMax; x++)
152 int xMax = de::clamp(max4(p0.x(), p1.x(), p2.x(), p3.x()), 0, img.getWidth()-1); local
154 tcu::RGBA refColor = img.getPixel((xMin + xMax) / 2, (yMin + yMax) / 2);
157 for (int x = xMin; x <= xMax; x++)
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp168 const float xMax = -1.0f + 2.0f*coverage; local
171 xMax, +1.0f, depth, 0.0f,
172 xMax, -1.0f, depth, 1.0f,
176 xMax, +1.0f, depth, 2.0f,
/external/freetype/src/smooth/
H A Dftgrays.c1663 TPos xMin, yMin, xMax, yMax; local
1672 xMax = 0;
1681 xMin = xMax = vec->x;
1692 if ( x > xMax ) xMax = x;
1700 acbox->xMax = xMax;
1921 if ( cbox.xMin < -0x1000000L || cbox.xMax > 0x1000000L ||
1928 cbox.xMax = ( cbox.xMax
[all...]

Completed in 786 milliseconds

12