Home
last modified time | relevance | path

Searched defs:complexVal (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/test/abi/
Didata.go22 complexVal struct{ re, im Value } struct
44 func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) }
/aosp_15_r20/prebuilts/go/linux-x86/src/go/constant/
Dvalue.go100 complexVal struct{ re, im Value } struct
110 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() {}
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
H A Dprepare_for_export.cc65 auto complexVal = attr.getSplatValue<std::complex<APFloat>>(); in prepareConstantOp() local