Lines Matching refs:NonContigInfo

7167     StructNonContiguousInfo NonContigInfo;  member
7178 NonContigInfo.Dims.append(CurInfo.NonContigInfo.Dims.begin(), in append()
7179 CurInfo.NonContigInfo.Dims.end()); in append()
7180 NonContigInfo.Offsets.append(CurInfo.NonContigInfo.Offsets.begin(), in append()
7181 CurInfo.NonContigInfo.Offsets.end()); in append()
7182 NonContigInfo.Counts.append(CurInfo.NonContigInfo.Counts.begin(), in append()
7183 CurInfo.NonContigInfo.Counts.end()); in append()
7184 NonContigInfo.Strides.append(CurInfo.NonContigInfo.Strides.begin(), in append()
7185 CurInfo.NonContigInfo.Strides.end()); in append()
7716 bool IsNonContiguous = CombinedInfo.NonContigInfo.IsNonContiguous; in generateInfoForComponentList()
7911 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
7925 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
7937 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
8203 CombinedInfo.NonContigInfo.Offsets.push_back(CurOffsets); in generateInfoForComponentList()
8204 CombinedInfo.NonContigInfo.Counts.push_back(CurCounts); in generateInfoForComponentList()
8205 CombinedInfo.NonContigInfo.Strides.push_back(CurStrides); in generateInfoForComponentList()
8593 CurInfo.NonContigInfo.IsNonContiguous = in generateAllInfoForClauses()
8656 CurInfo.NonContigInfo.Dims.push_back(0); in generateAllInfoForClauses()
9204 &NonContigInfo = CombinedInfo.NonContigInfo; in emitNonContiguousDescriptor() local
9229 for (unsigned I = 0, L = 0, E = NonContigInfo.Dims.size(); I < E; ++I) { in emitNonContiguousDescriptor()
9232 if (NonContigInfo.Dims[I] == 1) in emitNonContiguousDescriptor()
9234 llvm::APInt Size(/*numBits=*/32, NonContigInfo.Dims[I]); in emitNonContiguousDescriptor()
9238 for (unsigned II = 0, EE = NonContigInfo.Dims[I]; II < EE; ++II) { in emitNonContiguousDescriptor()
9245 CGF.EmitStoreOfScalar(NonContigInfo.Offsets[L][RevIdx], OffsetLVal); in emitNonContiguousDescriptor()
9249 CGF.EmitStoreOfScalar(NonContigInfo.Counts[L][RevIdx], CountLVal); in emitNonContiguousDescriptor()
9253 CGF.EmitStoreOfScalar(NonContigInfo.Strides[L][RevIdx], StrideLVal); in emitNonContiguousDescriptor()
9353 CGF.Int64Ty, CombinedInfo.NonContigInfo.Dims[I])); in emitOffloadingArrays()
9465 if (!IsNonContiguous || CombinedInfo.NonContigInfo.Offsets.empty() || in emitOffloadingArrays()