Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for uintptr (0.81 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. 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)
  3. 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)
  4. api/go1.21.txt

    pkg log/slog, func NewJSONHandler(io.Writer, *HandlerOptions) *JSONHandler #59339
    pkg log/slog, func NewLogLogger(Handler, Level) *log.Logger #56345
    pkg log/slog, func NewRecord(time.Time, Level, string, uintptr) Record #56345
    pkg log/slog, func NewTextHandler(io.Writer, *HandlerOptions) *TextHandler #59339
    pkg log/slog, func SetDefault(*Logger) #56345
    pkg log/slog, func String(string, string) Attr #56345
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Convert x <= y to !(y > x).
    (Leq(64|32|16|8)  x y) => (Not (Less(64|32|16|8)  y x))
    (Leq(64|32|16|8)U x y) => (Not (Less(64|32|16|8)U y x))
    (Leq(64|32)F ...) => (FLE(D|S) ...)
    
    (EqPtr x y) => (SEQZ (SUB <typ.Uintptr> x y))
    (Eq64  x y) => (SEQZ (SUB <x.Type> x y))
    (Eq32  x y) &&  x.Type.IsSigned() => (SEQZ (SUB <x.Type> (SignExt32to64 x) (SignExt32to64 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (If (GreaterThanF  cc) yes no) => (FGT cc yes no)
    (If (GreaterEqualF cc) yes no) => (FGE cc yes no)
    
    (If cond yes no) => (TBNZ [0] cond yes no)
    
    (JumpTable idx) => (JUMPTABLE {makeJumpTableSym(b)} idx (MOVDaddr <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    
    // atomic intrinsics
    // Note: these ops do not accept offset.
    (AtomicLoad8   ...) => (LDARB ...)
    (AtomicLoad32  ...) => (LDARW ...)
    (AtomicLoad64  ...) => (LDAR  ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Load <t> (OffPtr [off]                       (Addr {s} sb)       ) _) && t.IsUintptr() && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)
    (Load <t> (OffPtr [off]              (Convert (Addr {s} sb) _)    ) _) && t.IsUintptr() && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)
    (Load <t> (OffPtr [off] (ITab (IMake          (Addr {s} sb)    _))) _) && t.IsUintptr() && isFixedSym(s, off) => (Addr {fixedSym(b.Func, s, off)} sb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (If (SETEQF cmp) yes no) => (EQF  cmp yes no)
    (If (SETNEF cmp) yes no) => (NEF  cmp yes no)
    
    (If cond yes no) => (NE (TESTB cond cond) yes no)
    
    (JumpTable idx) => (JUMPTABLE {makeJumpTableSym(b)} idx (LEAQ <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    
    // Atomic loads.  Other than preserving their ordering with respect to other loads, nothing special here.
    (AtomicLoad8 ptr mem) => (MOVBatomicload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top