Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for linkname (0.19 sec)

  1. src/cmd/link/internal/ld/main.go

    	flag8             bool // use 64-bit addresses in symbol table
    	flagInterpreter   = flag.String("I", "", "use `linker` as ELF dynamic linker")
    	flagCheckLinkname = flag.Bool("checklinkname", true, "check linkname symbol references")
    	FlagDebugTramp    = flag.Int("debugtramp", 0, "debug trampolines")
    	FlagDebugTextSize = flag.Int("debugtextsize", 0, "debug text section max size")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    // strings, arrays, and maps.
    
    package json
    
    import (
    	"encoding"
    	"encoding/base64"
    	"fmt"
    	"reflect"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf16"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    )
    
    // Unmarshal parses the JSON-encoded data and stores the result
    // in the value pointed to by v. If v is nil or not a pointer,
    // Unmarshal returns an [InvalidUnmarshalError].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"errors"
    	"internal/bytealg"
    	"runtime"
    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    // registerLoadFromEmbeddedTZData is called by the time/tzdata package,
    // if it is imported.
    //
    //go:linkname registerLoadFromEmbeddedTZData
    func registerLoadFromEmbeddedTZData(f func(string) (string, error)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    	"internal/itoa"
    	runtimesyscall "internal/runtime/syscall"
    	"runtime"
    	"unsafe"
    )
    
    // Pull in entersyscall/exitsyscall for Syscall/Syscall6.
    //
    // Note that this can't be a push linkname because the runtime already has a
    // nameless linkname to export to assembly here and in x/sys. Additionally,
    // entersyscall fetches the caller PC and SP and thus can't have a wrapper
    // inbetween.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    	// a non-nil error for it, and Stat should return results identical to Lstat.
    	linkName, err := os.Readlink(pythonPath)
    	if err == nil {
    		t.Errorf("os.Readlink(%q) = %q, but expected an error\n(should be an APPEXECLINK reparse point, not a symlink)", pythonPath, linkName)
    	}
    
    	sfi, err := os.Stat(pythonPath)
    	if err != nil {
    		t.Fatalf("Stat %s: %v", pythonPath, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    		flag2 |= goobj.SymFlagDict
    	}
    	if s.IsPkgInit() {
    		flag2 |= goobj.SymFlagPkgInit
    	}
    	if s.IsLinkname() || (w.ctxt.IsAsm && name != "") || name == "main.main" {
    		// Assembly reference is treated the same as linkname,
    		// but not for unnamed (aux) symbols.
    		// The runtime linknames main.main.
    		flag2 |= goobj.SymFlagLinkname
    	}
    	if s.ABIWrapper() {
    		flag2 |= goobj.SymFlagABIWrapper
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	processorVersionInfo uint32
    	isIntel              bool
    )
    
    // set by cmd/link on arm systems
    // accessed using linkname by internal/runtime/atomic.
    //
    // goarm should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/creativeprojects/go-selfupdate
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    // The implementation of the predeclared function panic.
    // The compiler emits calls to this function.
    //
    // gopanic should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - go.undefinedlabs.com/scopeagent
    //   - github.com/goplus/igop
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/net/textproto/reader.go

    // license that can be found in the LICENSE file.
    
    package textproto
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"strconv"
    	"strings"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // TODO: This should be a distinguishable error (ErrMessageTooLarge)
    // to allow mime/multipart to detect it.
    var errMessageTooLarge = errors.New("message too large")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    // platforms. Syscalls may have untyped arguments on the stack, so
    // it's not safe to grow or scan the stack.
    //
    // cgocall should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cgocall
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top