Home | History | Annotate | Download | only in big

Lines Matching refs:Word

17 type funWW func(x, y, c Word) (z1, z0 Word)
19 x, y, c, z1, z0 Word
59 type funVV func(z, x, y []Word) (c Word)
62 c Word
114 func rndW() Word {
115 return Word(rnd.Int63()<<1 | rnd.Int63n(2))
118 func rndV(n int) []Word {
119 v := make([]Word, n)
135 z := make([]Word, n)
145 type funVW func(z, x []Word, y Word) (c Word)
148 y Word
149 c Word
207 func makeFunVW(f func(z, x []Word, s uint) (c Word)) funVW {
208 return func(z, x []Word, s Word) (c Word) {
248 z := make([]Word, n)
258 type funVWW func(z, x []Word, y, r Word) (c Word)
261 y, r Word
262 c Word
308 type funWVW func(z []Word, xn Word, x []Word, y Word) (r Word)
311 xn Word
313 y Word
314 r Word
346 x, y Word
347 q, r Word
363 x, y, c Word
364 q, r Word
389 z := make([]Word, n)
399 func testWordBitLen(t *testing.T, fname string, f func(Word) int) {
401 x := Word(1) << uint(i-1) // i == 0 => x == 0
414 // runs b.N iterations of bitLen called on a Word containing (1 << nbits)-1.
419 testword := Word((uint64(1) << nbits) - 1)