Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser.c335 new_distance += page_p->bytes[PARSER_CBC_STREAM_PAGE_SIZE - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parser_update_forward_branch()
340 new_distance += page_p->bytes[full_distance - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parser_update_forward_branch()
359 new_distance += page_p->bytes[PARSER_CBC_STREAM_PAGE_SIZE - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parser_update_backward_branch()
370 new_distance += page_p->bytes[PARSER_CBC_STREAM_PAGE_SIZE - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parser_update_backward_branch()
371 new_distance -= page_p->bytes[offset - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parser_update_backward_branch()
411 bytes_copied_before_jump = page_p->bytes[offset - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parse_update_branches()
453 bytes_copied_before_target = bytes_copied_before_target & CBC_LOWER_SEVEN_BIT_MASK; in parse_update_branches()
488 bytes_copied += page_p->bytes[PARSER_CBC_STREAM_PAGE_SIZE - 1] & CBC_LOWER_SEVEN_BIT_MASK; in parse_update_branches()
746 value = (value << 7) | (byte & CBC_LOWER_SEVEN_BIT_MASK); in parse_print_final_cbc()
988 literal_one_byte_limit = CBC_LOWER_SEVEN_BIT_MASK; in parser_post_processing()
Djs-parser-util.c502 uint8_t byte = (uint8_t) ((line >> shift) & CBC_LOWER_SEVEN_BIT_MASK); in parser_emit_line_info()
735 offset = (branch_p->offset & CBC_LOWER_SEVEN_BIT_MASK); in parser_set_branch_to_current_position()
Dbyte-code.h741 #define CBC_LOWER_SEVEN_BIT_MASK 0x7f macro
/third_party/jerryscript/jerry-core/vm/
Dvm.c3972 value = (value << 7) | (byte & CBC_LOWER_SEVEN_BIT_MASK); in vm_loop()