| /libCEED/ |
| H A D | ceed.pc.template | 1 prefix=%prefix% 2 includedir=${prefix}/include 3 libdir=${prefix}/lib
|
| H A D | setup.py | 40 prefix = os.path.join(self.build_lib, 'libceed') 41 self.make_libceed_so(prefix) 44 def make_libceed_so(self, prefix): argument 56 'prefix=' + prefix,
|
| H A D | Makefile | 214 prefix ?= /usr/local macro 215 bindir = $(prefix)/bin 216 libdir = $(prefix)/lib 217 includedir = $(prefix)/include 460 $(info prefix = $(prefix)) 847 $(ceed.pc) : pkgconfig-prefix = $(abspath .) 848 $(OBJDIR)/ceed.pc : pkgconfig-prefix = $(prefix)
|
| H A D | README.md | 354 $ make install prefix=/path/to/install/dir 360 $ make install prefix=/usr DESTDIR=/packaging/path 366 $ make for_install=1 prefix=/path/to/install/dir 367 $ make install prefix=/path/to/install/dir 384 [For example](https://people.freedesktop.org/~dbn/pkg-config-guide.html#faq), if `$prefix` is a sta…
|
| H A D | Doxyfile | 1238 # In case all classes in a project start with a common prefix, all classes will 1240 # can be used to specify a prefix (or a list of prefixes) that should be ignored
|
| /libCEED/rust/libceed-sys/c-src/ |
| H A D | ceed.pc.template | 1 prefix=%prefix% 2 includedir=${prefix}/include 3 libdir=${prefix}/lib
|
| H A D | Makefile | 214 prefix ?= /usr/local macro 215 bindir = $(prefix)/bin 216 libdir = $(prefix)/lib 217 includedir = $(prefix)/include 460 $(info prefix = $(prefix)) 847 $(ceed.pc) : pkgconfig-prefix = $(abspath .) 848 $(OBJDIR)/ceed.pc : pkgconfig-prefix = $(prefix)
|
| /libCEED/tests/ |
| H A D | junit.py | 52 prefix, rest = test.split('-', 1) 53 if prefix == 'rustqfunctions': 55 if prefix == 'petsc': 57 elif prefix == 'mfem': 59 elif prefix == 'nek': 61 elif prefix == 'dealii': 63 elif prefix == 'fluids': 65 elif prefix == 'solids':
|
| H A D | junit_common.py | 273 return any((base.startswith(prefix) for prefix in prefixes))
|
| /libCEED/backends/weak/ |
| H A D | ceed-backend-weak.c | 27 const char *prefix = va_arg(prefixes, const char *); in CeedRegister_Weak() local 29 CeedDebugEnv("Weak Register : %s", prefix); in CeedRegister_Weak() 30 ierr = CeedRegisterImpl(prefix, CeedInit_Weak, CEED_MAX_BACKEND_PRIORITY); in CeedRegister_Weak()
|
| /libCEED/python/ |
| H A D | build_ceed_cffi.py | 41 prefix = os.path.dirname(here) 45 libdir = os.path.join(prefix, "build") 46 return prefix, libdir
|
| /libCEED/interface/ |
| H A D | ceed.c | 25 char prefix[CEED_MAX_RESOURCE_LEN]; member 123 int CeedRegisterImpl(const char *prefix, int (*init)(const char *, Ceed), unsigned int priority) { in CeedRegisterImpl() argument 128 strncpy(backends[num_backends].prefix, prefix, CEED_MAX_RESOURCE_LEN); in CeedRegisterImpl() 129 backends[num_backends].prefix[CEED_MAX_RESOURCE_LEN - 1] = 0; in CeedRegisterImpl() 498 int CeedRegister(const char *prefix, int (*init)(const char *, Ceed), unsigned int priority) { in CeedRegister() argument 499 CeedDebugEnv("Backend Register: %s", prefix); in CeedRegister() 500 CeedRegisterImpl(prefix, init, priority); in CeedRegister() 1141 *resources[i] = backends[i].prefix; in CeedRegistryGetList() 1188 …f (backends[i].priority < CEED_MAX_BACKEND_PRIORITY) fprintf(stderr, " %s\n", backends[i].prefix); in CeedInit() 1201 const char *prefix = backends[i].prefix; in CeedInit() local [all …]
|
| /libCEED/include/ceed/ |
| H A D | backend.h | 248 CEED_EXTERN int CeedRegister(const char *prefix, int (*init)(const char *, Ceed), unsigned int prio… 249 CEED_EXTERN int CeedRegisterImpl(const char *prefix, int (*init)(const char *, Ceed), unsigned int …
|
| /libCEED/julia/LibCEED.jl/src/generated/ |
| H A D | libceed_bindings.jl | 920 function CeedRegister(prefix, init, priority) argument 921 ccall((:CeedRegister, libceed), Cint, (Ptr{Cchar}, Ptr{Cvoid}, Cuint), prefix, init, priority) 924 function CeedRegisterImpl(prefix, init, priority) argument 925 … ccall((:CeedRegisterImpl, libceed), Cint, (Ptr{Cchar}, Ptr{Cvoid}, Cuint), prefix, init, priority)
|
| /libCEED/doc/sphinx/source/ |
| H A D | libCEEDapi.md | 400 `CeedInit` uses this prefix to find an appropriate backend for the resource.
|