• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/lib/bomp_new/

Lines Matching refs:arg

530  * \param arg returned pointer to the lock
535 void omp_init_lock(omp_lock_t *arg)
537 struct __omp_lock *lock = (struct __omp_lock *)arg;
548 * \param arg OpenMP lock to destroyed (set to zero)
552 void omp_destroy_lock(omp_lock_t *arg)
554 struct __omp_lock *lock = (struct __omp_lock *) arg;
565 * \param arg The lock to acquire
570 void omp_set_lock(omp_lock_t *arg)
572 struct __omp_lock *lock = (struct __omp_lock *) arg;
580 * \param arg The lock to be released
585 void omp_unset_lock(omp_lock_t *arg)
587 struct __omp_lock *lock = (struct __omp_lock *) arg;
595 * \param arg The OpenMP lock to acquire
606 int omp_test_lock(omp_lock_t *arg)
608 struct __omp_lock *lock = (struct __omp_lock *) arg;
620 * \param arg returned pointer to the lock
626 void omp_init_nest_lock(omp_nest_lock_t *arg)
629 struct __omp_nested_lock *nlock = (struct __omp_nested_lock *)arg;
640 * \param arg OpenMP lock to destroyed (set to zero)
644 void omp_destroy_nest_lock(omp_nest_lock_t *arg)
646 struct __omp_nested_lock *nlock = (struct __omp_nested_lock *) arg;
657 * \param arg The lock to acquire
667 void omp_set_nest_lock(omp_nest_lock_t *arg)
669 struct __omp_nested_lock *nlock = (struct __omp_nested_lock *) arg;
682 * \param arg The lock to be released
688 void omp_unset_nest_lock(omp_nest_lock_t *arg)
690 struct __omp_nested_lock *nlock = (struct __omp_nested_lock *) arg;
704 * \param arg The OpenMP lock to acquire
715 int omp_test_nest_lock(omp_nest_lock_t *arg)
717 struct __omp_nested_lock *nlock = (struct __omp_nested_lock *) arg;