Searched refs:yAt (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | matmul.cpp | 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() 272 SubscriptValue x1{xAt[1]}, y0{yAt[0]}; in DoMatmul() 277 yAt[0] = y0 + k; in DoMatmul() 278 accumulator.Accumulate(xAt, yAt); in DoMatmul() 290 yAt[0] = y0 + k; in DoMatmul() 291 accumulator.Accumulate(xAt, yAt); in DoMatmul() [all …]
|
| H A D | dot-product.cpp | 30 void AccumulateIndexed(SubscriptValue xAt, SubscriptValue yAt) { in AccumulateIndexed() argument 33 (IsLogicalElementTrue(x_, &xAt) && IsLogicalElementTrue(y_, &yAt)); in AccumulateIndexed() 36 const YT &yElement{*y_.Element<YT>(&yAt)}; in AccumulateIndexed() 99 SubscriptValue yAt{y.GetDimension(0).LowerBound()}; in DoDotProduct() local 102 accumulator.AccumulateIndexed(xAt++, yAt++); in DoDotProduct()
|
| H A D | character.cpp | 86 SubscriptValue ub[maxRank], xAt[maxRank], yAt[maxRank]; in Compare() local 105 y.GetLowerBounds(yAt); in Compare() 117 ++resultAt, x.IncrementSubscripts(xAt), y.IncrementSubscripts(yAt)) { in Compare() 119 x.Element<CHAR>(xAt), y.Element<CHAR>(yAt), xChars, yChars); in Compare()
|