Searched refs:Params (Results 1 – 10 of 10) sorted by relevance
| /petsc/src/binding/petsc4py/demo/legacy/wrap-swig/ |
| H A D | Bratu3D.h | 6 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 D | Bratu3D.c | 22 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 D | run_demo.py | 12 self.params = Bratu3D.Params()
|
| /petsc/src/binding/petsc4py/demo/legacy/wrap-cython/ |
| H A D | Bratu3Dimpl.h | 6 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 D | Bratu3D.pyx | 9 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 D | Bratu3Dimpl.c | 22 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 D | Mangling.pm | 270 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 D | Basic.pm | 663 my ($Params, $Comma, $Sp) = @_; 667 foreach my $Pos (0 .. length($Params) - 1) 669 my $S = substr($Params, $Pos, 1);
|
| H A D | GccAst.pm | 1963 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 D | abi-compliance-checker.pl | 1205 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)." )";
|