Searched refs:NewLUT (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/third_party/lcms/src/ |
D | cmslut.c | 1371 cmsPipeline* NewLUT; in cmsPipelineAlloc() local 1377 NewLUT = (cmsPipeline*) _cmsMallocZero(ContextID, sizeof(cmsPipeline)); in cmsPipelineAlloc() 1378 if (NewLUT == NULL) return NULL; in cmsPipelineAlloc() 1380 NewLUT -> InputChannels = InputChannels; in cmsPipelineAlloc() 1381 NewLUT -> OutputChannels = OutputChannels; in cmsPipelineAlloc() 1383 NewLUT ->Eval16Fn = _LUTeval16; in cmsPipelineAlloc() 1384 NewLUT ->EvalFloatFn = _LUTevalFloat; in cmsPipelineAlloc() 1385 NewLUT ->DupDataFn = NULL; in cmsPipelineAlloc() 1386 NewLUT ->FreeDataFn = NULL; in cmsPipelineAlloc() 1387 NewLUT ->Data = NewLUT; in cmsPipelineAlloc() [all …]
|
D | cmstypes.c | 1757 cmsPipeline* NewLUT = NULL; in Type_LUT8_Read() local 1777 NewLUT = cmsPipelineAlloc(self ->ContextID, InputChannels, OutputChannels); in Type_LUT8_Read() 1778 if (NewLUT == NULL) goto Error; in Type_LUT8_Read() 1795 …if (!cmsPipelineInsertStage(NewLUT, cmsAT_BEGIN, cmsStageAllocMatrix(self ->ContextID, 3, 3, Matri… in Type_LUT8_Read() 1800 if (!Read8bitTables(self ->ContextID, io, NewLUT, InputChannels)) goto Error; in Type_LUT8_Read() 1831 …if (!cmsPipelineInsertStage(NewLUT, cmsAT_END, cmsStageAllocCLut16bit(self ->ContextID, CLUTpoints… in Type_LUT8_Read() 1840 if (!Read8bitTables(self ->ContextID, io, NewLUT, OutputChannels)) goto Error; in Type_LUT8_Read() 1843 return NewLUT; in Type_LUT8_Read() 1846 if (NewLUT != NULL) cmsPipelineFree(NewLUT); in Type_LUT8_Read() 1858 cmsPipeline* NewLUT = (cmsPipeline*) Ptr; in Type_LUT8_Write() local [all …]
|