Lines Matching defs:value
315 * Convert a HexDigit character to its numeric value, as defined in ECMA-262 v5, 7.8.3
317 * @return digit value, corresponding to the hex char
436 * value of hex number, otherwise
450 uint32_t value = 0;
460 value <<= 4;
461 value += lit_char_hex_to_int (ch);
464 JERRY_ASSERT (value <= LIT_UTF16_CODE_UNIT_MAX);
465 return value;
469 * Parse a decimal number with the value clamped to UINT32_MAX.
480 uint32_t value = (uint32_t) (*current_p++ - LIT_CHAR_0);
485 uint32_t new_value = value * 10 + digit;
487 if (JERRY_UNLIKELY (value > UINT32_MAX / 10) || JERRY_UNLIKELY (new_value < value))
489 value = UINT32_MAX;
493 value = new_value;
497 return value;
704 lit_char_to_lower_case (ecma_char_t character, /**< input character value */
764 lit_char_to_upper_case (ecma_char_t character, /**< input character value */