/external/google-breakpad/src/processor/ |
D | stackwalker_amd64_unittest.cc | 241 .D64(0x00007400b0000000ULL) // junk that's not in TEST_F() 242 .D64(0x00007500d0000000ULL) // a return address in TEST_F() 244 .D64(return_address1) // actual return address in TEST_F() 249 .D64(0x00007400b0000000ULL) // more junk in TEST_F() 250 .D64(0x00007500d0000000ULL) in TEST_F() 253 .D64(stack_section.start()) // This is in the right place to be in TEST_F() 257 .D64(return_address2) // actual return address in TEST_F() 319 .D64(0x00007400b0000000ULL) // junk that's not in TEST_F() 320 .D64(0x00007500b0000000ULL) // a return address in TEST_F() 322 .D64(0x00007400c0001000ULL) // a couple of plausible addresses in TEST_F() [all …]
|
D | stackwalker_arm64_unittest.cc | 206 .D64(0x40090000) // junk that's not in TEST_F() 207 .D64(0x60000000) // a return address in TEST_F() 209 .D64(return_address1) // actual return address in TEST_F() 214 .D64(0xF0000000) // more junk in TEST_F() 215 .D64(0x0000000D) in TEST_F() 217 .D64(return_address2) // actual return address in TEST_F() 276 .D64(0x40090000) // junk that's not in TEST_F() 277 .D64(0x60000000) // a return address in TEST_F() 279 .D64(0x40001000) // a couple of plausible addresses in TEST_F() 280 .D64(0x5000F000) // that are not within functions in TEST_F() [all …]
|
D | stackwalker_mips64_unittest.cc | 152 stack_section.D64(0).D64(0x0); in TEST_F() 182 stack_section.D64(0).D64(0x0); in TEST_F() 247 .D64(0x00490000) // junk that's not in TEST_F() 248 .D64(0x00600000) // a return address in TEST_F() 250 .D64(frame1_sp) // stack pointer in TEST_F() 251 .D64(return_address1) // actual return address in TEST_F() 256 .D64(0xF0000000) // more junk in TEST_F() 257 .D64(0x0000000D) in TEST_F() 259 .D64(frame2_sp) // stack pointer in TEST_F() 260 .D64(return_address2) // actual return address in TEST_F() [all …]
|
D | synth_minidump.cc | 81 D64(system_info.cpu.other_cpu_info.processor_features[0]); in SystemInfo() 82 D64(system_info.cpu.other_cpu_info.processor_features[1]); in SystemInfo() 122 section->D64(address_); in CiteMemoryIn() 187 D64(context.float_save.fpscr); in Context() 189 D64(context.float_save.regs[i]); in Context() 203 D64(context.iregs[i]); in Context() 205 D64(context.mdhi); in Context() 206 D64(context.mdlo); in Context() 217 D64(context.epc); in Context() 218 D64(context.badvaddr); in Context() [all …]
|
D | minidump_unittest.cc | 1002 .D64(kNumberOfEntries); // number_of_entries in TEST() 1008 stream.D64(kBaseAddress) // base_address in TEST() 1009 .D64(kBaseAddress) // allocation_base in TEST() 1012 .D64(kRegionSize) // region_size in TEST()
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | NSArray.cpp | 77 template <typename D32, typename D64> 97 D64 *m_data_64; 210 template <typename D32, typename D64, bool Inline> 232 D64 *m_data_64; 455 template <typename D32, typename D64> 457 GenericNSArrayMSyntheticFrontEnd<D32, D64>:: 484 template <typename D32, typename D64> 487 GenericNSArrayMSyntheticFrontEnd<D32, D64>::Update() { in Update() 509 m_data_64 = new D64(); in Update() 510 process_sp->ReadMemory(data_location, m_data_64, sizeof(D64), in Update() [all …]
|
D | NSSet.cpp | 113 template <typename D32, typename D64> 140 D64 *m_data_64; 675 template <typename D32, typename D64> 677 GenericNSSetMSyntheticFrontEnd<D32, D64>::GenericNSSetMSyntheticFrontEnd( in GenericNSSetMSyntheticFrontEnd() 685 template <typename D32, typename D64> 687 GenericNSSetMSyntheticFrontEnd<D32, D64>::~GenericNSSetMSyntheticFrontEnd<D32, D64>() { in ~GenericNSSetMSyntheticFrontEnd() 694 template <typename D32, typename D64> 697 GenericNSSetMSyntheticFrontEnd<D32, D64>::GetIndexOfChildWithName( in GetIndexOfChildWithName() 706 template <typename D32, typename D64> 709 GenericNSSetMSyntheticFrontEnd<D32, D64>::CalculateNumChildren() { in CalculateNumChildren() [all …]
|
D | NSDictionary.cpp | 196 template <typename D32, typename D64> 224 D64 *m_data_64; 905 template <typename D32, typename D64> 906 lldb_private::formatters::GenericNSDictionaryMSyntheticFrontEnd<D32,D64>:: 912 template <typename D32, typename D64> 913 lldb_private::formatters::GenericNSDictionaryMSyntheticFrontEnd<D32,D64>:: 914 ~GenericNSDictionaryMSyntheticFrontEnd<D32,D64>() { in ~GenericNSDictionaryMSyntheticFrontEnd() 921 template <typename D32, typename D64> 923 D32, D64>::GetIndexOfChildWithName(ConstString name) { in GetIndexOfChildWithName() 931 template <typename D32, typename D64> [all …]
|
/external/google-breakpad/src/common/dwarf/ |
D | cfi_assembler.cc | 58 D64(entry_length_->length); in CIEHeader() 60 D64(eh_frame_ ? kEHFrame64CIEIdentifier : kDwarf64CIEIdentifier); in CIEHeader() 92 D64(entry_length_->length); in FDEHeader() 95 D64(Here() - cie_pointer); in FDEHeader() 97 D64(cie_pointer); in FDEHeader() 188 D64(address); in EncodedPointer()
|
D | cfi_assembler.h | 210 CFISection &D64(uint64_t v) { Section::D64(v); return *this; } in D64() function 211 CFISection &D64(const Label &v) { Section::D64(v); return *this; } in D64() function
|
D | dwarf2reader_test_common.h | 68 D64(offset); in SectionOffset() 79 D64(length_); in Header()
|
D | dwarf2reader_die_unittest.cc | 303 info.D64(value); in TEST_P() 386 info.D64(value); in TEST_P() 424 info.D64(0xf72fa0cb6ddcf9d6ULL); in TEST_P() 448 info.D64(0xf72fa0cb6ddcf9d6ULL); in TEST_P()
|
/external/llvm-project/llvm/test/TableGen/ |
D | cond-bitlist.td | 15 def D64 : S<64>; 23 // CHECK: def D64
|
D | if.td | 46 def D64 : S<64>; 54 // CHECK: def D64
|
/external/OpenCSD/decoder/include/opencsd/stm/ |
D | trc_pkt_elem_stm.h | 162 payload.D64 = value; in setD64Payload() 227 return payload.D64; in getD64Val()
|
D | trc_pkt_types_stm.h | 119 uint64_t D64; /**< payload for D64 data packet */ member
|
/external/google-breakpad/src/common/ |
D | test_assembler.h | 360 &D16(uint16_t), &D32(uint32_t), &D64(uint64_t); 366 &D32(const Label &label), &D64(const Label &label);
|
D | test_assembler_unittest.cc | 1228 section.D64(0xb109843500dbcb16ULL); in TEST_F() 1238 section.D64(l); in TEST_F() 1302 section.D64(0x42de75c61375a1deULL); in TEST_F() 1312 section.D64(l); in TEST_F()
|
/external/google-breakpad/src/common/linux/ |
D | synth_elf.cc | 241 D64(value); in AddSymbol() 242 D64(size); in AddSymbol()
|
D | elf_symbols_to_module_unittest.cc | 274 .D64(value) in AddElf64Sym() 275 .D64(size); in AddElf64Sym()
|
/external/llvm/test/TableGen/ |
D | if.td | 46 def D64 : S<64>; 54 // CHECK: def D64
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsScheduleP5600.td | 453 def : InstRW<[P5600WriteFPUL], (instregex "^TRUNC_(L|W)_(S|D32|D64)$")>; 455 (instregex "^CVT_(S|D32|D64|L|W)_(S|D32|D64|L|W)$")>; 457 def : InstRW<[P5600WriteFPUL], (instregex "^C_[A-Z]+_(S|D32|D64)$")>; 458 def : InstRW<[P5600WriteFPUL], (instregex "^FCMP_(S32|D32|D64)$")>; 459 def : InstRW<[P5600WriteFPUL], (instregex "^PseudoCVT_(S|D32|D64)_(L|W)$")>; 612 def : InstRW<[P5600WriteFPUL], (instregex "^CEIL_(L|W)_(S|D32|D64)$")>; 613 def : InstRW<[P5600WriteFPUL], (instregex "^FLOOR_(L|W)_(S|D32|D64)$")>; 614 def : InstRW<[P5600WriteFPUL], (instregex "^ROUND_(L|W)_(S|D32|D64)$")>;
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | MipsScheduleP5600.td | 454 def : InstRW<[P5600WriteFPUL], (instregex "^TRUNC_(L|W)_(S|D32|D64)$")>; 456 (instregex "^CVT_(S|D32|D64|L|W)_(S|D32|D64|L|W)$")>; 458 def : InstRW<[P5600WriteFPUL], (instregex "^C_[A-Z]+_(S|D32|D64)$")>; 459 def : InstRW<[P5600WriteFPUL], (instregex "^FCMP_(S32|D32|D64)$")>; 460 def : InstRW<[P5600WriteFPUL], (instregex "^PseudoCVT_(S|D32|D64)_(L|W)$")>; 613 def : InstRW<[P5600WriteFPUL], (instregex "^CEIL_(L|W)_(S|D32|D64)$")>; 614 def : InstRW<[P5600WriteFPUL], (instregex "^FLOOR_(L|W)_(S|D32|D64)$")>; 615 def : InstRW<[P5600WriteFPUL], (instregex "^ROUND_(L|W)_(S|D32|D64)$")>;
|
D | MipsScheduleGeneric.td | 802 def : InstRW<[GenericWriteFPUCmp], (instregex "C_[A-Z]+_(S|D32|D64)$")>; 932 def : InstRW<[GenericWriteFPUCmp], (instregex "^C_[A-Z]_(S|D32|D64)_MM$")>; 933 def : InstRW<[GenericWriteFPUCmp], (instregex "^C_[A-Z][A-Z]_(S|D32|D64)_MM$")>; 934 def : InstRW<[GenericWriteFPUCmp], (instregex "^C_[A-Z][A-Z][A-Z]_(S|D32|D64)_MM$")>; 935 def : InstRW<[GenericWriteFPUCmp], (instregex "^C_NGLE_(S|D32|D64)_MM$")>;
|
/external/OpenCSD/decoder/source/stm/ |
D | trc_pkt_elem_stm.cpp | 149 oss << "; Data=0x" << std::hex << std::setw(16) << std::setfill('0') << payload.D64; in toString()
|