Home
last modified time | relevance | path

Searched defs:function_impl (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/pigweed/third_party/fuchsia/repo/sdk/lib/fit/include/lib/fit/
H A Dfunction.h221 constexpr function_impl(decltype(nullptr)) : base(nullptr) {} in function_impl() function
225 function_impl(Result (*function_target)(Args...)) : base(function_target) {} in function_impl() function
241 function_impl(Callable&& function_target) : base(std::forward<Callable>(function_target)) {} in function_impl() function
254 function_impl(function_impl&& other) noexcept : base(static_cast<base&&>(other)) {} in function_impl() function
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs-codec-derive/src/
Dlib.rs291 let function_impl = internals(&input); in derive_impl() localVariable
/aosp_15_r20/external/mesa3d/src/amd/common/
H A Dac_nir_lower_ngg.c867 nir_function_impl *function_impl, in cleanup_culling_shader_after_dce()