/external/pdfium/third_party/lcms/src/ |
D | cmsvirt.c | 398 cmsPipeline* LUT; in cmsCreateInkLimitingDeviceLinkTHR() local 429 LUT = cmsPipelineAlloc(ContextID, 4, 4); in cmsCreateInkLimitingDeviceLinkTHR() 430 if (LUT == NULL) goto Error; in cmsCreateInkLimitingDeviceLinkTHR() 440 …if (!cmsPipelineInsertStage(LUT, cmsAT_BEGIN, _cmsStageAllocIdentityCurves(ContextID, nChannels)) … in cmsCreateInkLimitingDeviceLinkTHR() 441 !cmsPipelineInsertStage(LUT, cmsAT_END, CLUT) || in cmsCreateInkLimitingDeviceLinkTHR() 442 !cmsPipelineInsertStage(LUT, cmsAT_END, _cmsStageAllocIdentityCurves(ContextID, nChannels))) in cmsCreateInkLimitingDeviceLinkTHR() 448 if (!cmsWriteTag(hICC, cmsSigAToB0Tag, (void*) LUT)) goto Error; in cmsCreateInkLimitingDeviceLinkTHR() 452 cmsPipelineFree(LUT); in cmsCreateInkLimitingDeviceLinkTHR() 458 if (LUT != NULL) in cmsCreateInkLimitingDeviceLinkTHR() 459 cmsPipelineFree(LUT); in cmsCreateInkLimitingDeviceLinkTHR() [all …]
|
/external/libjpeg-turbo/simd/x86_64/ |
D | jcphuff-sse2.asm | 34 mov T0d, INT [LUT + 0*SIZEOF_INT] 35 mov T1d, INT [LUT + 8*SIZEOF_INT] 39 mov T0d, INT [LUT + 1*SIZEOF_INT] 40 mov T1d, INT [LUT + 9*SIZEOF_INT] 44 mov T0d, INT [LUT + 2*SIZEOF_INT] 45 mov T1d, INT [LUT + 10*SIZEOF_INT] 49 mov T0d, INT [LUT + 3*SIZEOF_INT] 50 mov T1d, INT [LUT + 11*SIZEOF_INT] 54 mov T0d, INT [LUT + 4*SIZEOF_INT] 55 mov T1d, INT [LUT + 12*SIZEOF_INT] [all …]
|
/external/libjpeg-turbo/simd/i386/ |
D | jcphuff-sse2.asm | 33 mov T0, INT [LUT + 0*SIZEOF_INT] 34 mov T1, INT [LUT + 8*SIZEOF_INT] 38 mov T0, INT [LUT + 1*SIZEOF_INT] 39 mov T1, INT [LUT + 9*SIZEOF_INT] 43 mov T0, INT [LUT + 2*SIZEOF_INT] 44 mov T1, INT [LUT + 10*SIZEOF_INT] 48 mov T0, INT [LUT + 3*SIZEOF_INT] 49 mov T1, INT [LUT + 11*SIZEOF_INT] 53 mov T0, INT [LUT + 4*SIZEOF_INT] 54 mov T1, INT [LUT + 12*SIZEOF_INT] [all …]
|
/external/brotli/c/common/ |
D | context.h | 111 #define BROTLI_CONTEXT(P1, P2, LUT) ((LUT)[P1] | ((LUT) + 256)[P2]) argument
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | StringExtras.h | 70 unsigned LUT[255] = {}; in hexDigitValue() member 74 LUT[i] = -1U; in hexDigitValue() 77 LUT['0' + i] = i; in hexDigitValue() 80 LUT['A' + i] = LUT['a' + i] = 10 + i; in hexDigitValue() 84 return Table.LUT[static_cast<unsigned char>(C)]; in hexDigitValue() 162 static const char *const LUT = "0123456789ABCDEF"; variable 170 Output.push_back(LUT[c >> 4] | Offset); 171 Output.push_back(LUT[c & 15] | Offset);
|
/external/llvm/unittests/Support/ |
D | raw_sha1_ostream_test.cpp | 19 static const char *const LUT = "0123456789ABCDEF"; in toHex() local 26 Output.push_back(LUT[c >> 4]); in toHex() 27 Output.push_back(LUT[c & 15]); in toHex()
|
/external/llvm-project/llvm/unittests/Support/ |
D | raw_sha1_ostream_test.cpp | 18 static const char *const LUT = "0123456789ABCDEF"; in toHex() local 25 Output.push_back(LUT[c >> 4]); in toHex() 26 Output.push_back(LUT[c & 15]); in toHex()
|
/external/igt-gpu-tools/benchmarks/ |
D | gem_exec_reloc.c | 52 #define LUT 0x10 macro 138 if (flags & LUT) in run() 145 if (flags & LUT) in run() 226 flags |= LUT; in main()
|
/external/llvm/include/llvm/ADT/ |
D | StringExtras.h | 65 static const char *const LUT = "0123456789ABCDEF"; in toHex() local 72 Output.push_back(LUT[c >> 4]); in toHex() 73 Output.push_back(LUT[c & 15]); in toHex()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringExtras.h | 66 static const char *const LUT = "0123456789ABCDEF"; in toHex() local 73 Output.push_back(LUT[c >> 4]); in toHex() 74 Output.push_back(LUT[c & 15]); in toHex()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | StringExtras.h | 142 static const char *const LUT = "0123456789ABCDEF"; variable 150 Output.push_back(LUT[c >> 4] | Offset); 151 Output.push_back(LUT[c & 15] | Offset);
|
/external/swiftshader/src/Shader/ |
D | PixelRoutine.cpp | 2668 Pointer<Byte> LUT = constants + OFFSET(Constants,sRGBtoLinear12_16); in sRGBtoLinear16_12_16() local 2674 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 0))), 0); in sRGBtoLinear16_12_16() 2675 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 1))), 1); in sRGBtoLinear16_12_16() 2676 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 2))), 2); in sRGBtoLinear16_12_16() 2677 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 3))), 3); in sRGBtoLinear16_12_16() 2679 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 0))), 0); in sRGBtoLinear16_12_16() 2680 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 1))), 1); in sRGBtoLinear16_12_16() 2681 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 2))), 2); in sRGBtoLinear16_12_16() 2682 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 3))), 3); in sRGBtoLinear16_12_16() 2684 c.z = Insert(c.z, *Pointer<Short>(LUT + 2 * Int(Extract(c.z, 0))), 0); in sRGBtoLinear16_12_16() [all …]
|
D | SamplerCore.cpp | 2536 Pointer<Byte> LUT = Pointer<Byte>(constants + OFFSET(Constants,sRGBtoLinear8_16)); in sRGBtoLinear16_8_16() local 2538 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 0))), 0); in sRGBtoLinear16_8_16() 2539 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 1))), 1); in sRGBtoLinear16_8_16() 2540 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 2))), 2); in sRGBtoLinear16_8_16() 2541 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 3))), 3); in sRGBtoLinear16_8_16() 2548 Pointer<Byte> LUT = Pointer<Byte>(constants + OFFSET(Constants,sRGBtoLinear6_16)); in sRGBtoLinear16_6_16() local 2550 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 0))), 0); in sRGBtoLinear16_6_16() 2551 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 1))), 1); in sRGBtoLinear16_6_16() 2552 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 2))), 2); in sRGBtoLinear16_6_16() 2553 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 3))), 3); in sRGBtoLinear16_6_16() [all …]
|
/external/swiftshader/src/Pipeline/ |
D | PixelRoutine.cpp | 2793 Pointer<Byte> LUT = constants + OFFSET(Constants, sRGBtoLinear12_16); in sRGBtoLinear16_12_16() local 2799 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 0))), 0); in sRGBtoLinear16_12_16() 2800 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 1))), 1); in sRGBtoLinear16_12_16() 2801 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 2))), 2); in sRGBtoLinear16_12_16() 2802 c.x = Insert(c.x, *Pointer<Short>(LUT + 2 * Int(Extract(c.x, 3))), 3); in sRGBtoLinear16_12_16() 2804 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 0))), 0); in sRGBtoLinear16_12_16() 2805 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 1))), 1); in sRGBtoLinear16_12_16() 2806 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 2))), 2); in sRGBtoLinear16_12_16() 2807 c.y = Insert(c.y, *Pointer<Short>(LUT + 2 * Int(Extract(c.y, 3))), 3); in sRGBtoLinear16_12_16() 2809 c.z = Insert(c.z, *Pointer<Short>(LUT + 2 * Int(Extract(c.z, 0))), 0); in sRGBtoLinear16_12_16() [all …]
|
D | SamplerCore.cpp | 2520 Pointer<Byte> LUT = Pointer<Byte>(constants + OFFSET(Constants, sRGBtoLinearFF_FF00)); in sRGBtoLinearFF00() local 2522 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 0))), 0); in sRGBtoLinearFF00() 2523 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 1))), 1); in sRGBtoLinearFF00() 2524 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 2))), 2); in sRGBtoLinearFF00() 2525 c = Insert(c, *Pointer<Short>(LUT + 2 * Int(Extract(c, 3))), 3); in sRGBtoLinearFF00()
|
/external/libaom/libaom/av1/encoder/ |
D | block.h | 496 static const char LUT[BLOCK_SIZES_ALL] = { in is_rect_tx_allowed_bsize() local 521 return LUT[bsize]; in is_rect_tx_allowed_bsize()
|
/external/skia/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 36 // Effect that is a LUT for integral of normal distribution. The value at x:[0,6*sigma] is the
|
/external/libexif/ |
D | ChangeLog | 785 PowerShot S3 IS - unlike other Canons, it doesn't use index into LUT, but
|
/external/ImageMagick/ |
D | ChangeLog | 2490 * Direct computation, without LUT;
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 19038 const int LUT[16] = {/* 0 */ 4, /* 1 */ 3, /* 2 */ 2, /* 3 */ 2, in LowerVectorCTLZInRegLUT() local 19045 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTLZInRegLUT() 20916 const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2, in LowerVectorCTPOPInRegLUT() local 20926 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTPOPInRegLUT()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | subdivisionData.txt | 1577 unitary authority GB-LUT Luton en GB-ENG
|
D | 2013-1_UNLOCODE_CodeListPart1.csv | 1259 ,"AT","LUT","Lauterach","Lauterach",,"--3-----","RQ","9506","QLX",, 2832 ,"AU","LUT","Laura Station","Laura Station","QLD","---4----","AI","9912",,, 4824 ,"BE","LUT","Luttre","Luttre","WHT","--3-----","RN","0307",,"5031N 00423E", 15694 ,"CZ","LUT","Louka","Louka","US","--3-----","RL","0901",,"5035N 01339E", 21777 ,"DE","LUT","Ludwigsstadt","Ludwigsstadt","BY","-23-----","AF","9501",,, 26836 "X","EE","LUT","Luhtse","Luhtse",,"1-------","XX","1301",,"5830N 02218E","" 38089 ,"FR","LUT","Luisant","Luisant","28","--3-----","RL","0407",,"4825N 00129E",
|
D | 2013-1_UNLOCODE_CodeListPart2.csv | 3246 ,"GB","LUT","Luton","Luton","BDF","-234----","AF","9511","LTN",, 20083 ,"MY","LUT","Lutong, Sarawak","Lutong, Sarawak",,"1-------","QQ","8103",,, 22661 ,"NO","LUT","Lutnes","Lutnes","04","--3-----","AF","9506",,,
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 26659 SDValue LUT = DAG.getConstant(0x2d, DL, MVT::i32); in LowerFLT_ROUNDS_() local 26662 DAG.getNode(ISD::SRL, DL, MVT::i32, LUT, Shift), in LowerFLT_ROUNDS_() 26715 const int LUT[16] = {/* 0 */ 4, /* 1 */ 3, /* 2 */ 2, /* 3 */ 2, in LowerVectorCTLZInRegLUT() local 26722 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTLZInRegLUT() 28860 const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2, in LowerVectorCTPOPInRegLUT() local 28867 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTPOPInRegLUT()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 25527 const int LUT[16] = {/* 0 */ 4, /* 1 */ 3, /* 2 */ 2, /* 3 */ 2, in LowerVectorCTLZInRegLUT() local 25534 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTLZInRegLUT() 27780 const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2, in LowerVectorCTPOPInRegLUT() local 27787 LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8)); in LowerVectorCTPOPInRegLUT()
|