/third_party/flutter/skia/third_party/externals/sdl/src/render/software/ |
D | SDL_rotate.c | 236 tColorRGBA c00, c01, c10, c11, cswap; in _transformSurfaceRGBA() local 267 c00 = *sp; in _transformSurfaceRGBA() 275 cswap = c00; c00=c01; c01=cswap; in _transformSurfaceRGBA() 279 cswap = c00; c00=c10; c10=cswap; in _transformSurfaceRGBA() 287 t1 = ((((c01.r - c00.r) * ex) >> 16) + c00.r) & 0xff; in _transformSurfaceRGBA() 290 t1 = ((((c01.g - c00.g) * ex) >> 16) + c00.g) & 0xff; in _transformSurfaceRGBA() 293 t1 = ((((c01.b - c00.b) * ex) >> 16) + c00.b) & 0xff; in _transformSurfaceRGBA() 296 t1 = ((((c01.a - c00.a) * ex) >> 16) + c00.a) & 0xff; in _transformSurfaceRGBA()
|
/third_party/flutter/skia/src/core/ |
D | SkMipMap.cpp | 121 auto c00 = F::Expand(p0[0]); in downsample_1_2() local 124 auto c = c00 + c10; in downsample_1_2() 139 auto c00 = F::Expand(p0[0]); in downsample_1_3() local 143 auto c = add_121(c00, c10, c20); in downsample_1_3() 157 auto c00 = F::Expand(p0[0]); in downsample_2_1() local 160 auto c = c00 + c01; in downsample_2_1() 173 auto c00 = F::Expand(p0[0]); in downsample_2_2() local 178 auto c = c00 + c10 + c01 + c11; in downsample_2_2() 193 auto c00 = F::Expand(p0[0]); in downsample_2_3() local 200 auto c = add_121(c00, c10, c20) + add_121(c01, c11, c21); in downsample_2_3() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SamplerCore.cpp | 476 …Vector4s c00 = sampleTexel(uuuu0, vvvv0, wwww, layerIndex, offset, sample, mipmap, buffer, functio… in sampleQuad2D() local 514 … c00.x = As<UShort4>(c00.x) - MulHigh(As<UShort4>(c00.x), f0u) + MulHigh(As<UShort4>(c10.x), f0u); in sampleQuad2D() 516 c.x = As<UShort4>(c00.x) - MulHigh(As<UShort4>(c00.x), f0v) + MulHigh(As<UShort4>(c01.x), f0v); in sampleQuad2D() 522 c00.x = MulHigh(As<UShort4>(c00.x), f1u1v); in sampleQuad2D() 529 c00.x = MulHigh(c00.x, f1u1vs); in sampleQuad2D() 535 c.x = (c00.x + c10.x) + (c01.x + c11.x); in sampleQuad2D() 544 … c00.y = As<UShort4>(c00.y) - MulHigh(As<UShort4>(c00.y), f0u) + MulHigh(As<UShort4>(c10.y), f0u); in sampleQuad2D() 546 c.y = As<UShort4>(c00.y) - MulHigh(As<UShort4>(c00.y), f0v) + MulHigh(As<UShort4>(c01.y), f0v); in sampleQuad2D() 552 c00.y = MulHigh(As<UShort4>(c00.y), f1u1v); in sampleQuad2D() 559 c00.y = MulHigh(c00.y, f1u1vs); in sampleQuad2D() [all …]
|
/third_party/abseil-cpp/absl/random/internal/ |
D | wide_multiply.h | 59 const uint64_t c00 = a00 * b00; in MultiplyU64ToU128() 65 static_cast<uint32_t>(((c00 >> 32) + static_cast<uint32_t>(c32a) + in MultiplyU64ToU128() 70 c00 + (c32a << 32) + (c32b << 32)); in MultiplyU64ToU128()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | wide_multiply.h | 59 const uint64_t c00 = a00 * b00; in MultiplyU64ToU128() 65 static_cast<uint32_t>(((c00 >> 32) + static_cast<uint32_t>(c32a) + in MultiplyU64ToU128() 70 c00 + (c32a << 32) + (c32b << 32)); in MultiplyU64ToU128()
|
/third_party/skia/src/core/ |
D | SkMipmap.cpp | 205 auto c00 = F::Expand(p0[0]); in downsample_1_2() local 208 auto c = c00 + c10; in downsample_1_2() 223 auto c00 = F::Expand(p0[0]); in downsample_1_3() local 227 auto c = add_121(c00, c10, c20); in downsample_1_3() 241 auto c00 = F::Expand(p0[0]); in downsample_2_1() local 244 auto c = c00 + c01; in downsample_2_1() 257 auto c00 = F::Expand(p0[0]); in downsample_2_2() local 262 auto c = c00 + c10 + c01 + c11; in downsample_2_2() 277 auto c00 = F::Expand(p0[0]); in downsample_2_3() local 284 auto c = add_121(c00, c10, c20) + add_121(c01, c11, c21); in downsample_2_3() [all …]
|
/third_party/skia/src/utils/ |
D | SkPatchUtils.cpp | 149 static SkScalar bilerp(SkScalar tx, SkScalar ty, SkScalar c00, SkScalar c10, SkScalar c01, in bilerp() argument 151 SkScalar a = c00 * (1.f - tx) + c10 * tx; in bilerp() 157 const Sk4f& c00, const Sk4f& c10, const Sk4f& c01, const Sk4f& c11) { in bilerp() argument 158 Sk4f a = c00 * (1.f - tx) + c10 * tx; in bilerp()
|
/third_party/flutter/skia/src/utils/ |
D | SkPatchUtils.cpp | 147 static SkScalar bilerp(SkScalar tx, SkScalar ty, SkScalar c00, SkScalar c10, SkScalar c01, in bilerp() argument 149 SkScalar a = c00 * (1.f - tx) + c10 * tx; in bilerp() 155 const Sk4f& c00, const Sk4f& c10, const Sk4f& c01, const Sk4f& c11) { in bilerp() argument 156 Sk4f a = c00 * (1.f - tx) + c10 * tx; in bilerp()
|
/third_party/e2fsprogs/tests/d_inline_dump/ |
D | expect | 76 mtime: 0x53cec3b6:82841c00 -- Tue Jul 22 20:04:06 2014 77 crtime: 0x53cec3b6:82841c00 -- Tue Jul 22 20:04:06 2014
|
/third_party/mbedtls/tests/data_files/dir-maxpath/ |
D | long.sh | 31 cp 00.crt c00.pem
|
/third_party/typescript/tests/baselines/reference/ |
D | strictBindCallApply1.js | 17 let c00 = foo.call(undefined, 10, "hello"); variable 84 var c00 = foo.call(undefined, 10, "hello");
|
D | strictBindCallApply1.symbols | 64 let c00 = foo.call(undefined, 10, "hello"); 65 >c00 : Symbol(c00, Decl(strictBindCallApply1.ts, 15, 3))
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTexCompareVerifier.cpp | 930 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i0+0, j0+0)… in isSeamplessLinearMipmapLinearCompareResultValid() local 937 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamplessLinearMipmapLinearCompareResultValid() 940 depths0[0] = lookupDepthNoBorder(faces0[c00.face], sampler, c00.s, c00.t); in isSeamplessLinearMipmapLinearCompareResultValid() 957 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i1+0, j1+0)… in isSeamplessLinearMipmapLinearCompareResultValid() local 962 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamplessLinearMipmapLinearCompareResultValid() 965 depths1[0] = lookupDepthNoBorder(faces1[c00.face], sampler, c00.s, c00.t); in isSeamplessLinearMipmapLinearCompareResultValid() 1039 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i+0, j+0)),… in isSeamlessLinearCompareResultValid() local 1046 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamlessLinearCompareResultValid() 1056 depths[0] = lookupDepthNoBorder(faces[c00.face], sampler, c00.s, c00.t); in isSeamlessLinearCompareResultValid()
|
D | tcuTexLookupVerifier.cpp | 530 …const Vec4 c00 = quad00.p00*(1.0f-a0)*(1.0f-b0) + quad00.p10*a0*(1.0f-b0) + quad00.p01*(1.0f-a0)*… in is3DTrilinearFilterResultValid() local 536 const Vec4 cz0 = c00*(1.0f-c0) + c01*c0; in is3DTrilinearFilterResultValid() 1550 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i+0, j+0)),… in isSeamlessLinearSampleResultValid() local 1557 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamlessLinearSampleResultValid() 1567 quad.p00 = lookup<float>(faces[c00.face], sampler, c00.s, c00.t, 0); in isSeamlessLinearSampleResultValid() 1638 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i0+0, j0+0)… in isSeamplessLinearMipmapLinearSampleResultValid() local 1645 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamplessLinearMipmapLinearSampleResultValid() 1648 quad0.p00 = lookup<float>(faces0[c00.face], sampler, c00.s, c00.t, 0); in isSeamplessLinearMipmapLinearSampleResultValid() 1672 …const CubeFaceIntCoords c00 = remapCubeEdgeCoords(CubeFaceIntCoords(coords.face, IVec2(i1+0, j1+0)… in isSeamplessLinearMipmapLinearSampleResultValid() local 1677 …if (c00.face == CUBEFACE_LAST || c01.face == CUBEFACE_LAST || c10.face == CUBEFACE_LAST || c11.fac… in isSeamplessLinearMipmapLinearSampleResultValid() [all …]
|
/third_party/typescript/tests/cases/conformance/functions/ |
D | strictBindCallApply1.ts | 18 let c00 = foo.call(undefined, 10, "hello");
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_shadow_lod/ |
D | esextcTextureShadowLodFunctionsTest.cpp | 606 tcu::CubeFaceFloatCoords c00 = in initTexture() local 612 float dudx = (c10.s - c00.s) * (float)m_textureSpec.width / (float)viewportSize[0]; in initTexture() 613 float dvdy = (c01.t - c00.t) * (float)m_textureSpec.height / (float)viewportSize[1]; in initTexture() 686 tcu::CubeFaceFloatCoords c00 = in initTexture() local 692 float dudx = (c10.s - c00.s) * (float)m_textureSpec.width / (float)viewportSize[0]; in initTexture() 693 float dvdy = (c01.t - c00.t) * (float)m_textureSpec.height / (float)viewportSize[1]; in initTexture()
|
/third_party/flutter/flutter/dev/docs/assets/ |
D | overrides.css | 142 color: #128c00;
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderTextureFunctionTests.cpp | 394 …tcu::CubeFaceFloatCoords c00 = tcu::getCubeFaceCoords(Vec3(m_lookupSpec.minCoord[0]*proj, m_looku… in initTexture() local 397 float dudx = (c10.s - c00.s)*(float)m_textureSpec.width / (float)viewportSize[0]; in initTexture() 398 float dvdy = (c01.t - c00.t)*(float)m_textureSpec.height / (float)viewportSize[1]; in initTexture()
|
/third_party/grpc/doc/ |
D | naming.md | 56 `ipv6:[2607:f8b0:400e:c00::ef]:443` or `ipv6:[::]:1234`
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | Blitter.cpp | 1346 Float4 c00; if(!read(c00, s00, state)) return nullptr; in generate() local 1353 if(!ApplyScaleAndClamp(c00, state)) return nullptr; in generate() 1365 color = (c00 * ix + c01 * fx) * iy + in generate()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcShaderRenderCase.cpp | 762 Vec4 c00 = colors[v00]; in computeVertexReference() local 784 const Vec4& t0 = tri ? c00 : c11; in computeVertexReference()
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsShaderRenderCase.cpp | 690 Vec4 c00 = colors[v00]; in computeVertexReference() local 712 const Vec4& t0 = tri ? c00 : c11; in computeVertexReference()
|
/third_party/wayland_standard/doc/publican/sources/css/ |
D | common.css | 1541 background:#c00 url(../images/shine.png) top left repeat-x; 1559 background:#c00 url(../images/shine.png) top left repeat-x; 1629 background:#c00 url(../images/shine.png) top left repeat-x;
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_asn1write.data | 152 mbedtls_asn1_write_string:MBEDTLS_ASN1_UTF8_STRING:"":"0c00"
|
/third_party/elfio/tests/elf_examples/ |
D | test_ppc.txt | 126 10010c00 00000b15 R_PPC_JMP_SLOT 10000950 _ZSt4endlIcSt11char_tr + 0
|