Home
last modified time | relevance | path

Searched refs:Params (Results 1 – 10 of 10) sorted by relevance

/petsc/src/binding/petsc4py/demo/legacy/wrap-swig/
H A DBratu3D.h6 typedef struct Params { struct
8 } Params; typedef
10 PetscErrorCode FormInitGuess(DM da, Vec x, Params *p);
11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
12 PetscErrorCode FormJacobian(DM da, Vec x, Mat J, Params *p);
H A DBratu3D.c22 PetscErrorCode FormInitGuess(DM da, Vec X, Params *p) in FormInitGuess()
82 PetscErrorCode FormFunction(DM da, Vec X, Vec F, Params *p) in FormFunction()
159 PetscErrorCode FormJacobian(DM da, Vec X, Mat J, Params *p) in FormJacobian()
H A Drun_demo.py12 self.params = Bratu3D.Params()
/petsc/src/binding/petsc4py/demo/legacy/wrap-cython/
H A DBratu3Dimpl.h6 typedef struct Params { struct
8 } Params; typedef
10 PetscErrorCode FormInitGuess(DM da, Vec x, Params *p);
11 PetscErrorCode FormFunction(DM da, Vec x, Vec F, Params *p);
12 PetscErrorCode FormJacobian(DM da, Vec x, Mat J, Params *p);
H A DBratu3D.pyx9 ctypedef struct Params:
11 int FormInitGuess(PetscDM da, PetscVec x, Params *p)
12 int FormFunction (PetscDM da, PetscVec x, PetscVec F, Params *p)
13 int FormJacobian (PetscDM da, PetscVec x, PetscMat J, Params *p)
18 cdef Params p = {"lambda_" : lambda_}
25 cdef Params p = {"lambda_" : lambda_}
32 cdef Params p = {"lambda_" : lambda_}
H A DBratu3Dimpl.c22 PetscErrorCode FormInitGuess(DM da, Vec X, Params *p) in FormInitGuess()
83 PetscErrorCode FormFunction(DM da, Vec X, Vec F, Params *p) in FormFunction()
163 PetscErrorCode FormJacobian(DM da, Vec X, Mat J, Params *p) in FormJacobian()
/petsc/lib/petsc/bin/maint/abi-compliance-checker/modules/Internals/
H A DMangling.pm270 my @Params = ();
274 @Params = sort {$a<=>$b} keys(%{$SInfo->{"Param"}});
280 shift(@Params);
284 foreach my $PPos (sort {$a<=>$b} @Params)
289 if(not @Params) {
440 my @Params = sort {$a<=>$b} keys(%{$BaseType{"Param"}});
441 foreach my $Num (@Params) {
444 if(not @Params) {
956 my (@Params, @ParamTypes) = ();
960 @Params = sort {$a<=>$b} keys(%{$SInfo->{"Param"}});
[all …]
H A DBasic.pm663 my ($Params, $Comma, $Sp) = @_;
667 foreach my $Pos (0 .. length($Params) - 1)
669 my $S = substr($Params, $Pos, 1);
H A DGccAst.pm1963 my @Params = getTemplateParam($Pos, $Param_TypeId);
1964 foreach my $P (@Params)
2014 my @Params = ();
2018 push(@Params, $P2);
2021 return @Params;
/petsc/lib/petsc/bin/maint/abi-compliance-checker/
H A Dabi-compliance-checker.pl1205 my @Params = ();
1260 push(@Params, createMemDecl($PTName, $PName));
1263 push(@Params, $PTName);
1299 if(@Params)
1301 foreach my $Pos (0 .. $#Params)
1309 $Name .= $Params[$Pos];
1313 if($Pos==$#Params) {
1330 if(@Params) {
1331 $Signature .= " ( ".join(", ", @Params)." )";