Searched refs:stack__ (Results 1 – 1 of 1) sorted by relevance
| /petsc/include/ |
| H A D | petscerror.h | 1440 #define PetscStackPush_Private(stack__, file__, func__, line__, petsc_routine__, hot__) \ argument 1444 #define PetscStackPop_Private(stack__, func__) (void)func__ argument 1447 #define PetscStackPush_Private(stack__, file__, func__, line__, petsc_routine__, hot__) \ argument 1449 if (stack__.currentsize < PETSCSTACKSIZE) { \ 1450 stack__.function[stack__.currentsize] = func__; \ 1452 stack__.file[stack__.currentsize] = file__; \ 1453 stack__.line[stack__.currentsize] = line__; \ 1455 stack__.file[stack__.currentsize] = PETSC_NULLPTR; \ 1456 stack__.line[stack__.currentsize] = 0; \ 1458 stack__.petscroutine[stack__.currentsize] = petsc_routine__; \ [all …]
|