Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 282 for Reference (0.8 sec)

  1. src/cmd/compile/internal/noder/codes.go

    	exprUnaryOp
    	exprBinaryOp
    	exprCall
    	exprConvert
    	exprNew
    	exprMake
    	exprSizeof
    	exprAlignof
    	exprOffsetof
    	exprZero
    	exprFuncInst
    	exprRecv
    	exprReshape
    	exprRuntimeBuiltin // a reference to a runtime function from transformed syntax. Followed by string name, e.g., "panicrangeexit"
    )
    
    type codeAssign int
    
    func (c codeAssign) Marker() pkgbits.SyncMarker { return pkgbits.SyncAssign }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/plist.go

    			s := p.From.Sym
    			if s == nil {
    				// func _() { }
    				curtext = nil
    				continue
    			}
    			text = append(text, s)
    			etext = p
    			curtext = s
    			continue
    
    		case AFUNCDATA:
    			// Rewrite reference to go_args_stackmap(SB) to the Go-provided declaration information.
    			if curtext == nil { // func _() {}
    				continue
    			}
    			switch p.To.Sym.Name {
    			case "go_args_stackmap":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // Package loopclosure defines an Analyzer that checks for references to
    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/crypto/tls/cache_test.go

    	}
    	if certA.cert != certB.cert {
    		t.Fatal("newCert returned a unique reference for a duplicate certificate")
    	}
    
    	if entry, ok := cc.Load(string(p.Bytes)); !ok {
    		t.Fatal("cache does not contain expected entry")
    	} else {
    		if refs := entry.(*cacheEntry).refs.Load(); refs != 2 {
    			t.Fatalf("unexpected number of references: got %d, want 2", refs)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. src/archive/tar/format.go

    	// the format has several limitations making it unsuitable for some usages.
    	// Most notably, it cannot support sparse files, files larger than 8GiB,
    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    	//	http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	FormatUSTAR
    
    	// FormatPAX represents the PAX header format defined in POSIX.1-2001.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/asan_useAfterReturn.go

    // In the following program, the local variable 'local' was moved to heap by the Go
    // compiler because foo() is returning the reference to 'local', and return stack of
    // foo() will be invalid. Thus for main() to use the reference to 'local', the 'local'
    // must be available even after foo() has finished. Therefore, Go has no such issue.
    
    import "fmt"
    
    var ptr *int
    
    func main() {
    	foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 773 bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    		return
    	case "GLOBL", "PCDATA":
    		// No text definitions or symbol references.
    	case "DATA", "FUNCDATA":
    		// For DATA, operands[0] is defined symbol.
    		// For FUNCDATA, operands[0] is an immediate constant.
    		// Remaining operands may have references.
    		if len(operands) < 2 {
    			return
    		}
    		operands = operands[1:]
    	}
    	// Search for symbol references.
    	for _, op := range operands {
    		p.start(op)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "@B(SB),0,$0", "expected '(', found B"},             // Issue 23580.
    		{"TEXT", "foo<ABIInternal>(SB),0", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    		{"FUNCDATA", "", "expect two operands for FUNCDATA"},
    		{"FUNCDATA", "(SB ", "expect two operands for FUNCDATA"},
    		{"DATA", "", "expect two operands for DATA"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadpe/seh.go

    	// each entry being 3 relocations long. The first relocation
    	// is a pointer to the function symbol to which the pdata entry
    	// corresponds. The third relocation is a pointer to the
    	// corresponding .xdata entry.
    	// Reference:
    	// https://learn.microsoft.com/en-us/cpp/build/exception-handling-x64#struct-runtime_function
    	rels := ldr.Relocs(pdata)
    	if rels.Count()%3 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/debug/dwarf/entry.go

    //	address           uint64         ClassAddress
    //	block             []byte         ClassBlock
    //	constant          int64          ClassConstant
    //	flag              bool           ClassFlag
    //	reference
    //	  to info         dwarf.Offset   ClassReference
    //	  to type unit    uint64         ClassReferenceSig
    //	string            string         ClassString
    //	exprloc           []byte         ClassExprLoc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
Back to top