Overload List
Overload 1: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);
Compute X/Y + Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | TMtxVecInt * |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);
Compute X/Y + Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | TMtxVecInt * | |
| 6 | zIndex | int | |
| 7 | Index | int | |
| 8 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, int xyScale, TMtxVecInt *Z);
Compute X/Y*xyScale + Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | xyScale | int | |
| 4 | Z | TMtxVecInt * |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, int xyScale, TMtxVecInt *Z, int zIndex, int Index, int Len);
Compute X/Y*xyScale + Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | xyScale | int | |
| 6 | Z | TMtxVecInt * | |
| 7 | zIndex | int | |
| 8 | Index | int | |
| 9 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 5: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z, int zScale);
Compute X/Y + Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | TMtxVecInt * | |
| 4 | zScale | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 6: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int zScale, int Index, int Len);
Compute X/Y + Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | TMtxVecInt * | |
| 6 | zIndex | int | |
| 7 | zScale | int | |
| 8 | Index | int | |
| 9 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 7: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, int Z);
Compute X/Y + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 8: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, int Z, int Index, int Len);
Compute X/Y + zScalar on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | int | |
| 6 | Index | int | |
| 7 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 9: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, int xyScale, TMtxVecInt *Z, int zScale);
Compute (X / Y)*xyScale + Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | xyScale | int | |
| 4 | Z | TMtxVecInt * | |
| 5 | zScale | int |
Remarks:
The following expression would also run at the same or higher speed, when passing Z also for the Y parameter:
(X / Z) xyScale + Z zScale
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 10: TMtxVecInt *DivAndAdd(TMtxVecInt *X, TMtxVecInt *Y, int xyScale, int Z);
Compute (X / Y) * xyScale + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | xyScale | int | |
| 4 | Z | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 11: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, int xyScale, TMtxVecInt *Z, int zIndex, int zScale, int Index, int Len);
Compute (X / Y)*xyScale + Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | xyScale | int | |
| 6 | Z | TMtxVecInt * | |
| 7 | zIndex | int | |
| 8 | zScale | int | |
| 9 | Index | int | |
| 10 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 12: TMtxVecInt *DivAndAdd(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, int xyScale, int Z, int Index, int Len);
Compute (X / Y) * xyScale + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | xyScale | int | |
| 6 | Z | int | |
| 7 | Index | int | |
| 8 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler