/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | GlyfEncoder.java | 213 int absX = Math.abs(x); in writeTriplet() local 223 } else if (y == 0 && absX < 1280) { in writeTriplet() 224 glyfStream.write(onCurveBit + 10 + ((absX & 0xf00) >> 7) + xSignBit); in writeTriplet() 225 os.write(absX & 0xff); in writeTriplet() 226 } else if (absX < 65 && absY < 65) { in writeTriplet() 227 glyfStream.write(onCurveBit + 20 + ((absX - 1) & 0x30) + (((absY - 1) & 0x30) >> 2) + in writeTriplet() 229 os.write((((absX - 1) & 0xf) << 4) | ((absY - 1) & 0xf)); in writeTriplet() 230 } else if (absX < 769 && absY < 769) { in writeTriplet() 231 glyfStream.write(onCurveBit + 84 + 12 * (((absX - 1) & 0x300) >> 8) + in writeTriplet() 233 os.write((absX - 1) & 0xff); in writeTriplet() [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | GlyfEncoder.java | 213 int absX = Math.abs(x); in writeTriplet() local 223 } else if (y == 0 && absX < 1280) { in writeTriplet() 224 glyfStream.write(onCurveBit + 10 + ((absX & 0xf00) >> 7) + xSignBit); in writeTriplet() 225 os.write(absX & 0xff); in writeTriplet() 226 } else if (absX < 65 && absY < 65) { in writeTriplet() 227 glyfStream.write(onCurveBit + 20 + ((absX - 1) & 0x30) + (((absY - 1) & 0x30) >> 2) + in writeTriplet() 229 os.write((((absX - 1) & 0xf) << 4) | ((absY - 1) & 0xf)); in writeTriplet() 230 } else if (absX < 769 && absY < 769) { in writeTriplet() 231 glyfStream.write(onCurveBit + 84 + 12 * (((absX - 1) & 0x300) >> 8) + in writeTriplet() 233 os.write((absX - 1) & 0xff); in writeTriplet() [all …]
|
/third_party/flutter/skia/tests/ |
D | PathOpsAngleTest.cpp | 131 double absX = fabs(x); in find_slop() local 133 double length = absX < absY ? absX / 2 + absY : absX + absY / 2; in find_slop()
|
/third_party/skia/tests/ |
D | PathOpsAngleTest.cpp | 130 double absX = fabs(x); in find_slop() local 132 double length = absX < absY ? absX / 2 + absY : absX + absY / 2; in find_slop()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RewriteCubeMapSamplersAs2DArray.cpp | 542 TIntermSymbol *absX = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction() local 547 &absX->variable(), new TIntermUnary(EOpAbs, x->deepCopy(), nullptr)); in declareCoordTranslationFunction() 581 "max", new TIntermSequence({absX->deepCopy(), maxYZ}), *mSymbolTable, 100); in declareCoordTranslationFunction() 585 TIntermTyped *isXMajor = new TIntermBinary(EOpEqual, ma->deepCopy(), absX->deepCopy()); in declareCoordTranslationFunction() 674 new TIntermBinary(EOpAssign, ma->deepCopy(), absX->deepCopy())); in declareCoordTranslationFunction()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RewriteCubeMapSamplersAs2DArray.cpp | 438 TIntermSymbol *absX = new TIntermSymbol(CreateTempVariable(mSymbolTable, floatType)); in declareCoordTranslationFunction() local 443 &absX->variable(), in declareCoordTranslationFunction() 547 TIntermSequence argsMaxValue = {absX->deepCopy(), maxYZ}; in declareCoordTranslationFunction() 553 TIntermTyped *isXMajor = new TIntermBinary(EOpEqual, ma->deepCopy(), absX->deepCopy()); in declareCoordTranslationFunction() 611 new TIntermBinary(EOpAssign, ma->deepCopy(), absX->deepCopy())); in declareCoordTranslationFunction()
|
/third_party/flutter/skia/src/pathops/ |
D | SkOpAngle.cpp | 709 double absX = fabs(x); in findSector() local 711 double xy = SkPath::kLine_Verb == verb || !AlmostEqualUlps(absX, absY) ? absX - absY : 0; in findSector()
|
/third_party/skia/src/pathops/ |
D | SkOpAngle.cpp | 709 double absX = fabs(x); in findSector() local 711 double xy = SkPath::kLine_Verb == verb || !AlmostEqualUlps(absX, absY) ? absX - absY : 0; in findSector()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SamplerCore.cpp | 1246 Float4 absX = Abs(x); in cubeFace() local 1250 Int4 xy = CmpNLE(absX, absY); // abs(x) > abs(y) in cubeFace() 1252 Int4 zx = CmpNLE(absZ, absX); // abs(z) > abs(x) in cubeFace() 1280 M = Max(Max(absX, absY), absZ); in cubeFace()
|
/third_party/flutter/glfw/src/ |
D | x11_window.c | 1331 const int absX = (event->xclient.data.l[2] >> 16) & 0xFFFF; in processEvent() local 1336 _glfwInputCursorPos(window, absX - x, absY - y); in processEvent()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | SamplerCore.cpp | 1584 Float4 absX = Abs(x); in cubeFace() local 1588 Int4 xy = CmpNLE(absX, absY); // abs(x) > abs(y) in cubeFace() 1590 Int4 zx = CmpNLE(absZ, absX); // abs(z) > abs(x) in cubeFace() 1616 M = Max(Max(absX, absY), absZ); in cubeFace()
|
/third_party/mesa3d/docs/relnotes/ |
D | 21.0.0.rst | 318 - pan/bi: Use consistent negX/absX naming
|