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

1 2

  /device/google/contexthub/firmware/os/platform/stm32/misc/
showsizes.sh 28 code_start=$(getvar $1 __code_start)
30 code_sz=$(($code_end-$code_start))
  /external/vixl/examples/aarch64/
non-const-visitor.cc 72 Label code_start, code_end; local
73 masm.Bind(&code_start);
77 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
custom-disassembler.cc 139 Label code_start, code_end; local
140 masm.Bind(&code_start);
144 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
  /external/vixl/examples/aarch32/
examples.h 50 ExecutableMemory(const byte* code_start, size_t size)
59 memcpy(buffer_, code_start, size_);
  /art/runtime/
oat_quick_method_header.h 138 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); local
142 code_start++;
144 return code_start <= pc && pc <= (code_start + GetCodeSize());
stack.cc 626 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); local
627 CHECK(code_start <= pc && pc <= (code_start + code_size))
630 << " code_start=" << code_start
    [all...]
  /external/bison/src/
scan-gram.l 48 code_start = scanner_cursor = loc->start; \
134 boundary code_start = scanner_cursor;
260 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
266 code_start = loc->start;
650 loc->start = code_start;
662 unexpected_eof (code_start, "}");
664 loc->start = code_start;
680 loc->start = code_start;
687 unexpected_eof (code_start, "%}");
689 loc->start = code_start;
    [all...]
scan-gram.c 1322 boundary code_start = scanner_cursor; variable
1784 code_start = loc->start; BEGIN SC_PROLOGUE; variable
    [all...]
  /external/v8/src/third_party/vtune/
vtune-jit.cc 174 jmethod.method_load_address = event->code_start;
191 GetEntries()->find(event->code_start);
213 GetEntries()->erase(event->code_start);
246 GetEntries()->insert(std::pair <void*, void*>(event->code_start, event->user_data));
  /art/compiler/
common_compiler_test.h 51 static void MakeExecutable(const void* code_start, size_t code_length);
common_compiler_test.cc 106 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) {
107 CHECK(code_start != nullptr);
109 uintptr_t data = reinterpret_cast<uintptr_t>(code_start);
  /external/syslinux/com32/gfxboot/
gfxboot.c 497 unsigned i, fname_len, code_start = 0; local
502 if((code_start = magic_ok(buf, code_size))) return code_start;
510 if((code_start = magic_ok(buf + i, code_size))) {
512 return code_start;
522 return code_start;
536 unsigned code_start, code_size, file_start, file_len, u; local
555 if(!(code_start = find_file(archive, archive_size, &file_start, &file_len, &code_size))) {
562 "code_start = 0x%x, code_size = 0x%x\n"
565 code_start, code_size
    [all...]
  /external/syslinux/gpxe/src/util/
elf2efi.c 334 unsigned long code_start; local
345 code_start = pe_header->nt.OptionalHeader.BaseOfCode;
346 code_end = ( code_start + pe_header->nt.OptionalHeader.SizeOfCode );
379 applicable_start = &code_start;
434 pe_header->nt.OptionalHeader.BaseOfCode = code_start;
435 pe_header->nt.OptionalHeader.SizeOfCode = ( code_end - code_start );
  /external/v8/src/compiler/
frame-elider.cc 25 for (int i = block->code_start(); i < block->code_end(); ++i) {
jump-threading.cc 78 for (int i = block->code_start(); i < block->code_end(); ++i) {
157 for (int i = block->code_start(); i < block->code_end(); ++i) {
instruction.cc 695 os << " instructions: [" << block->code_start() << ", " << block->code_end()
843 return InstructionAt(block->code_start());
850 int code_start = static_cast<int>(instructions_.size()); local
851 current_block_->set_code_start(code_start);
858 if (current_block_->code_start() == end) { // Empty block. Insert a nop.
862 DCHECK(current_block_->code_start() >= 0 &&
863 current_block_->code_start() < end);
    [all...]
register-allocator-verifier.cc 515 for (int instr_index = block->code_start(); instr_index < block->code_end();
graph-visualizer.cc 455 if (instruction_block->code_start() >= 0) {
code-generator.cc 309 for (int i = block->code_start(); i < block->code_end(); ++i) {
    [all...]
  /external/vixl/test/aarch64/examples/
test-examples.cc 568 Label code_start, code_end; local
569 masm.Bind(&code_start);
573 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
  /external/v8/src/
perf-jit.cc 318 Address code_start = code->instruction_start(); local
331 reinterpret_cast<intptr_t>(code_start + iterator.code_offset() + 0x40);
gdb-jit.cc 483 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) {
487 code_start,
557 uintptr_t code_start,
566 cmd->vmaddr = code_start;
    [all...]
log.cc 453 event.code_start = code->instruction_start();
470 event.code_start = from->instruction_start();
513 event.code_start = code->instruction_start();
    [all...]
  /external/v8/src/wasm/
wasm-interpreter.cc 852 const byte* code_start = module_start + function->code_start_offset; local
854 AddFunction(function, code_start, code_end);
892 int AddFunction(const WasmFunction* function, const byte* code_start,
895 function, BodyLocalDecls(zone_), code_start,
896 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end),
    [all...]
  /art/compiler/optimizing/
code_generator.cc 213 size_t code_start = 0; local
218 code_start = GetAssembler()->CodeSize();
224 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize());
    [all...]

Completed in 751 milliseconds

1 2