Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __cgodebug_str__9 (0.22 sec)

  1. src/cmd/cgo/doc.go

    		0, // v2
    		0, // v3
    		0, // i4
    		0, // i5
    		0, // u6
    		f7,
    		f8,
    		0, // s9
    		0, // s10
    		1
    	};
    
    	const char __cgodebug_str__9[] = s9;
    	const unsigned long long __cgodebug_strlen__9 = sizeof(s9)-1;
    	const char __cgodebug_str__10[] = s10;
    	const unsigned long long __cgodebug_strlen__10 = sizeof(s10)-1;
    
    and again invokes the system C compiler, to produce an object file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		// Some systems use leading _ to denote non-assembly symbols.
    		if strings.HasPrefix(s, "___") {
    			s = s[1:]
    		}
    		if strings.HasPrefix(s, "__cgodebug_str__") {
    			if n, err := strconv.Atoi(s[len("__cgodebug_str__"):]); err == nil {
    				return n
    			}
    		}
    		return -1
    	}
    	indexOfDebugStrlen := func(s string) int {
    		// Some systems use leading _ to denote non-assembly symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top