TOpenCLVector::CopyToArray Method

Overload List

#SignatureDescription
1void CopyToArray(DewArray<TCplx> &Dst, int Index, int Len);
2void CopyToArray(DewArray<TSCplx> &Dst, int Index, int Len);
3void CopyToArray(DewArray<double> &Dst, int Index, int Len);
4void CopyToArray(DewArray<float> &Dst, int Index, int Len);
5void CopyToArray(DewArray<float> &Dst);Copies calling object data to array.
6void CopyToArray(DewArray<double> &Dst);Copies calling object data to array.
7void CopyToArray(DewArray<TCplx> &Dst);Copies calling object data to array.
8void CopyToArray(DewArray<int> &Dst);Copies calling object data to array.
9void CopyToArray(DewArray<int> &Dst, int Index, int Len);Copies calling object data to array.

Overload 1: void CopyToArray(DewArray<TCplx> &Dst, int Index, int Len);

#NameTypeDescription
1DstDewArray<TCplx> &
2Indexint
3Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 2: void CopyToArray(DewArray<TSCplx> &Dst, int Index, int Len);

#NameTypeDescription
1DstDewArray<TSCplx> &
2Indexint
3Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 3: void CopyToArray(DewArray<double> &Dst, int Index, int Len);

#NameTypeDescription
1DstDewArray<double> &
2Indexint
3Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 4: void CopyToArray(DewArray<float> &Dst, int Index, int Len);

#NameTypeDescription
1DstDewArray<float> &
2Indexint
3Lenint
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler

Overload 5: void CopyToArray(DewArray<float> &Dst);

Copies calling object data to array.

#NameTypeDescription
1DstDewArray<float> &
Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 6: void CopyToArray(DewArray<double> &Dst);

Copies calling object data to array.

#NameTypeDescription
1DstDewArray<double> &
Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 7: void CopyToArray(DewArray<TCplx> &Dst);

Copies calling object data to array.

#NameTypeDescription
1DstDewArray<TCplx> &
Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length/2, if the Complex is false.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 8: void CopyToArray(DewArray<int> &Dst);

Copies calling object data to array.

#NameTypeDescription
1DstDewArray<int> &
Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 9: void CopyToArray(DewArray<int> &Dst, int Index, int Len);

Copies calling object data to array.

#NameTypeDescription
1DstDewArray<int> &
2Indexint
3Lenint
Remarks:

Copies Len elements from the calling object starting at Index to Dst array. The size of the Dst array is set to Len or Len*2, if the Complex is true.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler