/external/llvm-project/llvm/test/ObjectYAML/MachO/ |
D | DWARF-debug_info.yaml | 396 AbbrOffset: 0 517 # DWARF32-NEXT: AbbrOffset: 0 587 # DWARF32-YAML-NEXT: AbbrOffset: 0 654 AbbrOffset: 0 671 # DWARF64-YAML-NEXT: AbbrOffset: 0 721 # MULTI-TABLES-NEXT: AbbrOffset: 0x8 730 # MULTI-TABLES-NEXT: AbbrOffset: 0x8 739 # MULTI-TABLES-NEXT: AbbrOffset: 0x0 748 # MULTI-TABLES-NEXT: AbbrOffset: 0x17 906 AbbrOffset: 0x00
|
D | DWARF5-debug_info.yaml | 397 AbbrOffset: 0 518 # DWARF32-NEXT: AbbrOffset: 0 589 # DWARF32-YAML-NEXT: AbbrOffset: 0x0 657 AbbrOffset: 0 675 # DWARF64-YAML-NEXT: AbbrOffset: 0x0
|
D | DWARF2-AddrSize8-FormValues.yaml | 340 AbbrOffset: 0 421 #CHECK: AbbrOffset: 0
|
D | DWARF-debug_ranges.yaml | 215 AbbrOffset: 0
|
D | DWARF-debug_abbrev.yaml | 487 AbbrOffset: 0x00
|
D | DWARF-debug_line.yaml | 427 AbbrOffset: 0
|
/external/llvm-project/llvm/test/tools/yaml2obj/ELF/DWARF/ |
D | debug-info.yaml | 212 AbbrOffset: 0x1234 274 AbbrOffset: 0x1234 283 AbbrOffset: 0x5678 453 AbbrOffset: 0x1234 480 AbbrOffset: 0x1234 545 AbbrOffset: 0x1234 571 AbbrOffset: 0x1234 621 AbbrOffset: 0x1234 659 AbbrOffset: 0x1234 693 AbbrOffset: 0x1234 [all …]
|
D | debug-abbrev.yaml | 335 AbbrOffset: 0x00
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 80 uint64_t AbbrOffset = debug_info.getU32(offset_ptr); in extractImpl() local 82 if (AbbrOffset) in extractImpl() 90 AbbrOffset = AbbrEntry->Offset; in extractImpl() 101 Abbrevs = Abbrev->getAbbreviationDeclarationSet(AbbrOffset); in extractImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 103 IO.mapRequired("AbbrOffset", Unit.AbbrOffset); in mapping()
|
D | DWARFEmitter.cpp | 146 writeInteger((uint32_t)CU.AbbrOffset, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit() 148 writeInteger((uint32_t)CU.AbbrOffset, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
|
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/ |
D | verify_file_encoding.yaml | 74 AbbrOffset: 0x0000000000000000
|
D | stats-scope-bytes-covered.yaml | 89 AbbrOffset: 0x00
|
D | verify_attr_file_indexes.yaml | 77 AbbrOffset: 0x0000000000000000
|
D | verify_attr_file_indexes_no_files.yaml | 77 AbbrOffset: 0x0000000000000000
|
/external/icu/icu4c/source/tools/tzcode/ |
D | tz2icu.cpp | 459 vector<int32_t> abbroffset; in readzoneinfo() local 465 abbroffset.push_back(start-str); in readzoneinfo() 473 vector<bool> abbrseen(abbroffset.size(), false); in readzoneinfo() 479 find(abbroffset.begin(), abbroffset.end(), it->abbr); in readzoneinfo() 480 if (x==abbroffset.end()) { in readzoneinfo() 493 for (vector<int32_t>::const_iterator y=abbroffset.begin(); in readzoneinfo() 494 y!=abbroffset.end(); ++y) { in readzoneinfo() 501 int32_t index = x - abbroffset.begin(); in readzoneinfo()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 190 IO.mapOptional("AbbrOffset", Unit.AbbrOffset); in mapping()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 242 AbbrOffset = debug_info.getRelocatedValue( in extract() 245 AbbrOffset = debug_info.getRelocatedValue( in extract() 292 if (AbbrOffset) in applyIndexEntry() 301 AbbrOffset = AbbrEntry->Offset; in applyIndexEntry()
|
D | DWARFVerifier.cpp | 105 uint64_t AbbrOffset, Length; in verifyUnitHeader() local 125 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 129 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 133 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) in verifyUnitHeader()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 276 AbbrOffset = debug_info.getRelocatedValue( in extract() 279 AbbrOffset = debug_info.getRelocatedValue( in extract() 290 if (AbbrOffset) in extract() 298 AbbrOffset = AbbrEntry->Offset; in extract()
|
D | DWARFVerifier.cpp | 103 uint64_t AbbrOffset, Length; in verifyUnitHeader() local 125 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 129 AbbrOffset = isUnitDWARF64 ? DebugInfoData.getU64(Offset) : DebugInfoData.getU32(Offset); in verifyUnitHeader() 133 if (!DCtx.getDebugAbbrev()->getAbbreviationDeclarationSet(AbbrOffset)) in verifyUnitHeader()
|
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 53 uint64_t AbbrOffset = 0; variable 91 uint64_t getAbbrOffset() const { return AbbrOffset; } in getAbbrOffset()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 53 uint64_t AbbrOffset = 0; variable 87 uint64_t getAbbrOffset() const { return AbbrOffset; } in getAbbrOffset()
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/MachO/Inputs/ |
D | strip-all-with-dwarf.yaml | 396 AbbrOffset: 0
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 104 uint32_t AbbrOffset; member
|