libflame
12600
|
Functions | |
FLA_Error | FLASH_Obj_create_hier_copy_of_flat_ext_check (FLA_Obj F, dim_t depth, dim_t *b_m, dim_t *b_n, FLA_Obj *H) |
FLA_Error FLASH_Obj_create_hier_copy_of_flat_ext_check | ( | FLA_Obj | F, |
dim_t | depth, | ||
dim_t * | b_m, | ||
dim_t * | b_n, | ||
FLA_Obj * | H | ||
) |
References FLA_Check_null_pointer().
Referenced by FLASH_Obj_create_hier_copy_of_flat_ext().
{ FLA_Error e_val; e_val = FLA_Check_null_pointer( b_m ); FLA_Check_error_code( e_val ); e_val = FLA_Check_null_pointer( b_n ); FLA_Check_error_code( e_val ); e_val = FLA_Check_null_pointer( H ); FLA_Check_error_code( e_val ); // A value of depth < 0 should cause an error. // First depth entries in blocksize should be checked; values < 1 should cause error. return FLA_SUCCESS; }