Home
last modified time | relevance | path

Searched refs:dg (Results 1 – 25 of 70) sorted by relevance

123

/third_party/skia/gm/
Dhsl.cpp90 static void hue(float dr, float dg, float db, in hue() argument
96 set_sat(&R,&G,&B, sat(dr,dg,db)); in hue()
97 set_lum(&R,&G,&B, lum(dr,dg,db)); in hue()
103 static void saturation(float dr, float dg, float db, in saturation() argument
107 G = dg, in saturation()
110 set_lum(&R,&G,&B, lum( dr, dg, db)); // This may seem redundant, but it is not. in saturation()
116 static void color(float dr, float dg, float db, in color() argument
122 set_lum(&R,&G,&B, lum(dr,dg,db)); in color()
128 static void luminosity(float dr, float dg, float db, in luminosity() argument
132 G = dg, in luminosity()
/third_party/skia/src/opts/
DSkRasterPipeline_opts.h1075 F dr,dg,db,da; member
1114 F& r, F& g, F& b, F& a, F& dr, F& dg, F& db, F& da); \
1118 params->dr, params->dg, params->db, params->da); \
1123 F& r, F& g, F& b, F& a, F& dr, F& dg, F& db, F& da)
1127 F& r, F& g, F& b, F& a, F& dr, F& dg, F& db, F& da); \
1129 F r, F g, F b, F a, F dr, F dg, F db, F da) { \
1130 name##_k(Ctx{program},dx,dy,tail, r,g,b,a, dr,dg,db,da); \
1132 next(tail,program,dx,dy, r,g,b,a, dr,dg,db,da); \
1135 F& r, F& g, F& b, F& a, F& dr, F& dg, F& db, F& da)
1291 dr = dg = db = da = 0; in STAGE()
[all …]
/third_party/ffmpeg/libavfilter/
Daf_adynamicequalizer.c159 const double dg = tan(M_PI * dfrequency / sample_rate); in filter_channels() local
173 da[0] = 1. / (1. + dg * (dg + k)); in filter_channels()
174 da[1] = dg * da[0]; in filter_channels()
175 da[2] = dg * da[1]; in filter_channels()
Dvf_colorkey.c51 double dr, dg, db, diff; in do_colorkey_pixel() local
54 dg = g * scale - colorkey_rgba[1]; in do_colorkey_pixel()
57 diff = sqrt((dr * dr + dg * dg + db * db) / (255.0 * 255.0 * 3.0)); in do_colorkey_pixel()
Dvf_palettegen.c144 const int dg = c1[1] - c2[1]; in diff() local
146 return dr*dr + dg*dg + db*db; in diff()
155 const int dg = c1[2] - c2[2]; in diff_alpha() local
157 return da*da + dr*dr + dg*dg + db*db; in diff_alpha()
Dvf_chromashift.c183 type *dg = (type *)out->data[0] + slice_start * glinesize; \
195 dg[x] = sg[av_clip(x - gh, 0, w - 1) + gy]; \
200 dg += glinesize; \
250 type *dg = (type *)out->data[0] + slice_start * glinesize; \
278 dg[x] = sg[gx + gy * sglinesize]; \
283 dg += glinesize; \
Dvf_paletteuse.c170 const int dg = c1[2] - c2[2]; in diff() local
174 return da*da + dr*dr + dg*dg + db*db; in diff()
179 return dr*dr + dg*dg + db*db; in diff()
/third_party/skia/src/core/
DSkScalerContext.h79 void setDeviceGamma(SkScalar dg) { in setDeviceGamma()
80 SkASSERT(0 <= dg && dg < SkIntToScalar(4)); in setDeviceGamma()
81 fDeviceGamma = SkScalarFloorToInt(dg * (1 << 6)); in setDeviceGamma()
/third_party/libffi/patch/
Dbackport-Fix-check-for-invalid-varargs-arguments-707.patch47 +/* { dg-do run } */
48 +/* { dg-output "" { xfail avr32*-*-* m68k-*-* } } */
188 + /* { dg-output "1 2.000000 uc=9 sc=10 11 12 13 14 15 16 2.120000 3.130000" } */
190 + /* { dg-output "\nres: 42" } */
/third_party/skia/third_party/externals/icu/source/data/locales/
Dca.txt645 "dg.",
654 "dg",
663 "dg.",
683 "dg.",
692 "dg",
701 "dg.",
1724 "-1"{"dg. passat"}
1725 "0"{"aquest dg."}
1726 "1"{"dg. que ve"}
1730 one{"d’aquí a {0} dg."}
[all …]
/third_party/icu/icu4c/source/data/locales/
Dca.txt705 "dg.",
714 "dg",
723 "dg.",
743 "dg.",
752 "dg",
761 "dg.",
1794 "-1"{"dg. passat"}
1795 "0"{"aquest dg."}
1796 "1"{"dg. que ve"}
1800 one{"d’aquí a {0} dg."}
[all …]
/third_party/skia/src/effects/
DSkColorMatrix.cpp78 void SkColorMatrix::postTranslate(float dr, float dg, float db, float da) { in postTranslate() argument
80 fMat[kG_Trans] += dg; in postTranslate()
/third_party/skia/include/private/
DSkColorData.h342 unsigned dg = SkGetPackedG16(dst); in SkSrcOver32To16() local
348 dg = (sg + SkMul16ShiftRound(dg, isa, SK_G16_BITS)) >> (8 - SK_G16_BITS); in SkSrcOver32To16()
351 return SkPackRGB16(dr, dg, db); in SkSrcOver32To16()
/third_party/skia/tools/skdiff/
Dskdiff.h260 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1); in compute_diff_pmcolor() local
263 return SkPackARGB32(0xFF, SkAbs32(dr), SkAbs32(dg), SkAbs32(db)); in compute_diff_pmcolor()
Dskdiff.cpp146 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1); in colors_match_thresholded() local
151 (SkAbs32(dg) <= threshold) && in colors_match_thresholded()
/third_party/typescript/tests/baselines/reference/
DhugeDeclarationOutputGetsTruncatedWithError.types6 …" | "cw" | "cx" | "cy" | "cz" | "da" | "db" | "dc" | "dd" | "de" | "df" | "dg" | "dh" | "di" | "dj…
9dg: "aa.dg"; dh: "aa.dh"; di: "aa.di"; dj: "aa.dj"; dk: "aa.dk"; dl: "aa.dl"; dm: "aa.dm"; dn: "aa…
10dg: "aa.dg"; dh: "aa.dh"; di: "aa.di"; dj: "aa.dj"; dk: "aa.dk"; dl: "aa.dl"; dm: "aa.dm"; dn: "aa…
DhugeDeclarationOutputGTruncatedWithError.ts.types6 …" | "cw" | "cx" | "cy" | "cz" | "da" | "db" | "dc" | "dd" | "de" | "df" | "dg" | "dh" | "di" | "dj…
9dg: "aa.dg"; dh: "aa.dh"; di: "aa.di"; dj: "aa.dj"; dk: "aa.dk"; dl: "aa.dl"; dm: "aa.dm"; dn: "aa…
10dg: "aa.dg"; dh: "aa.dh"; di: "aa.di"; dj: "aa.dj"; dk: "aa.dk"; dl: "aa.dl"; dm: "aa.dm"; dn: "aa…
/third_party/skia/modules/skottie/src/effects/
DDisplacementMapEffect.cpp132 float dr, dg, db, da, d_offset, // displacement contribution member
220 xc.dg*s.x, yc.dg*s.y, 0, 0, in buildEffectShader()
/third_party/skia/third_party/etc1/
Detc1.cpp402 int dg = g52 - g51; in etc_encodeBaseColors() local
405 differential = inRange4bitSigned(dr) && inRange4bitSigned(dg) in etc_encodeBaseColors()
409 g2 = convert5To8(g51 + dg); in etc_encodeBaseColors()
412 | ((7 & dg) << 16) | (b51 << 11) | ((7 & db) << 8) | 2; in etc_encodeBaseColors()
/third_party/skia/third_party/externals/microhttpd/
Dconfig.sub150 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
1648 *-dg)
1748 vendor=dg
/third_party/skia/third_party/externals/libpng/contrib/libtests/
Dpngstest.c802 double dr, dg, db; /* linear r,g,b scaled to 0..1 */ member
1265 out->r = out->g = out->b = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a)); in gpc_bckg()
1294 out->g = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a)); in gpc_bckc()
1339 sRGB_to_d[in->g], sRGB_to_d[in->b]) + back->dg * (1-a)); in gpc_g8b()
1763 out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1); in gpc_b16g()
1787 out->g = sRGB(in->g * a + back->dg * a1); in gpc_b16c()
1861 out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1); in gpc_gb16()
1892 out->g = sRGB(in->g * a + back->dg * a1); in gpc_cb16()
2166 result->background_color.dg = in transform_from_formats()
2176 result->background_color.dg = in transform_from_formats()
[all …]
/third_party/skia/third_party/externals/icu/source/
Dconfig.sub149 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
1684 *-dg)
1784 vendor=dg
/third_party/skia/third_party/externals/libpng/
Dconfig.sub149 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
1653 *-dg)
1750 vendor=dg
/third_party/libevdev/build-aux/
Dconfig.sub149 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
1672 *-dg)
1772 vendor=dg
/third_party/skia/include/effects/
DSkColorMatrix.h38 void postTranslate(float dr, float dg, float db, float da);

123