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

1 2

  /art/compiler/debug/
elf_compilation_unit.h 32 uint64_t code_end = 0; member in struct:art::debug::ElfCompilationUnit
elf_debug_writer.cc 65 cu.code_end = std::max(cu.code_end, mi.code_address + mi.code_size);
elf_debug_info_writer.h 125 const uint64_t cu_size = compilation_unit.code_end - compilation_unit.code_address;
  /device/google/contexthub/firmware/os/platform/stm32/misc/
showsizes.sh 29 code_end=$(getvar $1 __text_end)
30 code_sz=$(($code_end-$code_start))
  /external/vixl/examples/aarch64/
non-const-visitor.cc 72 Label code_start, code_end; local
75 masm.Bind(&code_end);
78 Instruction* instr_end = masm.GetLabelAddress<Instruction*>(&code_end);
custom-disassembler.cc 139 Label code_start, code_end; local
142 masm.Bind(&code_end);
145 Instruction* instr_end = masm.GetLabelAddress<Instruction*>(&code_end);
  /art/runtime/jit/
profiling_info.cc 48 const uint16_t* code_end = code_item.insns_ + code_item.insns_size_in_code_units_; local
52 while (code_ptr < code_end) {
  /external/syslinux/gpxe/src/util/
elf2efi.c 335 unsigned long code_end; local
346 code_end = ( code_start + pe_header->nt.OptionalHeader.SizeOfCode );
350 data_start = code_end;
380 applicable_end = &code_end;
426 if ( data_start < code_end )
427 data_start = code_end;
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) {
register-allocator-verifier.cc 515 for (int instr_index = block->code_start(); instr_index < block->code_end();
code-generator.cc 309 for (int i = block->code_start(); i < block->code_end(); ++i) {
    [all...]
instruction.cc 695 os << " instructions: [" << block->code_start() << ", " << block->code_end()
    [all...]
instruction.h 1367 int32_t code_end() const { return code_end_; } function in class:v8::internal::compiler::final
    [all...]
instruction-selector.cc 86 size_t end = instruction_block->code_end();
    [all...]
register-allocator.cc     [all...]
  /external/pdfium/core/fxcodec/lgif/
fx_gif.h 141 uint16_t code_end; member in class:CGifLZWDecoder
195 uint16_t code_end; member in class:CGifLZWEncoder
fx_gif.cpp 25 code_end(0),
42 code_end = code_clear + 1;
53 code_next = code_end + 1;
138 } else if (code >= code_end) {
237 index_num = code_end + 1;
238 table_cur = code_end + 1;
256 code_end = code_clear + 1;
329 if (index == code_end) {
381 table_cur = code_end + 1;
388 EncodeString(code_end, dst_buf, dst_len, offset)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/doc/
chew.c 303 int code_end; member in struct:dict_struct
1290 new_d->code_end = 0;
1299 if (entry->code_end == entry->code_length)
1306 entry->code[entry->code_end] = word;
1308 return entry->code_end++;
  /external/vixl/test/aarch64/examples/
test-examples.cc 568 Label code_start, code_end; local
571 masm.Bind(&code_end);
574 Instruction* instr_end = masm.GetLabelAddress<Instruction*>(&code_end);
  /external/v8/src/wasm/
wasm-interpreter.cc 853 const byte* code_end = module_start + function->code_end_offset; local
854 AddFunction(function, code_start, code_end);
893 const byte* code_end) {
896 code_end, const_cast<byte*>(code_start), const_cast<byte*>(code_end),
    [all...]
  /art/compiler/optimizing/
code_generator.cc 730 const uint16_t* code_end = code_item.insns_ + code_item.insns_size_in_code_units_; local
733 while (code_ptr < code_end) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
target.def 384 (code_end,
    [all...]
  /art/compiler/driver/
compiler_driver.cc 765 const uint16_t* code_end = code_item->insns_ + code_item->insns_size_in_code_units_; local
768 while (code_ptr < code_end) {
    [all...]
  /art/oatdump/
oatdump.cc 884 const uint16_t* code_end = code_item->insns_ + code_item_size; local
    [all...]

Completed in 3298 milliseconds

1 2