libflame
revision_anchor
|
Functions | |
FLA_Error | FLASH_Apply_Q2_UT (FLA_Side side, FLA_Trans trans, FLA_Direct direct, FLA_Store storev, FLA_Obj D, FLA_Obj T, FLA_Obj W, FLA_Obj C, FLA_Obj E) |
Variables | |
fla_apq2ut_t * | flash_apq2ut_cntl |
fla_apq2ut_t * | flash_apq2ut_cntl_leaf |
fla_apq2ut_t * | fla_apq2ut_cntl_leaf |
FLA_Error FLASH_Apply_Q2_UT | ( | FLA_Side | side, |
FLA_Trans | trans, | ||
FLA_Direct | direct, | ||
FLA_Store | storev, | ||
FLA_Obj | D, | ||
FLA_Obj | T, | ||
FLA_Obj | W, | ||
FLA_Obj | C, | ||
FLA_Obj | E | ||
) |
References FLA_Apply_Q2_UT_check(), FLA_Apply_Q2_UT_internal(), FLA_Check_error_level(), FLASH_Queue_begin(), and FLASH_Queue_end().
{ FLA_Error r_val; // Check parameters. if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING ) FLA_Apply_Q2_UT_check( side, trans, direct, storev, D, T, W, C, E ); // Begin a parallel region. FLASH_Queue_begin(); // Invoke FLA_Apply_Q2_UT_internal() with the standard control tree. r_val = FLA_Apply_Q2_UT_internal( side, trans, direct, storev, D, T, W, C, E, flash_apq2ut_cntl ); // End the parallel region. FLASH_Queue_end(); return r_val; }