Searched refs:short_size (Results 1 - 4 of 4) sorted by relevance

/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp77 const size_t short_size = strlen(short_format_string) + 5; local
78 char short_buffer[short_size];
85 snprintf (short_buffer, short_size, short_format_string, i);
/external/v8/src/x87/
H A Dassembler-x87.cc1467 const int short_size = 2; local
1471 if (is_int8(offs - short_size)) {
1474 EMIT((offs - short_size) & 0xFF);
1522 const int short_size = 2; local
1526 if (is_int8(offs - short_size)) {
1529 EMIT((offs - short_size) & 0xFF);
/external/v8/src/ia32/
H A Dassembler-ia32.cc1596 const int short_size = 2; local
1600 if (is_int8(offs - short_size)) {
1603 EMIT((offs - short_size) & 0xFF);
1651 const int short_size = 2; local
1655 if (is_int8(offs - short_size)) {
1658 EMIT((offs - short_size) & 0xFF);
/external/v8/src/x64/
H A Dassembler-x64.cc1211 const int short_size = 2; local
1224 if (is_int8(offs - short_size) && !predictable_code_size()) {
1227 emit((offs - short_size) & 0xFF);
1286 const int short_size = sizeof(int8_t); local
1291 if (is_int8(offs - short_size) && !predictable_code_size()) {
1294 emit((offs - short_size) & 0xFF);

Completed in 124 milliseconds