Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __cgodebug_floats (0.23 sec)

  1. src/cmd/cgo/gcc.go

    		return s == "__cgodebug_ints" || s == "___cgodebug_ints"
    	}
    	isDebugFloats := func(s string) bool {
    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_floats" || s == "___cgodebug_floats"
    	}
    	indexOfDebugStr := func(s string) int {
    		// Some systems use leading _ to denote non-assembly symbols.
    		if strings.HasPrefix(s, "___") {
    			s = s[1:]
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    	long long __cgodebug_ints[] = {
    		0, // t1
    		0, // v2
    		0, // v3
    		i4,
    		i5,
    		u6,
    		0, // f7
    		0, // f8
    		0, // s9
    		0, // s10
    		1
    	};
    
    	double __cgodebug_floats[] = {
    		0, // t1
    		0, // v2
    		0, // v3
    		0, // i4
    		0, // i5
    		0, // u6
    		f7,
    		f8,
    		0, // s9
    		0, // s10
    		1
    	};
    
    	const char __cgodebug_str__9[] = s9;
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
Back to top