Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for bigptr (0.29 sec)

  1. src/cmd/compile/internal/ssa/rewriteS390X.go

    }
    func rewriteValueS390X_OpLoad(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Load <t> ptr mem)
    	// cond: (is64BitInt(t) || isPtr(t))
    	// result: (MOVDload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpS390XMOVDload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

        * <a href="https://fastapi.tiangolo.com/tutorial/bigger-applications/" class="external-link" target="_blank">Tutorial - Bigger Applications</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // setHeapaddr allocates a new PAUTO variable to store ptr (which must be non-nil)
    // and then sets it as n's heap address.
    func (s *state) setHeapaddr(pos src.XPos, n *ir.Name, ptr *ssa.Value) {
    	if !ptr.Type.IsPtr() || !types.Identical(n.Type(), ptr.Type.Elem()) {
    		base.FatalfAt(n.Pos(), "setHeapaddr %L with type %v", n, ptr.Type)
    	}
    
    	// Declare variable to hold address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADDL x (MOVLconst <t> [c]))
    	// cond: !t.IsPtr()
    	// result: (ADDLconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != Op386MOVLconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(!t.IsPtr()) {
    				continue
    			}
    			v.reset(Op386ADDLconst)
    			v.AuxInt = int32ToAuxInt(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type FsverityEnableArg struct {
    	Version        uint32
    	Hash_algorithm uint32
    	Block_size     uint32
    	Salt_size      uint32
    	Salt_ptr       uint64
    	Sig_size       uint32
    	_              uint32
    	Sig_ptr        uint64
    	_              [11]uint64
    }
    
    type Nhmsg struct {
    	Family   uint8
    	Scope    uint8
    	Protocol uint8
    	Resvd    uint8
    	Flags    uint32
    }
    
    type NexthopGrp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Load <t> ptr mem)
    	// cond: (is64BitInt(t) || isPtr(t))
    	// result: (MOVDload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpPPC64MOVDload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SIGIOT Signal
    pkg syscall (netbsd-arm64-cgo), const SIGPROF = 27
    pkg syscall (netbsd-arm64-cgo), const SIGPROF Signal
    pkg syscall (netbsd-arm64-cgo), const SIGPWR = 32
    pkg syscall (netbsd-arm64-cgo), const SIGPWR Signal
    pkg syscall (netbsd-arm64-cgo), const SIGSTOP = 17
    pkg syscall (netbsd-arm64-cgo), const SIGSTOP Signal
    pkg syscall (netbsd-arm64-cgo), const SIGSYS = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    - Fix azure disk attach failure for disk size bigger than 4TB ([#95463](https://github.com/kubernetes/kubernetes/pull/95463), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (ADD x (MOVWconst <t> [c]))
    	// cond: !t.IsPtr()
    	// result: (ADDconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMMOVWconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(!t.IsPtr()) {
    				continue
    			}
    			v.reset(OpARMADDconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.13.md

        * Health check parameters are configurable to be bigger than default values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top