Lines Matching refs:NonContigInfo

7118     StructNonContiguousInfo NonContigInfo;  member
7129 NonContigInfo.Dims.append(CurInfo.NonContigInfo.Dims.begin(), in append()
7130 CurInfo.NonContigInfo.Dims.end()); in append()
7131 NonContigInfo.Offsets.append(CurInfo.NonContigInfo.Offsets.begin(), in append()
7132 CurInfo.NonContigInfo.Offsets.end()); in append()
7133 NonContigInfo.Counts.append(CurInfo.NonContigInfo.Counts.begin(), in append()
7134 CurInfo.NonContigInfo.Counts.end()); in append()
7135 NonContigInfo.Strides.append(CurInfo.NonContigInfo.Strides.begin(), in append()
7136 CurInfo.NonContigInfo.Strides.end()); in append()
7656 bool IsNonContiguous = CombinedInfo.NonContigInfo.IsNonContiguous; in generateInfoForComponentList()
7801 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
7816 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
7828 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
8088 CombinedInfo.NonContigInfo.Offsets.push_back(CurOffsets); in generateInfoForComponentList()
8089 CombinedInfo.NonContigInfo.Counts.push_back(CurCounts); in generateInfoForComponentList()
8090 CombinedInfo.NonContigInfo.Strides.push_back(CurStrides); in generateInfoForComponentList()
8520 CurInfo.NonContigInfo.IsNonContiguous = in generateAllInfo()
8650 CurInfo.NonContigInfo.Dims.push_back(0); in generateAllInfoForMapper()
9046 &NonContigInfo = CombinedInfo.NonContigInfo; in emitNonContiguousDescriptor() local
9071 for (unsigned I = 0, L = 0, E = NonContigInfo.Dims.size(); I < E; ++I) { in emitNonContiguousDescriptor()
9074 if (NonContigInfo.Dims[I] == 1) in emitNonContiguousDescriptor()
9076 llvm::APInt Size(/*numBits=*/32, NonContigInfo.Dims[I]); in emitNonContiguousDescriptor()
9080 for (unsigned II = 0, EE = NonContigInfo.Dims[I]; II < EE; ++II) { in emitNonContiguousDescriptor()
9087 CGF.EmitStoreOfScalar(NonContigInfo.Offsets[L][RevIdx], OffsetLVal); in emitNonContiguousDescriptor()
9091 CGF.EmitStoreOfScalar(NonContigInfo.Counts[L][RevIdx], CountLVal); in emitNonContiguousDescriptor()
9095 CGF.EmitStoreOfScalar(NonContigInfo.Strides[L][RevIdx], StrideLVal); in emitNonContiguousDescriptor()
9196 CGF.Int64Ty, CombinedInfo.NonContigInfo.Dims[I])); in emitOffloadingArrays()
9327 if (!IsNonContiguous || CombinedInfo.NonContigInfo.Offsets.empty() || in emitOffloadingArrays()