/external/llvm/test/tools/llvm-dwp/X86/ |
type_dedup.test | 19 CHECK: 0x0000 addr_size = 0x08 type_signature = [[COMMONSIG:0x[0-9a-f]*]] type_offset = 0x[[COMMONOFF:.*]] (next unit at [[AUOFF:.*]]) 25 CHECK: 0x0000 addr_size = 0x08 type_signature = [[ASIG:0x[0-9a-f]*]] type_offset = 0x[[AOFF:.*]] (next unit at [[BUOFF:.*]]) 31 CHECK: 0x{{.*}} addr_size = 0x08 type_signature = [[BSIG:0x[0-9a-f]*]] type_offset = 0x[[BOFF:.*]] (next unit at [[XUOFF:.*]])
|
simple.test | 61 TYPES: 0x[[AAOFF]] addr_size = 0x08 type_signature = [[FOOSIG]] type_offset = 0x[[FOOOFF:.*]] (next unit at [[BARUOFF:.*]]) 67 TYPES: 0x[[BAOFF]] addr_size = 0x08 type_signature = [[BARSIG]] type_offset = 0x001e (next unit at [[XUOFF:.*]])
|
/external/llvm/test/DebugInfo/ |
dwarfdump-type-units.test | 12 FOO: 0x00000000: Type Unit: {{.*}} type_signature = [[FOO_SIG]] type_offset = 0x[[FOO_OFF:[0-9a-f]*]] (next unit at 25 BAR: 0x00000000: Type Unit: {{.*}} type_signature = [[BAR_SIG]] type_offset = 0x[[BAR_OFF:[0-9a-f]*]] (next unit at
|
/external/elfutils/libdw/ |
dwarf_nextcu.c | 138 Dwarf_Off type_offset; local 140 &type_offset, sec_idx, 0)) 143 /* Validate that the TYPE_OFFSET points past the header. */ 144 if (unlikely (type_offset < (size_t) (bytes - (data + off)))) 149 *type_offsetp = type_offset;
|
libdw_findcu.c | 78 Dwarf_Off type_offset = 0; local 84 debug_types ? &type_offset : NULL) != 0) 111 newp->type_offset = type_offset;
|
dwarf_cu_die.c | 59 *type_offsetp = cu->type_offset;
|
dwarf_getlocation_die.c | 71 attr->cu->type_offset != 0) == NULL)
|
dwarf_getlocation_implicit_pointer.c | 66 attr->cu->type_offset != 0) == NULL)
|
dwarf_formref_die.c | 96 offset = cu->start + cu->type_offset;
|
libdwP.h | 296 size_t type_offset; member in struct:Dwarf_CU 344 (fromcu)->type_offset != 0)) \ 716 return cu->type_offset == 0 ? IDX_debug_info : IDX_debug_types;
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ResolveInfo.h | 212 static const uint32_t TYPE_OFFSET = 7; 213 static const uint32_t TYPE_MASK = 0xF << TYPE_OFFSET; 244 static const uint32_t object_flag = Object << TYPE_OFFSET; 245 static const uint32_t function_flag = Function << TYPE_OFFSET; 246 static const uint32_t section_flag = Section << TYPE_OFFSET; 247 static const uint32_t file_flag = File << TYPE_OFFSET;
|
/toolchain/binutils/binutils-2.25/gold/ |
gdb-index.h | 78 add_type_unit(off_t tu_offset, off_t type_offset, uint64_t signature) 80 this->type_units_.push_back(Type_unit(tu_offset, type_offset, signature)); 181 : tu_offset(off), type_offset(toff), type_signature(sig) 184 uint64_t type_offset; member in struct:gold::Gdb_index::Type_unit
|
gdb-index.cc | 206 visit_type_unit(off_t tu_offset, off_t tu_length, off_t type_offset, 333 off_t type_offset, uint64_t signature, 338 this->cu_index_ = -1 - this->gdb_index_->add_type_unit(tu_offset, type_offset, [all...] |
dwarf_reader.cc | 1327 off_t type_offset = 0; local [all...] |
dwarf_reader.h | 807 visit_type_unit(off_t tu_offset, off_t tu_length, off_t type_offset, [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
FieldIdItem.java | 45 public static final int TYPE_OFFSET = 2; 75 int typeIndex = dexFile.readUshort(fieldOffset + TYPE_OFFSET);
|
MapItem.java | 44 public static final int TYPE_OFFSET = 0; 57 return dexFile.readUshort(offset + TYPE_OFFSET);
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFTypeUnit.cpp | 32 << " type_offset = " << format("0x%04x", TypeOffset)
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/ |
DexBackedFieldReference.java | 64 return dexFile.getType(dexFile.readUshort(fieldIdItemOffset + FieldIdItem.TYPE_OFFSET));
|
/frameworks/compile/mclinker/lib/LD/ |
ResolveInfo.cpp | 93 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK); 187 return (m_BitField & TYPE_MASK) >> TYPE_OFFSET;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
DexBackedField.java | 102 return dexFile.getType(dexFile.readUshort(getFieldIdItemOffset() + FieldIdItem.TYPE_OFFSET));
|
/external/dbus/dbus/ |
dbus-message-factory.c | 41 #define TYPE_OFFSET 1 568 _dbus_string_set_byte (data, TYPE_OFFSET, DBUS_MESSAGE_TYPE_INVALID); 578 _dbus_string_set_byte (data, TYPE_OFFSET, 100); [all...] |
dbus-marshal-recursive-util.c | 1079 int type_offset; member in struct:__anon10189 [all...] |
dbus-marshal-header.c | 55 #define TYPE_OFFSET 1 388 type = _dbus_string_get_byte (&header->data, TYPE_OFFSET); [all...] |
/external/clang/include/clang/Serialization/ |
ASTBitCodes.h | 336 /// The TYPE_OFFSET constant describes the record that occurs 344 /// TYPE_OFFSET block to determine the offset of that type's 346 TYPE_OFFSET = 1, [all...] |