HomeSort by relevance Sort by last modified time
    Searched defs:yMax (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/neven/FaceRecEm/common/src/b_FDSDK/
DCR.h 57 s16p16 yMax; /* y max coordinate */
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.cpp 70 int32_t yMax = m_height * yScale;
74 m_matrixOut.SetSize(xMax * yMax);
76 m_outHeight = yMax;
78 for (int32_t i = 0; i < yMax; i++) {
  /external/harfbuzz_ng/src/
hb-ot-glyf-table.hh 96 FWORD yMax; /* Maximum y for coordinate data. */
hb-ot-head-table.hh 127 SHORT yMax; /* For all glyph bounding boxes. */
  /external/swiftshader/src/Renderer/
QuadRasterizer.cpp 56 Int yMax = *Pointer<Int>(primitive + OFFSET(Primitive,yMax));
63 If(yMin < yMax)
65 rasterize(yMin, yMax);
92 void QuadRasterizer::rasterize(Int &yMin, Int &yMax)
313 Until(y >= yMax)
Primitive.hpp 40 int yMax;
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableMeteringRectangle.java 34 /** (xmin, ymin, xmax, ymax, weight) */
46 int yMax = yMin + value.getHeight();
52 buffer.putInt(yMax);
61 int yMax = buffer.getInt();
65 int height = yMax - yMin;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
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, min, yMin)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 47 GLfloat yMin, yMax;
173 yMax = vMax->attrib[VARYING_SLOT_POS][1];
175 iyMax = (GLint) yMax + 1;
  /external/skia/src/sfnt/
SkOTTable_head.h 80 SK_OT_SHORT yMax;
SkOTTable_glyf.h 71 SK_OT_FWORD yMax;
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMultisampleLoadStoreTests.cpp 87 const std::string yMax = de::toString(caseDef.texture.size().y() - 1);
102 + (numColorComponents > 2 ? "gx^(" + yMax + "-gy)^gz, " : "0, ")
103 + (numColorComponents > 3 ? "(" + xMax + "-gx)^(" + yMax + "-gy)^gz" : "1")
vktImageLoadStoreTests.cpp 199 const int yMax = imageSize.y() - 1;
205 const tcu::IVec4 color(x^y^z, (xMax - x)^y^z, x^(yMax - y)^z, (xMax - x)^(yMax - y)^z);
356 const std::string yMax = de::toString(m_texture.size().y() - 1);
361 + "gx^(" + yMax + "-gy)^gz, "
362 + "(" + xMax + "-gx)^(" + yMax + "-gy)^gz)";
    [all...]
  /external/freetype/src/base/
ftoutln.c 481 FT_Pos xMin, yMin, xMax, yMax;
491 yMax = 0;
500 yMin = yMax = vec->y;
514 if ( y > yMax ) yMax = y;
520 acbox->yMax = yMax;
1065 if ( cbox.xMin == cbox.xMax || cbox.yMin == cbox.yMax )
1072 yshift = FT_MSB( (FT_UInt32)( cbox.yMax - cbox.yMin ) ) - 14;
  /external/pdfium/third_party/freetype/src/base/
ftoutln.c 478 FT_Pos xMin, yMin, xMax, yMax;
488 yMax = 0;
497 yMin = yMax = vec->y;
511 if ( y > yMax ) yMax = y;
517 acbox->yMax = yMax;
1059 if ( cbox.xMin == cbox.xMax || cbox.yMin == cbox.yMax )
1066 yshift = FT_MSB( (FT_UInt32)( cbox.yMax - cbox.yMin ) ) - 14;
  /external/icu/icu4c/source/samples/layout/
sfnt.h 165 le_int16 yMax;
  /external/icu/icu4c/source/test/letest/
FontObject.h 124 le_int16 yMax;
sfnt.h 290 le_int16 yMax;
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.h 128 le_int16 yMax;
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 168 Int yMax = Y[0];
175 yMax = Max(Y[i], yMax);
184 yMax = (yMax + 0x14) >> 4;
189 yMax = (yMax + 0x0F) >> 4;
192 If(yMin == yMax)
198 yMax = Min(yMax, *Pointer<Int>(data + OFFSET(DrawData,scissorY1)))
    [all...]
  /external/deqp/framework/referencerenderer/
rrRasterizer.cpp 515 const deInt64 yMax = de::max(de::max(y0, y1), y2);
520 m_bboxMax.y() = ceilSubpixelToPixelCoord (yMax, m_verticalFill == FILL_TOP);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fMultisampleTests.cpp 121 int yMax = de::clamp(max4(p0.y(), p1.y(), p2.y(), p3.y()), 0, img.getHeight()-1);
125 for (int y = yMin; y <= yMax; y++)
153 int yMax = de::clamp(max4(p0.y(), p1.y(), p2.y(), p3.y()), 0, img.getHeight()-1);
154 tcu::RGBA refColor = img.getPixel((xMin + xMax) / 2, (yMin + yMax) / 2);
156 for (int y = yMin; y <= yMax; y++)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp 435 int yMax = renderTarget.getHeight()-height+1;
437 int y = deRandom_getUint32(&rnd) % yMax;
    [all...]
  /external/freetype/include/freetype/
ftimage.h 99 /* yMax :: The vertical maximum (top-most). */
108 /* Similarly, if `ymax' is positive, this value gives the glyph's */
118 FT_Pos xMax, yMax;
    [all...]
tttables.h 100 FT_Short yMax;
332 FT_Short yMax_Extent; /* ymax extents */
    [all...]

Completed in 730 milliseconds

1 2 3