@{ * Same as GatherV except that the result is placed in all processes. */
| 833 | * Same as GatherV except that the result is placed in all processes. |
| 834 | */ |
| 835 | int AllGatherV(const int* sendBuffer, int* recvBuffer, vtkIdType sendLength, |
| 836 | vtkIdType* recvLengths, vtkIdType* offsets) |
| 837 | { |
| 838 | return this->AllGatherVVoidArray( |
| 839 | sendBuffer, recvBuffer, sendLength, recvLengths, offsets, VTK_INT); |
| 840 | } |
| 841 | int AllGatherV(const unsigned int* sendBuffer, unsigned int* recvBuffer, vtkIdType sendLength, |
| 842 | vtkIdType* recvLengths, vtkIdType* offsets) |
| 843 | { |
nothing calls this directly
no test coverage detected