Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoComplex128 (0.11 sec)

  1. src/cmd/cgo/internal/testcshared/cshared_test.go

    		{"exportComplex64", "GoComplex64 exportComplex64(GoComplex64 v)"},
    		{"exportComplex128", "GoComplex128 exportComplex128(GoComplex128 v)"},
    		{"exportComplexfloat", "GoComplex64 exportComplexfloat(GoComplex64 v)"},
    		{"exportComplexdouble", "GoComplex128 exportComplexdouble(GoComplex128 v)"},
    	}
    
    	scanner := bufio.NewScanner(bytes.NewReader(data))
    	var found int
    	for scanner.Scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    typedef size_t GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    #ifdef _MSC_VER
    #include <complex.h>
    typedef _Fcomplex GoComplex64;
    typedef _Dcomplex GoComplex128;
    #else
    typedef float _Complex GoComplex64;
    typedef double _Complex GoComplex128;
    #endif
    
    /*
      static assertion to make sure the file is being used on architecture
      at least with matching size of GoInt.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top