Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for linkname (0.88 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    	Handle  [8]int8
    }
    
    type TIPCSIOCLNReq struct {
    	Peer     uint32
    	Id       uint32
    	Linkname [68]int8
    }
    
    type TIPCSIOCNodeIDReq struct {
    	Peer uint32
    	Id   [16]int8
    }
    
    type PPSKInfo struct {
    	Assert_sequence uint32
    	Clear_sequence  uint32
    	Assert_tu       PPSKTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    	Handle  [8]int8
    }
    
    type TIPCSIOCLNReq struct {
    	Peer     uint32
    	Id       uint32
    	Linkname [68]int8
    }
    
    type TIPCSIOCNodeIDReq struct {
    	Peer uint32
    	Id   [16]int8
    }
    
    type PPSKInfo struct {
    	Assert_sequence uint32
    	Clear_sequence  uint32
    	Assert_tu       PPSKTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    func (t *semTable) rootFor(addr *uint32) *semaRoot {
    	return &t[(uintptr(unsafe.Pointer(addr))>>3)%semTabSize].root
    }
    
    // sync_runtime_Semacquire should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //   - github.com/sagernet/gvisor
    //
    // 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
    - 19K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    package json
    
    import (
    	"bytes"
    	"cmp"
    	"encoding"
    	"encoding/base64"
    	"fmt"
    	"math"
    	"reflect"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    )
    
    // Marshal returns the JSON encoding of v.
    //
    // Marshal traverses the value v recursively.
    // If an encountered value implements [Marshaler]
    // and is not a nil pointer, Marshal calls [Marshaler.MarshalJSON]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    }
    
    func libc_getfsstat_trampoline()
    
    //go:cgo_import_dynamic libc_getfsstat getfsstat "/usr/lib/libSystem.B.dylib"
    
    // utimensat should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    // See go.dev/issue/67401.
    //
    //go:linkname utimensat
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/net/net.go

    library functions, such as GetAddrInfo and DnsQuery.
    */
    package net
    
    import (
    	"context"
    	"errors"
    	"internal/poll"
    	"io"
    	"os"
    	"sync"
    	"syscall"
    	"time"
    	_ "unsafe" // for linkname
    )
    
    // Addr represents a network end point address.
    //
    // The two methods [Addr.Network] and [Addr.String] conventionally return strings
    // that can be passed as the arguments to [Dial], but the exact form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	AttrABIWrapper
    
    	// IsPcdata indicates this is a pcdata symbol.
    	AttrPcdata
    
    	// PkgInit indicates this is a compiler-generated package init func.
    	AttrPkgInit
    
    	// Linkname indicates this is a go:linkname'd symbol.
    	AttrLinkname
    
    	// attrABIBase is the value at which the ABI is encoded in
    	// Attribute. This must be last; all bits after this are
    	// assumed to be an ABI value.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top