Lines Matching full:array
264 AOPetscToApplicationPermuteInt - Permutes an array of blocks of integers
272 - array - The integer array
275 . array - The permuted array
280 The length of the array should be $block*N$, where `N` is length
283 The permutation takes `array[i_pet] --> array[i_app]`, where `i_app` is
289 PetscErrorCode AOPetscToApplicationPermuteInt(AO ao, PetscInt block, PetscInt array[]) in AOPetscToApplicationPermuteInt() argument
293 PetscAssertPointer(array, 3); in AOPetscToApplicationPermuteInt()
294 PetscUseTypeMethod(ao, petsctoapplicationpermuteint, block, array); in AOPetscToApplicationPermuteInt()
299 AOApplicationToPetscPermuteInt - Permutes an array of blocks of integers
307 - array - The integer array
310 . array - The permuted array
315 The length of the array should be $ block*N $, where `N` is length
318 The permutation takes `array[i_app] --> array[i_pet]`, where `i_app` is
324 PetscErrorCode AOApplicationToPetscPermuteInt(AO ao, PetscInt block, PetscInt array[]) in AOApplicationToPetscPermuteInt() argument
328 PetscAssertPointer(array, 3); in AOApplicationToPetscPermuteInt()
329 PetscUseTypeMethod(ao, applicationtopetscpermuteint, block, array); in AOApplicationToPetscPermuteInt()
334 AOPetscToApplicationPermuteReal - Permutes an array of blocks of reals
342 - array - The integer array
345 . array - The permuted array
350 The length of the array should be $block*N$, where `N` is length
353 The permutation takes `array[i_pet] --> array[i_app]`, where `i_app` is
359 PetscErrorCode AOPetscToApplicationPermuteReal(AO ao, PetscInt block, PetscReal array[]) in AOPetscToApplicationPermuteReal() argument
363 PetscAssertPointer(array, 3); in AOPetscToApplicationPermuteReal()
364 PetscUseTypeMethod(ao, petsctoapplicationpermutereal, block, array); in AOPetscToApplicationPermuteReal()
369 AOApplicationToPetscPermuteReal - Permutes an array of blocks of reals
377 - array - The integer array
380 . array - The permuted array
385 The length of the array should be $block*N$, where `N` is length
388 The permutation takes `array[i_app] --> array[i_pet]`, where `i_app` is
394 PetscErrorCode AOApplicationToPetscPermuteReal(AO ao, PetscInt block, PetscReal array[]) in AOApplicationToPetscPermuteReal() argument
398 PetscAssertPointer(array, 3); in AOApplicationToPetscPermuteReal()
399 PetscUseTypeMethod(ao, applicationtopetscpermutereal, block, array); in AOApplicationToPetscPermuteReal()