Functions | |
| mirkl_error_t * | mir_bigfloatc_instance_create_str (mirkl_object_t **obj, const char *str, mirkl_uint32_t flags, mir_prsdata_t *pp, apr_pool_t *pool, apr_pool_t *tmp_pool) |
| mirkl_error_t * | mir_bigfloatc_instance_create_mpfr (mirkl_object_t **obj, mpfr_t val, mirkl_uint32_t flags, mir_prsdata_t *pp, apr_pool_t *pool, apr_pool_t *tmp_pool) |
| mirkl_error_t * | mir_bigfloatc_set_data_str (mirkl_object_t *obj, const char *str) |
| mirkl_error_t * | mir_bigfloatc_set_data_mpfr (mirkl_object_t *obj, mpfr_t val) |
Variables | |
| mirkl_object_t * | MirBigFloatClass |
| mirkl_error_t * mir_bigfloatc_instance_create_mpfr | ( | mirkl_object_t ** | obj, |
| mpfr_t | val, | ||
| mirkl_uint32_t | flags, | ||
| mir_prsdata_t * | pp, | ||
| apr_pool_t * | pool, | ||
| apr_pool_t * | tmp_pool | ||
| ) |
Creation of BigFloat object.
| [out] | obj | Reference to the created object. |
| val | Value for initialization. | |
| flags | Flags of the object. | |
| pp | Reference to the parser data structure. | |
| pool | The pool to use for allocations of object structures. Should be valid as long as the created object lives. | |
| tmp_pool | The pool for temporary allocations. Can be deleted after calling this function. |
| mirkl_error_t * mir_bigfloatc_instance_create_str | ( | mirkl_object_t ** | obj, |
| const char * | str, | ||
| mirkl_uint32_t | flags, | ||
| mir_prsdata_t * | pp, | ||
| apr_pool_t * | pool, | ||
| apr_pool_t * | tmp_pool | ||
| ) |
Creation of BigFloat object.
| [out] | obj | Reference to the created object. |
| str | String with value for initialization. | |
| flags | Flags of the object. | |
| pp | Reference to the parser data structure. | |
| pool | The pool to use for allocations of object structures. Should be valid as long as the created object lives. | |
| tmp_pool | The pool for temporary allocations. Can be deleted after calling this function. |
| mirkl_error_t * mir_bigfloatc_set_data_mpfr | ( | mirkl_object_t * | obj, |
| mpfr_t | val | ||
| ) |
Set value from MPFRs mpfr_t type variable.
| obj | Reference to the object. |
| val | Value to set. |
| mirkl_error_t * mir_bigfloatc_set_data_str | ( | mirkl_object_t * | obj, |
| const char * | str | ||
| ) |
Setting value for BigFloat object.
| obj | Reference to the object. |
| str | String with value to set. |
|
extern |
BigFloat Class Object