Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for modud (0.04 sec)

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

    }
    func rewriteValuePPC64_OpMod64u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod64u x y)
    	// cond: buildcfg.GOPPC64 >= 9
    	// result: (MODUD x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 >= 9) {
    			break
    		}
    		v.reset(OpPPC64MODUD)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Mod64u x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v0.AddArg(x)
    		v.AddArg2(v0, y)
    		return true
    	}
    }
    func rewriteValueS390X_OpMod64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Mod64 x y)
    	// result: (MODD x y)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpS390XMODD)
    		v.AddArg2(x, y)
    		return true
    	}
    }
    func rewriteValueS390X_OpMod8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Add link to german article: REST-API Programmieren mittels Python und dem FastAPI Modul. PR [#4624](https://github.com/tiangolo/fastapi/pull/4624) by [@fschuermeyer](https://github.com/fschuermeyer).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top