Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for uintptr (3.04 sec)

  1. api/go1.23.txt

    pkg sync/atomic, func AndUintptr(*uintptr, uintptr) uintptr #61395
    pkg sync/atomic, func OrInt32(*int32, int32) int32 #61395
    pkg sync/atomic, func OrInt64(*int64, int64) int64 #61395
    pkg sync/atomic, func OrUint32(*uint32, uint32) uint32 #61395
    pkg sync/atomic, func OrUint64(*uint64, uint64) uint64 #61395
    pkg sync/atomic, func OrUintptr(*uintptr, uintptr) uintptr #61395
    pkg sync/atomic, method (*Int32) And(int32) int32 #61395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. api/go1.17.txt

    pkg runtime/cgo (darwin-amd64-cgo), type Handle uintptr
    pkg runtime/cgo (darwin-arm64-cgo), func NewHandle(interface{}) Handle
    pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Delete()
    pkg runtime/cgo (darwin-arm64-cgo), method (Handle) Value() interface{}
    pkg runtime/cgo (darwin-arm64-cgo), type Handle uintptr
    pkg runtime/cgo (freebsd-386-cgo), func NewHandle(interface{}) Handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. api/go1.19.txt

    pkg sync/atomic, method (*Uint64) Swap(uint64) uint64 #50860
    pkg sync/atomic, method (*Uintptr) Add(uintptr) uintptr #50860
    pkg sync/atomic, method (*Uintptr) CompareAndSwap(uintptr, uintptr) bool #50860
    pkg sync/atomic, method (*Uintptr) Load() uintptr #50860
    pkg sync/atomic, method (*Uintptr) Store(uintptr) #50860
    pkg sync/atomic, method (*Uintptr) Swap(uintptr) uintptr #50860
    pkg sync/atomic, type Bool struct #50860
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/dec.rules

        (Load <typ.Int>
          (OffPtr <typ.IntPtr> [config.PtrSize] ptr)
          mem)
        (Load <typ.Int>
          (OffPtr <typ.IntPtr> [2*config.PtrSize] ptr)
          mem))
    (Store {t} dst (SliceMake ptr len cap) mem) =>
      (Store {typ.Int}
        (OffPtr <typ.IntPtr> [2*config.PtrSize] dst)
        cap
        (Store {typ.Int}
          (OffPtr <typ.IntPtr> [config.PtrSize] dst)
          len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. api/go1.9.txt

    pkg syscall (linux-386-cgo), type SysProcAttr struct, AmbientCaps []uintptr
    pkg syscall (linux-386), type Credential struct, NoSetGroups bool
    pkg syscall (linux-386), type SysProcAttr struct, AmbientCaps []uintptr
    pkg syscall (linux-amd64-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (linux-amd64-cgo), type SysProcAttr struct, AmbientCaps []uintptr
    pkg syscall (linux-amd64), type Credential struct, NoSetGroups bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  6. api/go1.18.txt

    pkg syscall (windows-386), func Syscall18 //deprecated
    pkg syscall (windows-386), func Syscall6 //deprecated
    pkg syscall (windows-386), func Syscall9 //deprecated
    pkg syscall (windows-386), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
    pkg syscall (windows-amd64), func Syscall //deprecated
    pkg syscall (windows-amd64), func Syscall12 //deprecated
    pkg syscall (windows-amd64), func Syscall15 //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    pkg syscall (darwin-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    pkg syscall (darwin-arm64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/README.md

    call dispatch. There are three entry points:
    ```
      func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
      func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
      func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
    ```
    The first and second are the standard ones; they differ only in how many
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/ws2_32.txt

    	"fmt"
    	"syscall"
    	"unsafe"
    )
    
    func hasModuleHandle() {
    	const ws2_32 = "ws2_32.dll"
    	getModuleHandle := syscall.MustLoadDLL("kernel32.dll").MustFindProc("GetModuleHandleW")
    	mod, _, _ := getModuleHandle.Call(uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(ws2_32))))
    	if mod != 0 {
    		fmt.Println(ws2_32+":", "found")
    	} else {
    		fmt.Println(ws2_32+":", "not found")
    	}
    }
    -- net.go --
    //go:build net
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:57:32 UTC 2024
    - 730 bytes
    - Viewed (0)
  10. api/except.txt

    pkg syscall (windows-386), type AddrinfoW struct, Addr uintptr
    pkg syscall (windows-386), type CertChainPolicyPara struct, ExtraPolicyPara uintptr
    pkg syscall (windows-386), type CertChainPolicyStatus struct, ExtraPolicyStatus uintptr
    pkg syscall (windows-386), type CertContext struct, CertInfo uintptr
    pkg syscall (windows-386), type CertRevocationInfo struct, CrlInfo uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top