Lines Matching refs:xAt
39 void Accumulate(const SubscriptValue xAt[], const SubscriptValue yAt[]) { in Accumulate() argument
42 (IsLogicalElementTrue(x_, xAt) && IsLogicalElementTrue(y_, yAt)); in Accumulate()
44 sum_ += static_cast<Result>(*x_.Element<XT>(xAt)) * in Accumulate()
250 SubscriptValue xAt[2], yAt[2], resAt[2]; in DoMatmul() local
251 x.GetLowerBounds(xAt); in DoMatmul()
255 SubscriptValue x1{xAt[1]}, y0{yAt[0]}, y1{yAt[1]}, res1{resAt[1]}; in DoMatmul()
261 xAt[1] = x1 + k; in DoMatmul()
263 accumulator.Accumulate(xAt, yAt); in DoMatmul()
269 ++xAt[0]; in DoMatmul()
272 SubscriptValue x1{xAt[1]}, y0{yAt[0]}; in DoMatmul()
276 xAt[1] = x1 + k; in DoMatmul()
278 accumulator.Accumulate(xAt, yAt); in DoMatmul()
282 ++xAt[0]; in DoMatmul()
285 SubscriptValue x0{xAt[0]}, y0{yAt[0]}; in DoMatmul()
289 xAt[0] = x0 + k; in DoMatmul()
291 accumulator.Accumulate(xAt, yAt); in DoMatmul()