|
ION_API_EXPORT iERR | ion_int_alloc (void *owner, ION_INT **piint) |
|
ION_API_EXPORT void | ion_int_free (ION_INT *iint) |
|
ION_API_EXPORT iERR | ion_int_init (ION_INT *iint, void *owner) |
|
ION_API_EXPORT iERR | ion_int_copy (ION_INT *dst, ION_INT *src, void *owner) |
|
ION_API_EXPORT iERR | ion_int_is_null (ION_INT *iint, BOOL *p_is_null) |
|
ION_API_EXPORT iERR | ion_int_is_zero (ION_INT *iint, BOOL *p_bool) |
|
ION_API_EXPORT iERR | ion_int_compare (ION_INT *left, ION_INT *right, int *p_result) |
|
ION_API_EXPORT iERR | ion_int_signum (ION_INT *iint, int32_t *p_signum) |
|
ION_API_EXPORT iERR | ion_int_highest_bit_set (ION_INT *iint, SIZE *p_pos) |
|
ION_API_EXPORT iERR | ion_int_from_string (ION_INT *iint, const iSTRING p_str) |
|
ION_API_EXPORT iERR | ion_int_from_hex_string (ION_INT *iint, const iSTRING p_str) |
|
ION_API_EXPORT iERR | ion_int_from_binary_string (ION_INT *iint, const iSTRING p_str) |
|
ION_API_EXPORT iERR | ion_int_from_chars (ION_INT *iint, const char *p_chars, SIZE char_limit) |
|
ION_API_EXPORT iERR | ion_int_from_hex_chars (ION_INT *iint, const char *p_chars, SIZE char_limit) |
|
ION_API_EXPORT iERR | ion_int_from_binary_chars (ION_INT *iint, const char *p_chars, SIZE char_limit) |
|
ION_API_EXPORT iERR | ion_int_from_bytes (ION_INT *iint, BYTE *buf, SIZE limit) |
|
ION_API_EXPORT iERR | ion_int_from_abs_bytes (ION_INT *iint, BYTE *buf, SIZE limit, BOOL is_negative) |
|
ION_API_EXPORT iERR | ion_int_from_long (ION_INT *iint, int64_t value) |
|
ION_API_EXPORT iERR | ion_int_from_decimal (ION_INT *iint, const decQuad *p_value, decContext *context) |
|
ION_API_EXPORT iERR | ion_int_char_length (ION_INT *iint, SIZE *p_len) |
|
ION_API_EXPORT iERR | ion_int_to_char (ION_INT *iint, BYTE *p_str, SIZE len, SIZE *p_written) |
|
ION_API_EXPORT iERR | ion_int_to_string (ION_INT *iint, hOWNER owner, iSTRING p_str) |
|
ION_API_EXPORT iERR | ion_int_byte_length (ION_INT *iint, SIZE *p_byte_length) |
|
ION_API_EXPORT iERR | ion_int_to_bytes (ION_INT *iint, SIZE starting_int_byte_offset, BYTE *buffer, SIZE buffer_length, SIZE *bytes_written) |
|
ION_API_EXPORT iERR | ion_int_abs_bytes_length (ION_INT *iint, SIZE *p_byte_length) |
|
ION_API_EXPORT iERR | ion_int_to_abs_bytes (ION_INT *iint, SIZE starting_int_byte_offset, BYTE *buffer, SIZE buffer_length, SIZE *bytes_written) |
|
ION_API_EXPORT iERR | ion_int_to_int64 (ION_INT *iint, int64_t *p_int64) |
|
ION_API_EXPORT iERR | ion_int_to_int32 (ION_INT *iint, int32_t *p_int32) |
|
ION_API_EXPORT iERR | ion_int_to_decimal (ION_INT *iint, decQuad *p_quad, decContext *context) |
|
void | _ion_int_dump_quad (decQuad *quad, int64_t expected) |
|
int | _ion_int_init_globals (void) |
|
iERR | _ion_int_from_decimal_number (ION_INT *iint, const decNumber *p_value, decContext *context) |
|
iERR | _ion_int_to_decimal_number (ION_INT *iint, decNumber *p_value, decContext *context) |
|
iERR | _ion_int_validate_arg (const ION_INT *iint) |
|
iERR | _ion_int_validate_arg_with_ptr (const ION_INT *iint, const void *ptr) |
|
iERR | _ion_int_validate_non_null_arg_with_ptr (const ION_INT *iint, const void *ptr) |
|
void | _ion_int_init (ION_INT *iint, void *owner) |
|
iERR | _ion_int_zero (ION_INT *iint) |
|
void * | _ion_int_realloc_helper (void *value, SIZE old_len, void *owner, SIZE new_len) |
|
iERR | _ion_int_extend_digits (ION_INT *iint, SIZE digits_needed, BOOL zero_fill) |
|
II_DIGIT * | _ion_int_buffer_temp_copy (II_DIGIT *orig_digits, SIZE len, II_DIGIT *cache_buffer, SIZE cache_len) |
|
void | _ion_int_free_temp (II_DIGIT *temp_buffer, II_DIGIT *cache_buffer) |
|
BOOL | _ion_int_from_bytes_helper (ION_INT *iint, BYTE *buf, SIZE byte_idx, SIZE limit, BOOL invert, BOOL includes_sign_byte) |
|
iERR | _ion_int_from_chars_helper (ION_INT *iint, const char *str, SIZE len) |
|
iERR | _ion_int_from_radix_chars_helper (ION_INT *iint, const char *str, SIZE len, unsigned int *digit_values, unsigned int base, unsigned int bits_per_digit, const char *radix_chars) |
|
iERR | _ion_int_from_hex_chars_helper (ION_INT *iint, const char *str, SIZE len) |
|
iERR | _ion_int_from_binary_chars_helper (ION_INT *iint, const char *str, SIZE len) |
|
BOOL | _ion_int_is_null_helper (const ION_INT *iint) |
|
BOOL | _ion_int_is_zero (const ION_INT *iint) |
|
BOOL | _ion_int_is_zero_bytes (const II_DIGIT *digits, SIZE len) |
|
SIZE | _ion_int_highest_bit_set_helper (const ION_INT *iint) |
|
SIZE | _ion_int_get_char_len_helper (const ION_INT *iint) |
|
iERR | _ion_int_to_string_helper (ION_INT *iint, char *strbuf, SIZE buflen, SIZE *p_written) |
|
BOOL | _ion_int_is_high_bytes_high_bit_set_helper (const ION_INT *iint, SIZE abs_byte_count) |
|
SIZE | _ion_int_bytes_length_helper (const ION_INT *iint) |
|
iERR | _ion_int_to_bytes_helper (ION_INT *iint, SIZE bytes_in_int, SIZE starting_int_byte_offset, BOOL is_neg, BYTE *buffer, SIZE buffer_length, SIZE *bytes_written) |
|
SIZE | _ion_int_abs_bytes_length_helper (const ION_INT *iint) |
|
SIZE | _ion_int_abs_bytes_signed_length_helper (const ION_INT *iint) |
|
iERR | _ion_int_to_int64_helper (ION_INT *iint, int64_t *p_int64) |
|
iERR | _ion_int_add_digit (II_DIGIT *digits, SIZE digit_count, II_DIGIT value) |
|
iERR | _ion_int_sub_digit (II_DIGIT *digits, SIZE digit_count, II_DIGIT value) |
|
iERR | _ion_int_multiply_and_add (II_DIGIT *digits, SIZE digit_count, II_DIGIT mult_value, II_DIGIT add_value) |
|
iERR | _ion_int_divide_by_digit (II_DIGIT *digits, SIZE digit_count, II_DIGIT value, II_DIGIT *p_remainder) |
|