Home
last modified time | relevance | path

Searched refs:biased_exp_p (Results 1 – 1 of 1) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c74 uint32_t *biased_exp_p, /**< [out] biased exponent (optional) */ in ecma_number_unpack() argument
86 if (biased_exp_p != NULL) in ecma_number_unpack()
88 … *biased_exp_p = (((packed_value) & ~(1u << ECMA_NUMBER_SIGN_POS)) >> ECMA_NUMBER_FRACTION_WIDTH); in ecma_number_unpack()
137 uint32_t *biased_exp_p, /**< [out] biased exponent (optional) */ in ecma_number_unpack() argument
149 if (biased_exp_p != NULL) in ecma_number_unpack()
151 …*biased_exp_p = (uint32_t) (((packed_value) & ~(1ull << ECMA_NUMBER_SIGN_POS)) >> ECMA_NUMBER_FRAC… in ecma_number_unpack()