Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for prefix (1.06 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Special is a special symbol, printed as a prefix plus another
    // value.
    type Special struct {
    	Prefix string
    	Val    AST
    }
    
    func (s *Special) print(ps *printState) {
    	prefix := s.Prefix
    	if ps.llvmStyle {
    		switch prefix {
    		case "TLS wrapper function for ":
    			prefix = "thread-local wrapper routine for "
    		case "TLS init function for ":
    			prefix = "thread-local initialization routine for "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Using spare bit to make leading [E]VEX encoding byte different from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// when -trimpath is enabled.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if cfg.BuildTrimpath || p.Goroot {
    			prefixMapFlag := "-fdebug-prefix-map"
    			if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    				prefixMapFlag = "-ffile-prefix-map"
    			}
    			// Keep in sync with Action.trimpath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // The meta tag has the form:
    //
    //	<meta name="go-import" content="import-prefix vcs repo-root">
    //
    // The import-prefix is the import path corresponding to the repository
    // root. It must be a prefix or an exact match of the package being
    // fetched with "go get". If it's not an exact match, another http
    // request is made at the prefix to verify the <meta> tags match.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	Local             bool                 // imported via local path (./ or ../)
    	LocalPrefix       string               // interpret ./ and ../ imports relative to this prefix
    	ExeName           string               // desired name for temporary executable
    	FuzzInstrument    bool                 // package should be instrumented for fuzzing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "dependencies": {
            "global-prefix": "^3.0.0"
          },
          "engines": {
            "node": ">=6"
          }
        },
        "node_modules/global-prefix": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		return
    	}
    	buildOpCfg = cfg
    
    	// Configure the optab entries which may generate prefix opcodes.
    	prefixOptab := make([]Optab, 0, len(prefixableOptab))
    	for _, entry := range prefixableOptab {
    		entry := entry
    		if pfxEnabled && buildcfg.GOPPC64 >= entry.minGOPPC64 {
    			// Enable prefix opcode generation and resize.
    			entry.ispfx = true
    			entry.size = entry.pfxsize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	// to find one of these accidentally.
    	const prefix = "\xff Go buildinf:" // 14 bytes, plus 2 data bytes filled in below
    	data := make([]byte, 32)
    	copy(data, prefix)
    	data[len(prefix)] = byte(ctxt.Arch.PtrSize)
    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	op_SPM     uint32 = 0x0400 // FORMAT_RR         SET PROGRAM MASK
    	op_SPT     uint32 = 0xB208 // FORMAT_S          SET CPU TIMER
    	op_SPX     uint32 = 0xB210 // FORMAT_S          SET PREFIX
    	op_SQD     uint32 = 0xED35 // FORMAT_RXE        SQUARE ROOT (long HFP)
    	op_SQDB    uint32 = 0xED15 // FORMAT_RXE        SQUARE ROOT (long BFP)
    	op_SQDBR   uint32 = 0xB315 // FORMAT_RRE        SQUARE ROOT (long BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    	if sz != -1 {
    		// Relocations R_AARCH64_LDST{64,32,16,8}_ABS_LO12_NC can only generate 8-byte, 4-byte,
    		// 2-byte and 1-byte aligned addresses, so the address of load/store must be aligned.
    		// Also symbols with prefix of "go:string." are Go strings, which will go into
    		// the symbol table, their addresses are not necessary aligned, rule this out.
    		align := int64(1 << sz)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top