@{ * Same as gather except that the result ends up on all processes. */
| 759 | * Same as gather except that the result ends up on all processes. |
| 760 | */ |
| 761 | int AllGather(const int* sendBuffer, int* recvBuffer, vtkIdType length) |
| 762 | { |
| 763 | return this->AllGatherVoidArray(sendBuffer, recvBuffer, length, VTK_INT); |
| 764 | } |
| 765 | int AllGather(const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType length) |
| 766 | { |
| 767 | return this->AllGatherVoidArray(sendBuffer, recvBuffer, length, VTK_UNSIGNED_INT); |
nothing calls this directly
no test coverage detected