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

1 2

  /art/compiler/
gc_map_builder.h 66 size_t table_offset = (table_index * EntryWidth()) + sizeof(uint32_t); local
68 native_offset |= (*table_)[table_offset + i] << (i * 8);
74 size_t table_offset = (table_index * EntryWidth()) + sizeof(uint32_t); local
76 (*table_)[table_offset + i] = (native_offset >> (i * 8)) & 0xFF;
81 size_t table_offset = (table_index * EntryWidth()) + sizeof(uint32_t); local
82 memcpy(&(*table_)[table_offset + native_offset_width_], references, references_width_);
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psnames/
fxft_psmodule.c 172 static int xyq_search_node(char* glyph_name, int name_offset, int table_offset, FT_UInt32 unicode)
178 glyph_name[name_offset] = ft_adobe_glyph_list[table_offset] & 0x7f;
180 table_offset ++;
181 if (!(ft_adobe_glyph_list[table_offset-1] & 0x80)) break;
186 count = ft_adobe_glyph_list[table_offset] & 0x7f;
189 if (ft_adobe_glyph_list[table_offset] & 0x80) {
190 unsigned short thiscode = ft_adobe_glyph_list[table_offset+1] * 256 + ft_adobe_glyph_list[table_offset+2];
193 table_offset += 3;
195 table_offset ++
    [all...]
  /external/chromium_org/components/visitedlink/common/
visitedlink_common.h 97 Fingerprint FingerprintAt(int32 table_offset) const {
100 return hash_table_[table_offset];
  /art/compiler/dex/quick/mips/
call_mips.cc 64 void MipsMir2Lir::GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
65 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
141 void MipsMir2Lir::GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
142 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
223 void MipsMir2Lir::GenFillArrayData(DexOffset table_offset, RegLocation rl_src) {
224 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
codegen_mips.h 118 void GenFillArrayData(uint32_t table_offset, RegLocation rl_src);
131 void GenLargePackedSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src);
132 void GenLargeSparseSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src);
  /art/compiler/dex/quick/x86/
call_x86.cc 30 void X86Mir2Lir::GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
31 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
58 * mov r_disp, [r_start_of_method + r_key_reg * 4 + table_offset]
63 void X86Mir2Lir::GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
64 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
137 void X86Mir2Lir::GenFillArrayData(DexOffset table_offset, RegLocation rl_src) {
138 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font.cc 94 int32_t table_offset = Offset::kTableRecordBegin + num_tables() * local
105 new Header(*tag, table->CalculatedChecksum(), table_offset,
108 table_offset += (table->DataLength() + 3) & ~3;
511 int32_t table_offset = offset + Offset::kTableRecordBegin; local
514 table_number++, table_offset += Offset::kTableRecordSize) {
515 int32_t tag = fd->ReadULongAsInt(table_offset + Offset::kTableTag);
516 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum);
517 int32_t offset = fd->ReadULongAsInt(table_offset + Offset::kTableOffset);
518 int32_t length = fd->ReadULongAsInt(table_offset + Offset::kTableLength);
  /external/sfntly/cpp/src/sfntly/
font.cc 94 int32_t table_offset = Offset::kTableRecordBegin + num_tables() * local
105 new Header(*tag, table->CalculatedChecksum(), table_offset,
108 table_offset += (table->DataLength() + 3) & ~3;
511 int32_t table_offset = offset + Offset::kTableRecordBegin; local
514 table_number++, table_offset += Offset::kTableRecordSize) {
515 int32_t tag = fd->ReadULongAsInt(table_offset + Offset::kTableTag);
516 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum);
517 int32_t offset = fd->ReadULongAsInt(table_offset + Offset::kTableOffset);
518 int32_t length = fd->ReadULongAsInt(table_offset + Offset::kTableLength);
  /art/compiler/dex/quick/arm64/
call_arm64.cc 46 void Arm64Mir2Lir::GenLargeSparseSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src) {
47 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
98 void Arm64Mir2Lir::GenLargePackedSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src) {
99 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
159 void Arm64Mir2Lir::GenFillArrayData(uint32_t table_offset, RegLocation rl_src) {
160 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
codegen_arm64.h 184 void GenFillArrayData(DexOffset table_offset, RegLocation rl_src) OVERRIDE;
200 void GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) OVERRIDE;
201 void GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) OVERRIDE;
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 535 Off table_offset = iter.NextOffset(); local
536 if (table_offset == 0)
538 Word sh_type = GetWordAt(table_offset + offsetof(Shdr, sh_type));
540 *size = GetOffAt(table_offset + offsetof(Shdr, sh_size));
541 return GetOffAt(table_offset + offsetof(Shdr, sh_offset));
552 Off table_offset = iter.NextOffset(); local
553 if (table_offset == 0)
555 Word sh_type = GetWordAt(table_offset + offsetof(Shdr, sh_type));
557 return GetWordAt(table_offset + offsetof(Shdr, sh_link));
567 Off table_offset = iter.NextOffset() local
    [all...]
  /art/compiler/dex/quick/arm/
call_arm.cc 46 void ArmMir2Lir::GenLargeSparseSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src) {
47 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
94 void ArmMir2Lir::GenLargePackedSwitch(MIR* mir, uint32_t table_offset, RegLocation rl_src) {
95 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
150 void ArmMir2Lir::GenFillArrayData(uint32_t table_offset, RegLocation rl_src) {
151 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
codegen_arm.h 119 void GenFillArrayData(DexOffset table_offset, RegLocation rl_src);
134 void GenLargePackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src);
135 void GenLargeSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.h 125 static int32_t NumGlyphs(ReadableFontData* data, int32_t table_offset);
index_sub_table_format5.h 107 static int32_t NumGlyphs(ReadableFontData* dta, int32_t table_offset);
bitmap_size_table.h 156 int32_t table_offset);
index_sub_table_format5.cc 81 int32_t table_offset) {
82 int32_t num_glyphs = data->ReadULongAsInt(table_offset +
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.h 125 static int32_t NumGlyphs(ReadableFontData* data, int32_t table_offset);
index_sub_table_format5.h 107 static int32_t NumGlyphs(ReadableFontData* dta, int32_t table_offset);
bitmap_size_table.h 156 int32_t table_offset);
index_sub_table_format5.cc 81 int32_t table_offset) {
82 int32_t num_glyphs = data->ReadULongAsInt(table_offset +
  /art/compiler/dex/portable/
mir_to_gbc.h 94 void ConvertPackedSwitch(BasicBlock* bb, int32_t table_offset,
96 void ConvertSparseSwitch(BasicBlock* bb, int32_t table_offset,
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elf_mem_image.cc 101 ElfW(Off) table_offset, member in namespace:base::__anon20161
105 + table_offset
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elf_mem_image.cc 101 ElfW(Off) table_offset, member in namespace:base::__anon20205
105 + table_offset
  /art/compiler/dex/quick/
gen_common.cc     [all...]

Completed in 618 milliseconds

1 2