Home
last modified time | relevance | path

Searched refs:baseName (Results 1 – 3 of 3) sorted by relevance

/petsc/config/BuildSystem/config/packages/
H A DBlasLapack.py763 def mangleBlas(self, baseName, mangling = None): argument
765 return self.mangleBlasNoPrefix(prefix+baseName, mangling)
767 def mangleBlasNoPrefix(self, baseName, mangling = None): argument
773 … if getattr(self.compilers, 'fortranManglingDoubleUnderscore', False) and baseName.find('_') >= 0:
774 return baseName.lower()+self.suffix+'__'
775 return baseName.lower()+self.suffix+'_'
777 return baseName.lower()+self.suffix
779 return baseName.upper()+self.suffix
781 return baseName+self.suffix
792 for baseName in routines:
[all …]
/petsc/src/dm/impls/plex/tutorials/
H A Dex19.c92 const char baseName[] = "Nozzle_Mesh"; in main() local
99 PetscCall(PetscObjectSetName((PetscObject)dmNozzle, baseName)); in main()
142 …PetscCall(PetscSNPrintf(meshName, PETSC_MAX_PATH_LEN, "%s_Step_%" PetscInt_FMT, baseName, saloop)); in main()
/petsc/config/BuildSystem/config/
H A DcompilersFortran.py112 for baseName in ['flush','flush_']:
113 if self.checkLink(body=' call '+baseName+'(6)'):
114 self.addDefine('HAVE_FORTRAN_'+baseName.upper(), 1)