HomeSort by relevance Sort by last modified time
    Searched refs:instruction_size (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 464 // @param instruction_size Size of the instruction in bytes.
468 unsigned int instruction_size);
475 // @param instruction_size Size of the instruction in bytes.
479 unsigned int instruction_size);
486 // @param instruction_size Size of the instruction in bytes.
490 unsigned int instruction_size);
497 // @param instruction_size Size of the instruction in bytes.
501 unsigned int instruction_size);
508 // @param instruction_size Size of the instruction in bytes.
512 unsigned int instruction_size);
    [all...]
preamble_patcher.cc 534 unsigned int instruction_size) {
535 return (*(target) & 0x70) == 0x70 && instruction_size == 2;
540 unsigned int instruction_size) {
542 instruction_size == 6;
547 unsigned int instruction_size) {
548 return *(target) == 0xe9 && instruction_size == 5;
553 unsigned int instruction_size) {
555 instruction_size == 6;
560 unsigned int instruction_size) {
561 return *(target) == 0xe8 && instruction_size == 5
    [all...]
preamble_patcher_test.cc 116 unsigned int instruction_size = 0; local
125 reinterpret_cast<unsigned char *>(target) + instruction_size,
126 instruction_size);
225 unsigned int instruction_size = 0; local
228 instruction_size));
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 464 // @param instruction_size Size of the instruction in bytes.
468 unsigned int instruction_size);
475 // @param instruction_size Size of the instruction in bytes.
479 unsigned int instruction_size);
486 // @param instruction_size Size of the instruction in bytes.
490 unsigned int instruction_size);
497 // @param instruction_size Size of the instruction in bytes.
501 unsigned int instruction_size);
508 // @param instruction_size Size of the instruction in bytes.
512 unsigned int instruction_size);
    [all...]
preamble_patcher.cc 534 unsigned int instruction_size) {
535 return (*(target) & 0x70) == 0x70 && instruction_size == 2;
540 unsigned int instruction_size) {
542 instruction_size == 6;
547 unsigned int instruction_size) {
548 return *(target) == 0xe9 && instruction_size == 5;
553 unsigned int instruction_size) {
555 instruction_size == 6;
560 unsigned int instruction_size) {
561 return *(target) == 0xe8 && instruction_size == 5
    [all...]
preamble_patcher_test.cc 116 unsigned int instruction_size = 0; local
125 reinterpret_cast<unsigned char *>(target) + instruction_size,
126 instruction_size);
225 unsigned int instruction_size = 0; local
228 instruction_size));
  /external/chromium_org/sdch/open-vcdiff/src/
decodetable.cc 61 int32_t instruction_size = 0; local
70 instruction_size = code_table_data_->size2[opcode];
87 instruction_size = code_table_data_->size1[opcode];
93 if (instruction_size == 0) {
108 *size = instruction_size;
  /external/chromium_org/third_party/brotli/src/woff2/
woff2_dec.cc 474 unsigned int instruction_size = 0; local
480 if (!Read255UShort(&glyph_stream, &instruction_size)) {
483 if (instruction_size + 2 > glyf_dst_size - glyph_size) {
486 Store16(glyf_dst, glyph_size, instruction_size);
488 instruction_size)) {
491 glyph_size += instruction_size + 2;
544 unsigned int instruction_size; local
545 if (!Read255UShort(&glyph_stream, &instruction_size)) {
549 instruction_size + 2) {
553 Store16(instruction_dst, 0, instruction_size);
    [all...]
  /external/chromium_org/third_party/ots/src/
woff2.cc 581 unsigned int instruction_size = 0; local
587 if (!Read255UShort(&glyph_stream, &instruction_size)) {
590 // No integer overflow here (instruction_size < 2^16).
591 if (instruction_size + 2 > glyf_dst_size - glyph_size) {
594 Store16(glyf_dst, glyph_size, instruction_size);
596 instruction_size)) {
599 glyph_size += instruction_size + 2;
652 unsigned int instruction_size; local
653 if (!Read255UShort(&glyph_stream, &instruction_size)) {
656 // No integer overflow here (instruction_size < 2^16)
    [all...]
  /external/chromium_org/v8/src/
codegen.cc 156 code->instruction_size());
158 code->instruction_size());
perf-jit.cc 87 : code->instruction_size();
disassembler.cc 60 if (0 <= offs && offs < code_->instruction_size()) {
311 : code->instruction_size();
runtime-profiler.cc 258 shared_code->instruction_size() < kMaxSizeEarlyOpt) {
log.cc 290 code->instruction_size(), length, name);
423 event.code_size = code->instruction_size();
428 code->instruction_size());
511 event.code_len = code->instruction_size();
529 event.code_len = from_code->instruction_size();
549 event.code_len = from_code->instruction_size();
    [all...]
code-stubs.cc 82 counters->total_stubs_code_size()->Increment(code->instruction_size());
debug.cc     [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 150 stub->instruction_size());
  /external/chromium_org/v8/test/cctest/
test-assembler-ia32.cc 177 code->instruction_start() + code->instruction_size());
207 code->instruction_start() + code->instruction_size());
270 code->instruction_start() + code->instruction_size());
test-compiler.cc 415 Min(f->code()->instruction_size(),
test-disasm-x87.cc 412 byte* end = begin + code->instruction_size();
test-disasm-ia32.cc 485 byte* end = begin + code->instruction_size();
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 192 stub->instruction_size());
  /external/chromium_org/v8/src/mips64/
code-stubs-mips64.h 194 stub->instruction_size());
  /art/compiler/utils/x86/
assembler_x86.h 585 void EmitLabel(Label* label, int instruction_size);
  /art/compiler/utils/x86_64/
assembler_x86_64.h 629 void EmitLabel(Label* label, int instruction_size);

Completed in 328 milliseconds

1 2