Searched defs:complexVal (Results 1 – 3 of 3) sorted by relevance
22 complexVal struct{ re, im Value } struct44 func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) }
100 complexVal struct{ re, im Value } struct110 func (complexVal) Kind() Kind { return Complex }244 func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) }262 func (x complexVal) ExactString() string {273 func (complexVal) implementsValue() {}
65 auto complexVal = attr.getSplatValue<std::complex<APFloat>>(); in prepareConstantOp() local