Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Wiles (0.4 sec)

  1. src/cmd/cgo/gcc.go

    		if n.Kind == "type" && typedef[n.Mangle] == nil {
    			typedef[n.Mangle] = n.Type
    		}
    	}
    }
    
    // mangleName does name mangling to translate names
    // from the original Go source files to the names
    // used in the final Go files generated by cgo.
    func (p *Package) mangleName(n *Name) {
    	// When using gccgo variables have to be
    	// exported so that they become global symbols
    	// that the C code can refer to.
    	prefix := "_C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    	conf         = printer.Config{Mode: printer.SourcePos, Tabwidth: 8}
    	noSourceConf = printer.Config{Tabwidth: 8}
    )
    
    // writeDefs creates output files to be compiled by gc and gcc.
    func (p *Package) writeDefs() {
    	var fgo2, fc io.Writer
    	f := creat(*objDir + "_cgo_gotypes.go")
    	defer f.Close()
    	fgo2 = f
    	if *gccgo {
    		f := creat(*objDir + "_cgo_defun.c")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		p.print(")")
    	}
    }
    
    func (p *parser) print(msg string) {
    	fmt.Printf("%5d: %s%s\n", p.line, p.indent, msg)
    }
    
    // ----------------------------------------------------------------------------
    // Package files
    //
    // Parse methods are annotated with matching Go productions as appropriate.
    // The annotations are intended as guidelines only since a single Go grammar
    // rule may be covered by multiple parse methods and vice versa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top