Searched refs:NewLUT (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmslut.c | 1332 cmsPipeline* NewLUT; in cmsPipelineAlloc() local 1337 NewLUT = (cmsPipeline*) _cmsMallocZero(ContextID, sizeof(cmsPipeline)); in cmsPipelineAlloc() 1338 if (NewLUT == NULL) return NULL; in cmsPipelineAlloc() 1341 NewLUT -> InputChannels = InputChannels; in cmsPipelineAlloc() 1342 NewLUT -> OutputChannels = OutputChannels; in cmsPipelineAlloc() 1344 NewLUT ->Eval16Fn = _LUTeval16; in cmsPipelineAlloc() 1345 NewLUT ->EvalFloatFn = _LUTevalFloat; in cmsPipelineAlloc() 1346 NewLUT ->DupDataFn = NULL; in cmsPipelineAlloc() 1347 NewLUT ->FreeDataFn = NULL; in cmsPipelineAlloc() 1348 NewLUT ->Data = NewLUT; in cmsPipelineAlloc() [all …]
|
D | cmstypes.c | 1739 cmsPipeline* NewLUT = NULL; in Type_LUT8_Read() local 1759 NewLUT = cmsPipelineAlloc(self ->ContextID, InputChannels, OutputChannels); in Type_LUT8_Read() 1760 if (NewLUT == NULL) goto Error; in Type_LUT8_Read() 1777 …if (!cmsPipelineInsertStage(NewLUT, cmsAT_BEGIN, cmsStageAllocMatrix(self ->ContextID, 3, 3, Matri… in Type_LUT8_Read() 1782 if (!Read8bitTables(self ->ContextID, io, NewLUT, InputChannels)) goto Error; in Type_LUT8_Read() 1813 …if (!cmsPipelineInsertStage(NewLUT, cmsAT_END, cmsStageAllocCLut16bit(self ->ContextID, CLUTpoints… in Type_LUT8_Read() 1820 if (!Read8bitTables(self ->ContextID, io, NewLUT, OutputChannels)) goto Error; in Type_LUT8_Read() 1823 return NewLUT; in Type_LUT8_Read() 1826 if (NewLUT != NULL) cmsPipelineFree(NewLUT); in Type_LUT8_Read() 1838 cmsPipeline* NewLUT = (cmsPipeline*) Ptr; in Type_LUT8_Write() local [all …]
|