Functions | |
FLA_Error | FLA_Obj_create_without_buffer_check (FLA_Datatype datatype, dim_t m, dim_t n, FLA_Obj *obj) |
FLA_Error FLA_Obj_create_without_buffer_check | ( | FLA_Datatype | datatype, | |
dim_t | m, | |||
dim_t | n, | |||
FLA_Obj * | obj | |||
) |
References FLA_Check_null_pointer(), and FLA_Check_valid_datatype().
Referenced by FLA_Obj_create_without_buffer().
00036 { 00037 FLA_Error e_val; 00038 00039 e_val = FLA_Check_valid_datatype( datatype ); 00040 FLA_Check_error_code( e_val ); 00041 00042 e_val = FLA_Check_null_pointer( obj ); 00043 FLA_Check_error_code( e_val ); 00044 00045 return FLA_SUCCESS; 00046 }