Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for uintptr1 (0.38 sec)

  1. api/go1.14.txt

    pkg syscall (freebsd-arm64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    pkg syscall (freebsd-arm64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
    pkg syscall (freebsd-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 Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466
    pkg syscall (freebsd-riscv64), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466
    pkg syscall (freebsd-riscv64), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno) #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (1)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Uint64).Load", Method, 19},
    		{"(*Uint64).Store", Method, 19},
    		{"(*Uint64).Swap", Method, 19},
    		{"(*Uintptr).Add", Method, 19},
    		{"(*Uintptr).CompareAndSwap", Method, 19},
    		{"(*Uintptr).Load", Method, 19},
    		{"(*Uintptr).Store", Method, 19},
    		{"(*Uintptr).Swap", Method, 19},
    		{"(*Value).CompareAndSwap", Method, 17},
    		{"(*Value).Load", Method, 4},
    		{"(*Value).Store", Method, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    func rewriteValuegeneric_OpConstInterface(v *Value) bool {
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (ConstInterface)
    	// result: (IMake (ConstNil <typ.Uintptr>) (ConstNil <typ.BytePtr>))
    	for {
    		v.reset(OpIMake)
    		v0 := b.NewValue0(v.Pos, OpConstNil, typ.Uintptr)
    		v1 := b.NewValue0(v.Pos, OpConstNil, typ.BytePtr)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValuegeneric_OpConstSlice(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    		// match: (JumpTable idx)
    		// result: (JUMPTABLE {makeJumpTableSym(b)} idx (MOVDaddr <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    		for {
    			idx := b.Controls[0]
    			v0 := b.NewValue0(b.Pos, OpARM64MOVDaddr, typ.Uintptr)
    			v0.Aux = symToAux(makeJumpTableSym(b))
    			v1 := b.NewValue0(b.Pos, OpSB, typ.Uintptr)
    			v0.AddArg(v1)
    			b.resetWithControl2(BlockARM64JUMPTABLE, idx, v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	case BlockJumpTable:
    		// match: (JumpTable idx)
    		// result: (JUMPTABLE {makeJumpTableSym(b)} idx (LEAQ <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
    		for {
    			idx := b.Controls[0]
    			v0 := b.NewValue0(b.Pos, OpAMD64LEAQ, typ.Uintptr)
    			v0.Aux = symToAux(makeJumpTableSym(b))
    			v1 := b.NewValue0(b.Pos, OpSB, typ.Uintptr)
    			v0.AddArg(v1)
    			b.resetWithControl2(BlockAMD64JUMPTABLE, idx, v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top