Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for const1 (0.61 sec)

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

    			v2.AuxInt = int32ToAuxInt(d - c)
    			v.AddArg2(v0, v2)
    			return true
    		}
    		break
    	}
    	// match: (AndB (Leq16 (Const16 [c]) x) (Less16 x (Const16 [d])))
    	// cond: d >= c
    	// result: (Less16U (Sub16 <x.Type> x (Const16 <x.Type> [c])) (Const16 <x.Type> [d-c]))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpLeq16 {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Reader", Type, 0},
    		{"TypeBlock", Const, 0},
    		{"TypeChar", Const, 0},
    		{"TypeCont", Const, 0},
    		{"TypeDir", Const, 0},
    		{"TypeFifo", Const, 0},
    		{"TypeGNULongLink", Const, 1},
    		{"TypeGNULongName", Const, 1},
    		{"TypeGNUSparse", Const, 3},
    		{"TypeLink", Const, 0},
    		{"TypeReg", Const, 0},
    		{"TypeRegA", Const, 0},
    		{"TypeSymlink", Const, 0},
    		{"TypeXGlobalHeader", Const, 0},
    		{"TypeXHeader", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg debug/dwarf, const AttrDefaulted Attr
    pkg debug/dwarf, const AttrDeleted = 138
    pkg debug/dwarf, const AttrDeleted Attr
    pkg debug/dwarf, const AttrDigitCount = 95
    pkg debug/dwarf, const AttrDigitCount Attr
    pkg debug/dwarf, const AttrDwoName = 118
    pkg debug/dwarf, const AttrDwoName Attr
    pkg debug/dwarf, const AttrElemental = 102
    pkg debug/dwarf, const AttrElemental Attr
    pkg debug/dwarf, const AttrEndianity = 101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64.go

    }
    func rewriteValueARM64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueARM64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    }
    func rewriteValueAMD64_OpConst16(v *Value) bool {
    	// match: (Const16 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    		c := auxIntToInt16(v.AuxInt)
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		return true
    	}
    }
    func rewriteValueAMD64_OpConst8(v *Value) bool {
    	// match: (Const8 [c])
    	// result: (MOVLconst [int32(c)])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    // Code generated by 'mkerrors.bash'; DO NOT EDIT.
    
    package windows
    
    import "syscall"
    
    const (
    	FACILITY_NULL                                                                           = 0
    	FACILITY_RPC                                                                            = 1
    	FACILITY_DISPATCH                                                                       = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
Back to top