Home
last modified time | relevance | path

Searched refs:is_debug (Results 1 – 5 of 5) sorted by relevance

/libCEED/interface/
H A Dceed.c229 bool CeedDebugFlag(const Ceed ceed) { return ceed->is_debug; } in CeedDebugFlag()
514 int CeedIsDebug(Ceed ceed, bool *is_debug) { in CeedIsDebug() argument
515 *is_debug = ceed->is_debug; in CeedIsDebug()
929 if (ceed->is_debug) CeedGetWorkVectorMemoryUsage(ceed, &usage_mb); in CeedGetWorkVector()
1355 (*ceed)->is_debug = getenv("CEED_DEBUG") || getenv("DEBUG") || getenv("DBG"); in CeedInit()
H A Dceed-preconditioning.c2023 bool is_debug; in CeedOperatorGetFallback() local
2027 CeedCall(CeedIsDebug(ceed, &is_debug)); in CeedOperatorGetFallback()
2028 if (is_debug) { in CeedOperatorGetFallback()
/libCEED/include/
H A Dceed-impl.h138 bool is_debug; member
/libCEED/include/ceed/
H A Dbackend.h251 CEED_EXTERN int CeedIsDebug(Ceed ceed, bool *is_debug);
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl928 function CeedIsDebug(ceed, is_debug) argument
929 ccall((:CeedIsDebug, libceed), Cint, (Ceed, Ptr{Bool}), ceed, is_debug)