Lines Matching defs:omp_interop_t
198 typedef void * omp_interop_t;
201 * The `omp_get_num_interop_properties` routine retrieves the number of implementation-defined properties available for an `omp_interop_t` object.
203 extern int __KAI_KMPC_CONVENTION omp_get_num_interop_properties(const omp_interop_t);
205 * The `omp_get_interop_int` routine retrieves an integer property from an `omp_interop_t` object.
207 extern omp_intptr_t __KAI_KMPC_CONVENTION omp_get_interop_int(const omp_interop_t, omp_interop_property_t, int *);
209 * The `omp_get_interop_ptr` routine retrieves a pointer property from an `omp_interop_t` object.
211 extern void * __KAI_KMPC_CONVENTION omp_get_interop_ptr(const omp_interop_t, omp_interop_property_t, int *);
213 * The `omp_get_interop_str` routine retrieves a string property from an `omp_interop_t` object.
215 extern const char * __KAI_KMPC_CONVENTION omp_get_interop_str(const omp_interop_t, omp_interop_property_t, int *);
217 * The `omp_get_interop_name` routine retrieves a property name from an `omp_interop_t` object.
219 extern const char * __KAI_KMPC_CONVENTION omp_get_interop_name(const omp_interop_t, omp_interop_property_t);
221 * The `omp_get_interop_type_desc` routine retrieves a description of the type of a property associated with an `omp_interop_t` object.
223 extern const char * __KAI_KMPC_CONVENTION omp_get_interop_type_desc(const omp_interop_t, omp_interop_property_t);
225 * The `omp_get_interop_rc_desc` routine retrieves a description of the return code associated with an `omp_interop_t` object.
227 extern const char * __KAI_KMPC_CONVENTION omp_get_interop_rc_desc(const omp_interop_t, omp_interop_rc_t);