Home
last modified time | relevance | path

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

/external/v8/src/ia32/
Dassembler-ia32.cc1650 const int short_size = 2; in jmp_rel() local
1652 if (is_int8(offset - short_size)) { in jmp_rel()
1655 EMIT((offset - short_size) & 0xFF); in jmp_rel()
1724 const int short_size = 2; in j() local
1728 if (is_int8(offs - short_size)) { in j()
1731 EMIT((offs - short_size) & 0xFF); in j()
/external/v8/src/x64/
Dassembler-x64.cc1465 const int short_size = 2; in j() local
1478 if (is_int8(offs - short_size) && !predictable_code_size()) { in j()
1481 emit((offs - short_size) & 0xFF); in j()
1564 const int short_size = sizeof(int8_t); in jmp() local
1569 if (is_int8(offs - short_size) && !predictable_code_size()) { in jmp()
1572 emit((offs - short_size) & 0xFF); in jmp()