Lines Matching refs:yAt
39 void Accumulate(const SubscriptValue xAt[], const SubscriptValue yAt[]) { in Accumulate() argument
42 (IsLogicalElementTrue(x_, xAt) && IsLogicalElementTrue(y_, yAt)); in Accumulate()
45 static_cast<Result>(*y_.Element<YT>(yAt)); in Accumulate()
250 SubscriptValue xAt[2], yAt[2], resAt[2]; in DoMatmul() local
252 y.GetLowerBounds(yAt); in DoMatmul()
255 SubscriptValue x1{xAt[1]}, y0{yAt[0]}, y1{yAt[1]}, res1{resAt[1]}; in DoMatmul()
259 yAt[1] = y1 + j; in DoMatmul()
262 yAt[0] = y0 + k; in DoMatmul()
263 accumulator.Accumulate(xAt, yAt); in DoMatmul()
272 SubscriptValue x1{xAt[1]}, y0{yAt[0]}; in DoMatmul()
277 yAt[0] = y0 + k; in DoMatmul()
278 accumulator.Accumulate(xAt, yAt); in DoMatmul()
285 SubscriptValue x0{xAt[0]}, y0{yAt[0]}; in DoMatmul()
290 yAt[0] = y0 + k; in DoMatmul()
291 accumulator.Accumulate(xAt, yAt); in DoMatmul()
295 ++yAt[1]; in DoMatmul()