Home
last modified time | relevance | path

Searched refs:absX (Results 1 - 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DGlyfEncoder.java213 int absX = Math.abs(x); in writeTriplet()
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 in writeTriplet()
[all...]
/third_party/skia/tests/
H A DPathOpsAngleTest.cpp130 double absX = fabs(x); in find_slop() local
132 double length = absX < absY ? absX / 2 + absY : absX + absY / 2; in find_slop()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderSmokeTests.cpp1075 const auto absX = cornerX + blockX; in testFullscreenGradient() local
1076 const auto resColor = outPixels.getPixel(absX, absY); in testFullscreenGradient()
1078 candidates.push_back(refAccess.getPixel(absX, absY)); in testFullscreenGradient()
1086 << coordColorFormat(absX, absY, resColor); in testFullscreenGradient()
H A DvktMeshShaderSmokeTestsEXT.cpp963 const auto absX = cornerX + blockX; in testFullscreenGradient() local
964 const auto resColor = outPixels.getPixel(absX, absY); in testFullscreenGradient()
966 candidates.push_back(refAccess.getPixel(absX, absY)); in testFullscreenGradient()
974 << coordColorFormat(absX, absY, resColor); in testFullscreenGradient()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderSmokeTests.cpp1075 const auto absX = cornerX + blockX; in testFullscreenGradient() local
1076 const auto resColor = outPixels.getPixel(absX, absY); in testFullscreenGradient()
1078 candidates.push_back(refAccess.getPixel(absX, absY)); in testFullscreenGradient()
1086 << coordColorFormat(absX, absY, resColor); in testFullscreenGradient()
H A DvktMeshShaderSmokeTestsEXT.cpp957 const auto absX = cornerX + blockX; in testFullscreenGradient() local
958 const auto resColor = outPixels.getPixel(absX, absY); in testFullscreenGradient()
960 candidates.push_back(refAccess.getPixel(absX, absY)); in testFullscreenGradient()
968 << coordColorFormat(absX, absY, resColor); in testFullscreenGradient()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H A DRewriteCubeMapSamplersAs2DArray.cpp438 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/skia/src/pathops/
H A DSkOpAngle.cpp709 double absX = fabs(x);
711 double xy = SkPath::kLine_Verb == verb || !AlmostEqualUlps(absX, absY) ? absX - absY : 0;
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSamplerCore.cpp1246 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/skia/third_party/externals/swiftshader/src/Shader/
H A DSamplerCore.cpp1584 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()

Completed in 25 milliseconds