Lines Matching refs:Seq
720 cmsSEQ* Seq; in cmsAllocProfileSequenceDescription() local
729 Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ)); in cmsAllocProfileSequenceDescription()
730 if (Seq == NULL) return NULL; in cmsAllocProfileSequenceDescription()
732 Seq -> ContextID = ContextID; in cmsAllocProfileSequenceDescription()
733 Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC)); in cmsAllocProfileSequenceDescription()
734 Seq -> n = n; in cmsAllocProfileSequenceDescription()
736 if (Seq -> seq == NULL) { in cmsAllocProfileSequenceDescription()
737 _cmsFree(ContextID, Seq); in cmsAllocProfileSequenceDescription()
742 Seq -> seq[i].Manufacturer = NULL; in cmsAllocProfileSequenceDescription()
743 Seq -> seq[i].Model = NULL; in cmsAllocProfileSequenceDescription()
744 Seq -> seq[i].Description = NULL; in cmsAllocProfileSequenceDescription()
747 return Seq; in cmsAllocProfileSequenceDescription()