Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for fComplex128 (0.19 sec)

  1. src/go/types/api_test.go

    		{`package e5; const _ = complex64(-1e-200)`, `complex64(-1e-200)`, `complex64`, `(0 + 0i)`},
    		{`package e6; const _ = complex128( 1e-2000)`, `complex128(1e-2000)`, `complex128`, `(0 + 0i)`},
    		{`package e7; const _ = complex128(-1e-2000)`, `complex128(-1e-2000)`, `complex128`, `(0 + 0i)`},
    
    		{`package f0 ; var _ float32 =  1e-200`, `1e-200`, `float32`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		{`package e5; const _ = complex64(-1e-200)`, `complex64(-1e-200)`, `complex64`, `(0 + 0i)`},
    		{`package e6; const _ = complex128( 1e-2000)`, `complex128(1e-2000)`, `complex128`, `(0 + 0i)`},
    		{`package e7; const _ = complex128(-1e-2000)`, `complex128(-1e-2000)`, `complex128`, `(0 + 0i)`},
    
    		{`package f0 ; var _ float32 =  1e-200`, `1e-200`, `float32`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    	switch t.Kind() {
    	case TCOMPLEX64:
    		return Types[TFLOAT32]
    	case TCOMPLEX128:
    		return Types[TFLOAT64]
    	}
    	base.Fatalf("unexpected type: %v", t)
    	return nil
    }
    
    func ComplexForFloat(t *Type) *Type {
    	switch t.Kind() {
    	case TFLOAT32:
    		return Types[TCOMPLEX64]
    	case TFLOAT64:
    		return Types[TCOMPLEX128]
    	}
    	base.Fatalf("unexpected type: %v", t)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// It panics if the type's Kind is not Func.
    	// It panics if i is not in the range [0, NumOut()).
    	Out(i int) Type
    
    	// OverflowComplex reports whether the complex128 x cannot be represented by type t.
    	// It panics if t's Kind is not Complex64 or Complex128.
    	OverflowComplex(x complex128) bool
    
    	// OverflowFloat reports whether the float64 x cannot be represented by type t.
    	// It panics if t's Kind is not Float32 or Float64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	renamedUint64     uint64
    	renamedUintptr    uintptr
    	renamedString     string
    	renamedBytes      []byte
    	renamedFloat32    float32
    	renamedFloat64    float64
    	renamedComplex64  complex64
    	renamedComplex128 complex128
    )
    
    func TestFmtInterface(t *testing.T) {
    	var i1 any
    	i1 = "abc"
    	s := Sprintf("%s", i1)
    	if s != "abc" {
    		t.Errorf(`Sprintf("%%s", empty("abc")) = %q want %q`, s, "abc")
    	}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	c.uint32 = c.Ident("uint32")
    	c.uint64 = c.Ident("uint64")
    	c.uintptr = c.Ident("uintptr")
    	c.float32 = c.Ident("float32")
    	c.float64 = c.Ident("float64")
    	c.complex64 = c.Ident("complex64")
    	c.complex128 = c.Ident("complex128")
    	c.void = c.Ident("void")
    	c.string = c.Ident("string")
    	c.goVoid = c.Ident("_Ctype_void")
    
    	// Normally cgo translates void* to unsafe.Pointer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    // T has lots of interesting pieces to use to test execution.
    type T struct {
    	// Basics
    	True        bool
    	I           int
    	U16         uint16
    	X, S        string
    	FloatZero   float64
    	ComplexZero complex128
    	// Nested structs.
    	U *U
    	// Struct with String method.
    	V0     V
    	V1, V2 *V
    	// Struct with Error method.
    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    // T has lots of interesting pieces to use to test execution.
    type T struct {
    	// Basics
    	True        bool
    	I           int
    	U16         uint16
    	X, S        string
    	FloatZero   float64
    	ComplexZero complex128
    	// Nested structs.
    	U *U
    	// Struct with String method.
    	V0     V
    	V1, V2 *V
    	// Struct with Error method.
    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    	"float32":    {Size: 4, Align: 4, C: c("GoFloat32")},
    	"float64":    {Size: 8, Align: 8, C: c("GoFloat64")},
    	"complex64":  {Size: 8, Align: 4, C: c("GoComplex64")},
    	"complex128": {Size: 16, Align: 8, C: c("GoComplex128")},
    }
    
    // Map an ast type to a Type.
    func (p *Package) cgoType(e ast.Expr) *Type {
    	switch t := e.(type) {
    	case *ast.StarExpr:
    		x := p.cgoType(t.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    Error:
    	x.mode = invalid
    	x.expr = e
    	return statement // avoid follow-up errors
    }
    
    // keyVal maps a complex, float, integer, string or boolean constant value
    // to the corresponding complex128, float64, int64, uint64, string, or bool
    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top