/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmsgmt.c | 104 cmsCIELab Lab; in ComputeKToLstar() local 121 cmsDoTransform(xform, cmyk, &Lab, 1); in ComputeKToLstar() 122 SampledPoints[i]= (cmsFloat32Number) (1.0 - Lab.L / 100.0); // Negate K for easier operation in ComputeKToLstar() 509 cmsBool CMSEXPORT cmsDesaturateLab(cmsCIELab* Lab, in cmsDesaturateLab() argument 516 if (Lab -> L < 0) { in cmsDesaturateLab() 518 Lab-> L = Lab->a = Lab-> b = 0.0; in cmsDesaturateLab() 526 if (Lab->L > 100) in cmsDesaturateLab() 527 Lab -> L = 100; in cmsDesaturateLab() 531 if (Lab -> a < amin || Lab->a > amax|| in cmsDesaturateLab() 532 Lab -> b < bmin || Lab->b > bmax) { in cmsDesaturateLab() [all …]
|
D | cmspcs.c | 134 void CMSEXPORT cmsXYZ2Lab(const cmsCIEXYZ* WhitePoint, cmsCIELab* Lab, const cmsCIEXYZ* xyz) in cmsXYZ2Lab() argument 145 Lab->L = 116.0*fy - 16.0; in cmsXYZ2Lab() 146 Lab->a = 500.0*(fx - fy); in cmsXYZ2Lab() 147 Lab->b = 200.0*(fy - fz); in cmsXYZ2Lab() 152 void CMSEXPORT cmsLab2XYZ(const cmsCIEXYZ* WhitePoint, cmsCIEXYZ* xyz, const cmsCIELab* Lab) in cmsLab2XYZ() argument 159 y = (Lab-> L + 16.0) / 116.0; in cmsLab2XYZ() 160 x = y + 0.002 * Lab -> a; in cmsLab2XYZ() 161 z = y - 0.005 * Lab -> b; in cmsLab2XYZ() 209 void CMSEXPORT cmsLabEncoded2FloatV2(cmsCIELab* Lab, const cmsUInt16Number wLab[3]) in cmsLabEncoded2FloatV2() argument 211 Lab->L = L2float2(wLab[0]); in cmsLabEncoded2FloatV2() [all …]
|
D | cmssamp.c | 75 cmsCIELab Lab; in BlackPointAsDarkerColorant() local 124 cmsDoTransform(xform, Black, &Lab, 1); in BlackPointAsDarkerColorant() 127 Lab.a = Lab.b = 0; in BlackPointAsDarkerColorant() 128 if (Lab.L > 50) Lab.L = 50; in BlackPointAsDarkerColorant() 134 cmsLab2XYZ(NULL, &BlackXYZ, &Lab); in BlackPointAsDarkerColorant() 237 cmsCIELab Lab; in cmsDetectBlackPoint() local 251 cmsXYZ2Lab(NULL, &Lab, &UntrustedBlackPoint); in cmsDetectBlackPoint() 252 Lab.a = Lab.b = 0; in cmsDetectBlackPoint() 253 if (Lab.L > 50) Lab.L = 50; // Clip to L* <= 50 in cmsDetectBlackPoint() 254 cmsLab2XYZ(NULL, &TrustedBlackPoint, &Lab); in cmsDetectBlackPoint() [all …]
|
D | cmssm.c | 322 cmsGDBPoint* GetPoint(cmsGDB* gbd, const cmsCIELab* Lab, cmsSpherical* sp) in GetPoint() argument 329 _cmsAssert(Lab != NULL); in GetPoint() 333 _cmsVEC3init(&v, Lab ->L - 50.0, Lab ->a, Lab ->b); in GetPoint() 357 cmsBool CMSEXPORT cmsGDBAddPoint(cmsHANDLE hGBD, const cmsCIELab* Lab) in cmsGDBAddPoint() argument 365 ptr = GetPoint(gbd, Lab, &sp); in cmsGDBAddPoint() 389 cmsBool CMSEXPORT cmsGDBCheckPoint(cmsHANDLE hGBD, const cmsCIELab* Lab) in cmsGDBCheckPoint() argument 396 ptr = GetPoint(gbd, Lab, &sp); in cmsGDBCheckPoint() 476 cmsVEC3 Lab; in InterpolateMissingSector() local 498 ToCartesian(&Lab, &sp); in InterpolateMissingSector() 502 LineOf2Points(&ray, &Lab, &Centre); in InterpolateMissingSector()
|
D | cmspack.c | 776 cmsCIELab Lab; in UnrollLabDoubleTo16() local 778 Lab.L = Pt[0]; in UnrollLabDoubleTo16() 779 Lab.a = Pt[Stride]; in UnrollLabDoubleTo16() 780 Lab.b = Pt[Stride*2]; in UnrollLabDoubleTo16() 782 cmsFloat2LabEncoded(wIn, &Lab); in UnrollLabDoubleTo16() 801 cmsCIELab Lab; in UnrollLabFloatTo16() local 808 Lab.L = Pt[0]; in UnrollLabFloatTo16() 809 Lab.a = Pt[Stride]; in UnrollLabFloatTo16() 810 Lab.b = Pt[Stride*2]; in UnrollLabFloatTo16() 812 cmsFloat2LabEncoded(wIn, &Lab); in UnrollLabFloatTo16() [all …]
|
D | cmslut.c | 941 cmsCIELab Lab; in EvaluateLab2XYZ() local 946 Lab.L = In[0] * 100.0; in EvaluateLab2XYZ() 947 Lab.a = In[1] * 255.0 - 128.0; in EvaluateLab2XYZ() 948 Lab.b = In[2] * 255.0 - 128.0; in EvaluateLab2XYZ() 950 cmsLab2XYZ(NULL, &XYZ, &Lab); in EvaluateLab2XYZ() 1137 cmsCIELab Lab; in EvaluateXYZ2Lab() local 1147 cmsXYZ2Lab(NULL, &Lab, &XYZ); in EvaluateXYZ2Lab() 1151 Out[0] = (cmsFloat32Number) (Lab.L / 100.0); in EvaluateXYZ2Lab() 1152 Out[1] = (cmsFloat32Number) ((Lab.a + 128.0) / 255.0); in EvaluateXYZ2Lab() 1153 Out[2] = (cmsFloat32Number) ((Lab.b + 128.0) / 255.0); in EvaluateXYZ2Lab()
|
D | cmsps2.c | 1021 cmsCIELab Lab; in WriteNamedColorCSA() local 1028 cmsDoTransform(xform, In, &Lab, 1); in WriteNamedColorCSA() 1029 _cmsIOPrintf(m, " (%s) [ %.3f %.3f %.3f ]\n", ColorName, Lab.L, Lab.a, Lab.b); in WriteNamedColorCSA()
|
/external/tcpdump/tests/ |
D | dtp-v.out | 2 Domain TLV (0x0001) TLV, length 8, Lab 8 Domain TLV (0x0001) TLV, length 8, Lab 14 Domain TLV (0x0001) TLV, length 8, Lab 20 Domain TLV (0x0001) TLV, length 8, Lab 26 Domain TLV (0x0001) TLV, length 8, Lab
|
D | cdp-v.out | 12 VTP Management Domain (0x09), value length: 3 bytes: 'Lab' 31 VTP Management Domain (0x09), value length: 3 bytes: 'Lab' 50 VTP Management Domain (0x09), value length: 3 bytes: 'Lab'
|
/external/pdfium/testing/resources/ |
D | bug_481363.in | 40 /Lab 4<
|
/external/autotest/client/site_tests/telemetry_LoginTest/ |
D | control | 5 AUTHOR = "Chrome OS Lab Infrastructure Team"
|
D | control.arc | 5 AUTHOR = "Chrome OS Lab Infrastructure Team"
|
/external/pdfium/third_party/lcms2-2.6/include/ |
D | lcms2.h | 1076 CMSAPI void CMSEXPORT cmsXYZ2Lab(const cmsCIEXYZ* WhitePoint, cmsCIELab* Lab, const cm… 1077 … CMSEXPORT cmsLab2XYZ(const cmsCIEXYZ* WhitePoint, cmsCIEXYZ* xyz, const cmsCIELab* Lab); 1078 CMSAPI void CMSEXPORT cmsLab2LCh(cmsCIELCh*LCh, const cmsCIELab* Lab); 1079 CMSAPI void CMSEXPORT cmsLCh2Lab(cmsCIELab* Lab, const cmsCIELCh* LCh); 1082 CMSAPI void CMSEXPORT cmsLabEncoded2Float(cmsCIELab* Lab, const cmsUInt16Number wLab[3… 1083 CMSAPI void CMSEXPORT cmsLabEncoded2FloatV2(cmsCIELab* Lab, const cmsUInt16Number wLab… 1084 …API void CMSEXPORT cmsFloat2LabEncoded(cmsUInt16Number wLab[3], const cmsCIELab* Lab); 1085 …I void CMSEXPORT cmsFloat2LabEncodedV2(cmsUInt16Number wLab[3], const cmsCIELab* Lab); 1856 CMSAPI cmsBool CMSEXPORT cmsGDBAddPoint(cmsHANDLE hGBD, const cmsCIELab* Lab); 1858 CMSAPI cmsBool CMSEXPORT cmsGDBCheckPoint(cmsHANDLE hGBD, const cmsCIELab* Lab); [all …]
|
/external/autotest/test_suites/ |
D | control.faft_lab | 6 NAME = "FAFT Lab Suite"
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_jpx_opj.cpp | 623 cmsCIELab Lab; in color_apply_conversion() local 669 Lab.L = minL + (double)(*L) * (maxL - minL) / (pow(2, prec0) - 1); in color_apply_conversion() 671 Lab.a = mina + (double)(*a) * (maxa - mina) / (pow(2, prec1) - 1); in color_apply_conversion() 673 Lab.b = minb + (double)(*b) * (maxb - minb) / (pow(2, prec2) - 1); in color_apply_conversion() 675 cmsDoTransform(transform, &Lab, RGB, 1); in color_apply_conversion()
|
/external/zlib/src/contrib/iostream3/ |
D | README | 32 DSP Lab
|
/external/icu/icu4c/source/data/locales/ |
D | teo.txt | 160 "Lab",
|
D | so.txt | 224 "Lab",
|
/external/autotest/ |
D | README.md | 26 * Lab infrastructure to automate the running of tests. This infrastructure is
|
/external/valgrind/ |
D | AUTHORS | 87 Development of Valgrind was supported in part by the Tri-Lab Partners
|
/external/icu/icu4c/source/data/brkitr/dictionaries/ |
D | cjdict.txt | 80 # * Copyright (c) 1999 Computer Systems and Communication Lab, 94 # * . Neither the name of the Computer Systems and Communication Lab
|
/external/autotest/docs/ |
D | test-that.md | 19 launch jobs in the ChromeOS Hardware Lab (or against a local Autotest instance
|
/external/icu/icu4j/main/shared/licenses/ |
D | LICENSE | 167 # * Copyright (c) 1999 Computer Systems and Communication Lab, 181 # * . Neither the name of the Computer Systems and Communication Lab
|
/external/icu/icu4c/ |
D | LICENSE | 167 # * Copyright (c) 1999 Computer Systems and Communication Lab, 181 # * . Neither the name of the Computer Systems and Communication Lab
|
/external/libcups/filter/ |
D | spec-ppd.shtml | 785 …12 = White, 13 = Gold, 14 = Silver, 15 = CIE XYZ, 16 = CIE Lab, 17 = RGBW, 32 to 46 = CIE Lab (1 t…
|