Searched defs:code_start (Results 1 - 12 of 12) sorted by relevance

/external/vixl/examples/aarch32/
H A Dexamples.h50 ExecutableMemory(const byte* code_start, size_t size) argument
59 memcpy(buffer_, code_start, size_);
/external/vixl/examples/aarch64/
H A Dnon-const-visitor.cc72 Label code_start, code_end; local
73 masm.Bind(&code_start);
77 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
H A Dcustom-disassembler.cc139 Label code_start, code_end; local
140 masm.Bind(&code_start);
144 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
/external/vixl/test/aarch64/examples/
H A Dtest-examples.cc568 Label code_start, code_end; local
569 masm.Bind(&code_start);
573 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start);
/external/syslinux/gpxe/src/util/
H A Delf2efi.c334 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/
H A Dperf-jit.cc318 Address code_start = code->instruction_start(); local
331 reinterpret_cast<intptr_t>(code_start + iterator.code_offset() + 0x40);
H A Dgdb-jit.cc483 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { argument
487 code_start,
557 uintptr_t code_start,
566 cmd->vmaddr = code_start;
2179 Address addr = reinterpret_cast<Address>(event->code_start);
2214 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info);
556 WriteSegmentCommand(Writer* w, uintptr_t code_start, uintptr_t code_size) argument
/external/syslinux/com32/gfxboot/
H A Dgfxboot.c497 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_siz
[all...]
/external/v8/src/compiler/
H A Dinstruction.cc695 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);
H A Dinstruction.h1364 int32_t code_start() const { return code_start_; } function in class:v8::internal::compiler::final
/external/v8/src/wasm/
H A Dwasm-interpreter.cc852 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, argument
895 function, BodyLocalDecls(zone_), code_start,
896 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end),
/external/v8/include/
H A Dv8.h6135 void* code_start; member in struct:v8::JitCodeEvent

Completed in 766 milliseconds