Lines Matching refs:v
59 value v[2][2]; member
62 v[0][0] = v00; in Matrix2x2()
63 v[0][1] = v01; in Matrix2x2()
64 v[1][0] = v10; in Matrix2x2()
65 v[1][1] = v11; in Matrix2x2()
137 return A.v[0][0]; in SerialQueueFib()
321 value res = M.v[0][0]; // get value in ParallelPipeFib()
354 return b.sum.v[0][0]; in parallel_reduceFib()
393 output[k] = product.v[0][1]; in operator ()()
405 assert(n < 2 || output[n - 2] + output[n - 1] == b.product.v[0][1]); in parallel_scanFib()
407 return b.product.v[0][1]; in parallel_scanFib()
524 Matrix2x2Multiply(v, to.v, result.v); in operator *()