Home | History | Annotate | Download | only in scripts

Lines Matching refs:outType

157 		outType	= outValues[0].typeString()
158 self.name = "%s_to_%s" % (inType, outType)
159 self.op = "out0 = %s(in0);" % outType
161 self.outputs = [("%s out0" % outType, outValues)]
174 outType = outValue.typeString()
175 self.name = "%s_to_%s" % (inType, outType)
176 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
178 self.outType = outType
191 self.outType = self.outValues[0].typeString()
193 self.name = "%s_to_%s" % ("_".join(inTypes), self.outType)
195 self.outputs = [("%s out0" % self.outType, self.outValues)]
196 self.op = "out0 = %s(%s);" % (self.outType, ", ".join(["in%d" % x for x in range(len(inComps))]))