Lines Matching refs:Seq
764 cmsSEQ* Seq; in cmsAllocProfileSequenceDescription() local
773 Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ)); in cmsAllocProfileSequenceDescription()
774 if (Seq == NULL) return NULL; in cmsAllocProfileSequenceDescription()
776 Seq -> ContextID = ContextID; in cmsAllocProfileSequenceDescription()
777 Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC)); in cmsAllocProfileSequenceDescription()
778 Seq -> n = n; in cmsAllocProfileSequenceDescription()
780 if (Seq -> seq == NULL) { in cmsAllocProfileSequenceDescription()
781 _cmsFree(ContextID, Seq); in cmsAllocProfileSequenceDescription()
786 Seq -> seq[i].Manufacturer = NULL; in cmsAllocProfileSequenceDescription()
787 Seq -> seq[i].Model = NULL; in cmsAllocProfileSequenceDescription()
788 Seq -> seq[i].Description = NULL; in cmsAllocProfileSequenceDescription()
791 return Seq; in cmsAllocProfileSequenceDescription()