Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for u32run (0.49 sec)

  1. test/ken/modconst.go

    		b = a % 60
    		u8test(a, b, 60)
    		b = a % 64
    		u8test(a, b, 64)
    		b = a % 127
    		u8test(a, b, 127)
    	}
    }
    
    func main() {
    	xtest()
    	i64run()
    	u64run()
    	i32run()
    	u32run()
    	i16run()
    	u16run()
    	i8run()
    	u8run()
    }
    
    func xtest() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  2. test/ken/divconst.go

    		b = a / 64
    		u8test(a, b, 64)
    		b = a / 128
    		u8test(a, b, 128)
    		b = a / 184
    		u8test(a, b, 184)
    	}
    }
    
    func main() {
    	xtest()
    	i64run()
    	u64run()
    	i32run()
    	u32run()
    	i16run()
    	u16run()
    	i8run()
    	u8run()
    }
    
    func xtest() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/divconst_test.go

    	for i := 0; i < b.N; i++ {
    		i32res = int32(i) / 7
    		boolres = int32(i)%7 == 0
    	}
    }
    
    var u32res uint32
    
    func BenchmarkDivconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		u32res = uint32(i) / 7
    	}
    }
    
    func BenchmarkModconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		u32res = uint32(i) % 7
    	}
    }
    
    func BenchmarkDivisibleconstU32(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/anames9.go

    	"CREG",
    	"CRBIT",
    	"SPR",
    	"MREG",
    	"ZCON",
    	"U1CON",
    	"U2CON",
    	"U3CON",
    	"U4CON",
    	"U5CON",
    	"U8CON",
    	"U15CON",
    	"S16CON",
    	"U16CON",
    	"16CON",
    	"U31CON",
    	"S32CON",
    	"U32CON",
    	"32CON",
    	"S34CON",
    	"64CON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"BRA",
    	"BRAPIC",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"XOREG",
    	"FPSCR",
    	"LR",
    	"CTR",
    	"ANY",
    	"GOK",
    	"ADDR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 673 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(&p.From)
    
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 21: /* or $u32con,rx[,ry] => oris + ori (similar for xor) */
    		var opu, opl uint32
    		r := uint32(p.Reg)
    		if r == 0 {
    			r = uint32(p.To.Reg)
    		}
    		switch p.As {
    		case AOR:
    			opu, opl = OP_ORIS, OP_ORI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    \375\214\362\346?\340\222\200\336\235\240\272?Z(\t\203\346\035\347?\375H\025\373\200N\343?\306\244Ry=\204\344?\326i(\006/2\335?\252k=}9\025\340?\220\221\363\362\260\311\332?\332\261\311+\267\343\336?\356\377\020:\316\000\351?=\323R\266*\344\355?.\232R5n\371\337?\"J\007\361([\354?\212\242\222\"\300\317\345?\017\261\205\273G\273\350?\206{_7\265A\356?l\247\320\366#\245\304?6P3\314eC\337?\017\2469\311\305\272\347?\032+\260UU\200\321?\227\202%Kl\233\351?\260\357\237\343V;\356?\213\270\332\203S\021\35...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top