/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | frontend.h | 53 void triangleSetupAB(const __m128 vX, const __m128 vY, __m128& vA, __m128& vB) in triangleSetupAB() argument 66 __m128 vXsub = _mm_shuffle_ps(vX, vX, _MM_SHUFFLE(3, 0, 2, 1)); in triangleSetupAB() 68 vB = _mm_sub_ps(vXsub, vX); in triangleSetupAB() 77 void triangleSetupABInt(const __m128i vX, const __m128i vY, __m128i& vA, __m128i& vB) in triangleSetupABInt() argument 86 __m128i vXsub = _mm_shuffle_epi32(vX, _MM_SHUFFLE(3, 0, 2, 1)); in triangleSetupABInt() 87 vB = _mm_sub_epi32(vXsub, vX); in triangleSetupABInt() 91 void triangleSetupABIntVertical(const simdscalari vX[3], in triangleSetupABIntVertical() 102 vB[0] = _simd_sub_epi32(vX[1], vX[0]); in triangleSetupABIntVertical() 103 vB[1] = _simd_sub_epi32(vX[2], vX[1]); in triangleSetupABIntVertical() 104 vB[2] = _simd_sub_epi32(vX[0], vX[2]); in triangleSetupABIntVertical() [all …]
|
D | backend_impl.h | 509 psContext.vX.centroid = 510 _simd_blendv_ps(vXSample, psContext.vX.center, _simd_castsi_ps(vEvalAtCenter)); 527 psContext.vX.centroid = 528 _simd_blendv_ps(psContext.vX.centroid, vXSample, _simd_castsi_ps(vCase3a)); 540 vplaneps(coeffs.vIa, coeffs.vIb, coeffs.vIc, psContext.vX.centroid, psContext.vY.centroid); 542 vplaneps(coeffs.vJa, coeffs.vJb, coeffs.vJc, psContext.vX.centroid, psContext.vY.centroid); 682 psContext->vX.centroid = psContext->vX.center; 695 psContext->vX.centroid = _simd_add_ps(psContext->vX.UL, _simd_set1_ps(0.5f)); 706 psContext->vX.UL, 710 CalcCentroidBarycentrics(coeffs, *psContext, psContext->vX.UL, psContext->vY.UL); [all …]
|
D | binner.h | 85 INLINE void calcBoundingBoxIntVertical(const Integer<SIMD_T> (&vX)[3], in calcBoundingBoxIntVertical() 89 Integer<SIMD_T> vMinX = vX[0]; in calcBoundingBoxIntVertical() 91 vMinX = SIMD_T::min_epi32(vMinX, vX[1]); in calcBoundingBoxIntVertical() 92 vMinX = SIMD_T::min_epi32(vMinX, vX[2]); in calcBoundingBoxIntVertical() 94 Integer<SIMD_T> vMaxX = vX[0]; in calcBoundingBoxIntVertical() 96 vMaxX = SIMD_T::max_epi32(vMaxX, vX[1]); in calcBoundingBoxIntVertical() 97 vMaxX = SIMD_T::max_epi32(vMaxX, vX[2]); in calcBoundingBoxIntVertical()
|
D | backend_sample.cpp | 79 psContext.vX.UL = _simd_add_ps(vULOffsetsX, _simd_set1_ps(static_cast<float>(x))); in BackendSampleRate() 80 psContext.vX.center = _simd_add_ps(vCenterOffsetsX, _simd_set1_ps(static_cast<float>(x))); in BackendSampleRate() 136 psContext.vX.sample = _simd_add_ps(psContext.vX.UL, samplePos.vX(sample)); in BackendSampleRate() 321 psContext.vX.UL = _simd_add_ps(psContext.vX.UL, dx); in BackendSampleRate() 322 psContext.vX.center = _simd_add_ps(psContext.vX.center, dx); in BackendSampleRate()
|
D | backend_singlesample.cpp | 81 psContext.vX.UL = _simd_add_ps(vULOffsetsX, _simd_set1_ps(static_cast<float>(x))); in BackendSingleSample() 82 psContext.vX.center = _simd_add_ps(vCenterOffsetsX, _simd_set1_ps(static_cast<float>(x))); in BackendSingleSample() 304 psContext.vX.UL = _simd_add_ps(psContext.vX.UL, dx); in BackendSingleSample() 305 psContext.vX.center = _simd_add_ps(psContext.vX.center, dx); in BackendSingleSample()
|
D | rasterizer.cpp | 84 __m128 vX, vY, vZ, vRecipW; in RasterizeLine() local 86 vX = _mm_load_ps(workDesc.pTriBuffer); in RasterizeLine() 93 __m128 vXa = _mm_shuffle_ps(vX, vX, _MM_SHUFFLE(1, 1, 0, 0)); in RasterizeLine() 180 vXa = _mm_shuffle_ps(vX, vX, _MM_SHUFFLE(1, 0, 1, 1)); in RasterizeLine()
|
D | backend.cpp | 321 psContext.vX.sample = _simd_add_ps(vXSamplePosUL, samplePos.vX(sample)); in BackendNullPS()
|
D | rasterizer_impl.h | 940 __m128 vX, vY, vZ, vRecipW; 944 vX = _mm_load_ps(workDesc.pTriBuffer); 952 __m128i vXi = fpToFixedPoint(vX); 957 vX = _mm_mul_ps(_mm_cvtepi32_ps(vXi), _mm_set1_ps(1.0f / FIXED_POINT_SCALE)); 962 triangleSetupAB(vX, vY, vA, vB); 984 triangleSetupC(vX, vY, vA, vB, vC);
|
D | state.h | 366 PixelPositions vX; // IN: x location(s) of pixels member 1030 INLINE const simdscalar& vX(uint32_t sampleNum) const { return _vX[sampleNum]; }; // @llvm_func in vX() function
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | SetupRoutine.cpp | 633 Pointer<Byte> vX; in conditionalRotate1() 635 vX = v0; in conditionalRotate1() 638 v2 = vX; in conditionalRotate1() 641 Pointer<Byte> vX = v0; in conditionalRotate1() local 644 v2 = IfThenElse(condition, vX, v2); in conditionalRotate1() 653 Pointer<Byte> vX; in conditionalRotate2() 655 vX = v2; in conditionalRotate2() 658 v0 = vX; in conditionalRotate2() 661 Pointer<Byte> vX = v2; in conditionalRotate2() local 664 v0 = IfThenElse(condition, vX, v0); in conditionalRotate2()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SetupRoutine.cpp | 641 Pointer<Byte> vX; in conditionalRotate1() 643 vX = v0; in conditionalRotate1() 646 v2 = vX; in conditionalRotate1() 649 Pointer<Byte> vX = v0; in conditionalRotate1() local 652 v2 = IfThenElse(condition, vX, v2); in conditionalRotate1() 661 Pointer<Byte> vX; in conditionalRotate2() 663 vX = v2; in conditionalRotate2() 666 v0 = vX; in conditionalRotate2() 669 Pointer<Byte> vX = v2; in conditionalRotate2() local 672 v0 = IfThenElse(condition, vX, v0); in conditionalRotate2()
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | simdintrin.h | 199 simdscalar const& vX, in vplaneps() argument 202 simdscalar vOut = _simd_fmadd_ps(vA, vX, vC); in vplaneps() 212 simd4scalar const& vX, in vplaneps() argument 215 simd4scalar vOut = _simd128_fmadd_ps(vA, vX, vC); in vplaneps()
|
/third_party/typescript/tests/baselines/reference/docker/ |
D | pyright.log | 7 lerna notice cli vX.X.X
|
D | prettier.log | 3 yarn run vX.X.X
|
D | office-ui-fabric.log | 3 @fluentui/cra-template: yarn run vX.X.X 6 @fluentui/eslint-plugin: yarn run vX.X.X 9 @fluentui/noop: yarn run vX.X.X 12 @fluentui/ie11-polyfills: yarn run vX.X.X 15 @fluentui/web-components: yarn run vX.X.X 18 @fluentui/ability-attributes: yarn run vX.X.X 21 @fluentui/digest: yarn run vX.X.X 26 @fluentui/scripts: yarn run vX.X.X 33 @uifabric/pr-deploy-site: yarn run vX.X.X 36 @fluentui/a11y-testing: yarn run vX.X.X [all …]
|
D | vscode.log | 3 yarn run vX.X.X
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/credentials/certificate_hierarchy_1/certs/ |
D | ca.cert.pem | 28 /Ki0gKYlGFm4Eu8t/nHMqhBx/njYg6pLDuarLW6ftUV7aHd7qKcCWOWqK6gnH/vX
|
/third_party/libwebsockets/READMEs/ |
D | release-checklist | 45 git tag -s vX.Y[.Z]
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
D | version.dart | 570 /// The X in vX.Y.Z. 573 /// The Y in vX.Y.Z. 576 /// The Z in vX.Y.Z. 579 /// the F in vX.Y.Z+hotfix.F 582 /// Number of commits since the vX.Y.Z tag.
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_misc.h | 116 Value* VPLANEPS(Value* vA, Value* vB, Value* vC, Value*& vX, Value*& vY);
|
D | builder_misc.cpp | 356 Value* Builder::VPLANEPS(Value* vA, Value* vB, Value* vC, Value*& vX, Value*& vY) in VPLANEPS() argument 358 Value* vOut = FMADDPS(vA, vX, vC); in VPLANEPS()
|
/third_party/python/Lib/test/ |
D | nullbytecert.pem | 76 vX/wBmQfzCe4o4uM89gpHyUL9UYGG8oCRa17dgqcv7u5rg0Wq2B1rgY+nHwx3JIv
|
/third_party/mksh/ |
D | edit.c | 3490 #define vX 0x08 /* long command (@, f, F, t, T, etc.) */ macro 3500 #define is_long(c) (classify[rtt2asc(c) & 0x7F] & vX) 3524 vC|vX, vC, vM, vC, vC, vM, vM|vX, vC|vU|vZ, 3528 vC, 0, vC, vC, vM|vX, vC, 0, vM, 3532 0, vC, vM, vE, vE, vM, vM|vX, vC|vZ, 3536 vC, 0, vX, vC, vM|vX, vC|vU, vC|vU|vZ, vM,
|
/third_party/grpc/doc/ |
D | versioning.md | 5 All gRPC implementations use a three-part version number (`vX.Y.Z`) and follow [semantic versioning…
|
/third_party/node/doc/guides/ |
D | releases.md | 634 vX.Y.Z`.** 670 Blog: vX.Y.Z release post
|