Lines Matching full:ref

43 …This predefined constant is passed as the @ref CeedRequest argument to interfaces when the caller …
65 …This predefined constant is passed as the @ref CeedRequest argument to interfaces when the caller …
78 …@todo The current implementation is overly strict, offering equivalent semantics to @ref CEED_REQU…
85 @brief Wait for a @ref CeedRequest to complete.
87 Calling @ref CeedRequestWait() on a `NULL` request is a no-op.
89 @param[in,out] req Address of @ref CeedRequest to wait for; zeroed on completion.
93 @ref User
111 Note: Backends should call @ref CeedRegister() instead.
115 …@param[in] init Initialization function called by @ref CeedInit() when the backend is selected…
117 …Lower values are preferred in case the resource requested by @ref CeedInit() has non-unique best p…
121 @ref Developer
148 @ref Developer
162 @ref Developer
189 @ref Developer
203 @ref Developer
226 @ref Backend
238 @ref Backend
250 @ref Backend
267 @brief Allocate an array on the host; use @ref CeedMalloc().
278 @ref Backend
289 @brief Allocate a cleared (zeroed) array on the host; use @ref CeedCalloc().
299 @ref Backend
310 @brief Reallocate an array on the host; use @ref CeedRealloc().
320 @ref Backend
340 @ref Backend
351 /** Free memory allocated using @ref CeedMalloc() or @ref CeedCalloc()
358 @ref Backend
366 /** Internal helper to manage handoff of user `source_array` to backend with proper @ref CeedCopyMo…
378 @ref Backend
409 /** Manage handoff of user `bool` `source_array` to backend with proper @ref CeedCopyMode behavior.
420 @ref Backend
428 /** Manage handoff of user `CeedInt8` `source_array` to backend with proper @ref CeedCopyMode behav…
439 @ref Backend
447 /** Manage handoff of user `CeedInt` `source_array` to backend with proper @ref CeedCopyMode behavi…
458 @ref Backend
466 /** Manage handoff of user `CeedScalar` `source_array` to backend with proper @ref CeedCopyMode beh…
477 @ref Backend
490 …@param[in] init Initialization function called by @ref CeedInit() when the backend is selected…
492 …Lower values are preferred in case the resource requested by @ref CeedInit() has non-unique best p…
496 @ref Backend
512 @ref Backend
522 Note: Caller is responsible for calling @ref CeedFree() on the `resource_root`.
531 @ref Backend
550 @ref Backend
570 @ref Backend
589 @ref Backend
606 @ref Backend
636 @ref Backend
666 @ref Backend
690 @ref Backend
706 @ref Backend
717 …n of @ref CeedVectorCreate() and `CeedSetBackendFunction(ceed, "Basis", basis, "Apply", BackendBas…
728 @ref Backend
762 @ref Backend
777 @ref Backend
791 @ref Backend
806 @ref Developer
840 @ref Backend
879 Note: This vector must be restored with @ref CeedRestoreWorkVector().
887 @ref Backend
927 // Note: ref_count manipulation to prevent a ref-loop in CeedGetWorkVector()
941 @brief Restore a `CeedVector` for scratch work from a `Ceed` context from @ref CeedGetWorkVector()
948 @ref Backend
966 // Note: reduce ref_count again to prevent a ref-loop in CeedRestoreWorkVector()
979 …Note: The caller is responsible for restoring `jit_source_roots` with @ref CeedRestoreJitSourceRoo…
987 @ref Backend
1003 …Note: The caller is responsible for restoring `rust_source_roots` with @ref CeedRestoreRustSourceR…
1011 @ref Backend
1025 @brief Restore list of additional JiT source roots from with @ref CeedGetJitSourceRoots()
1032 @ref Backend
1045 @brief Restore list of additional Rust source roots from with @ref CeedGetJitSourceRoots()
1052 @ref Backend
1067 Note: The caller is responsible for restoring `jit_defines` with @ref CeedRestoreJitDefines().
1075 @ref Backend
1089 @brief Restore list of additional JiT defines from with @ref CeedGetJitDefines()
1096 @ref Backend
1127 @ref User
1160 …Note: Prefixing the resource with "help:" (e.g. "help:/cpu/self") will result in @ref CeedInt() pr…
1167 @ref User
1387 @ref User
1407 Both pointers should be destroyed with @ref CeedDestroy().
1417 @ref User
1434 @ref User
1449 @ref User
1476 @ref User
1491 @ref User
1522 @ref User
1555 @ref User
1579 @brief Set the number of tabs to indent for @ref CeedView() output
1586 @ref User
1594 @brief Get the number of tabs to indent for @ref CeedView() output
1601 @ref User
1616 @ref User
1647 @ref User
1705 @brief Error handling implementation; use @ref CeedError() instead.
1709 @ref Developer
1737 Pass this to @ref CeedSetErrorHandler() to obtain this error handling behavior.
1741 @ref Developer
1752 Pass this to @ref CeedSetErrorHandler() to obtain this error handling behavior.
1756 @ref Developer
1773 Pass this to @ref CeedSetErrorHandler() to obtain this error handling behavior.
1777 @ref Developer
1792 Pass this to @ref CeedSetErrorHandler() to obtain this error handling behavior.
1794 …In contrast to @ref CeedErrorAbort(), this exits without a signal, so `atexit()` handlers (e.g., a…
1798 @ref Developer
1812 A default error handler is set in @ref CeedInit().
1813 …Use this function to change the error handler to @ref CeedErrorReturn(), @ref CeedErrorAbort(), or…
1817 @ref Developer
1829 The error message is only stored when using the error handler @ref CeedErrorStore()
1836 @ref Developer
1847 The error message is only stored when using the error handler @ref CeedErrorStore().
1854 @ref Developer
1878 @ref Developer
1897 @ref Developer