/external/google-breakpad/src/processor/ |
D | map_serializers.h | 138 template<class AddrType, class EntryType> 142 size_t SizeOf(const ContainedRangeMap<AddrType, EntryType> *m) const; 147 char* Write(const ContainedRangeMap<AddrType, EntryType> *m, 154 char* Serialize(const ContainedRangeMap<AddrType, EntryType> *m, 159 typedef std::map<AddrType, ContainedRangeMap<AddrType, EntryType>*> Map; 162 SimpleSerializer<AddrType> addr_serializer_;
|
D | map_serializers_unittest.cc | 49 typedef int32_t AddrType; typedef 63 std::map<AddrType, EntryType> std_map_; 64 google_breakpad::StdMapSerializer<AddrType, EntryType> serializer_; 135 google_breakpad::AddressMap<AddrType, EntryType> address_map_; 136 google_breakpad::AddressMapSerializer<AddrType, EntryType> serializer_; 210 google_breakpad::RangeMap<AddrType, EntryType> range_map_; 211 google_breakpad::RangeMapSerializer<AddrType, EntryType> serializer_; 283 google_breakpad::ContainedRangeMap<AddrType, EntryType> crm_map_; 284 google_breakpad::ContainedRangeMapSerializer<AddrType, EntryType> serializer_;
|
D | map_serializers-inl.h | 189 template<class AddrType, class EntryType> 190 size_t ContainedRangeMapSerializer<AddrType, EntryType>::SizeOf( in SizeOf() 191 const ContainedRangeMap<AddrType, EntryType> *m) const { in SizeOf() argument 211 template<class AddrType, class EntryType> 212 char *ContainedRangeMapSerializer<AddrType, EntryType>::Write( in Write() 213 const ContainedRangeMap<AddrType, EntryType> *m, char *dest) const { in Write() argument 233 dest += sizeof(AddrType) * m->map_->size(); in Write() 248 template<class AddrType, class EntryType> 249 char *ContainedRangeMapSerializer<AddrType, EntryType>::Serialize( in Serialize() 250 const ContainedRangeMap<AddrType, EntryType> *m, unsigned int *size) const { in Serialize() argument
|
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFDebugInfoTest.cpp | 42 template <uint16_t Version, class AddrType, class RefAddrType> 44 Triple Triple = getDefaultTargetTripleForAddrSize(sizeof(AddrType)); in TestAllForms() 49 const AddrType AddrValue = (AddrType)0x0123456789abcdefULL; in TestAllForms() 388 typedef uint32_t AddrType; in TEST() typedef 390 typedef AddrType RefAddrType; in TEST() 391 TestAllForms<2, AddrType, RefAddrType>(); in TEST() 397 typedef uint64_t AddrType; in TEST() typedef 399 typedef AddrType RefAddrType; in TEST() 400 TestAllForms<2, AddrType, RefAddrType>(); in TEST() 406 typedef uint32_t AddrType; in TEST() typedef [all …]
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Function.h | 273 enum class AddrType : uint8_t { Call, AfterCall }; enum 291 std::pair<AddrType, lldb::addr_t> GetCallerAddress(Function &caller, in GetCallerAddress() 311 CallEdge(AddrType caller_address_type, lldb::addr_t caller_address, in CallEdge() 324 return caller_address_type == AddrType::AfterCall && !is_tail_call in GetUnresolvedReturnPCAddress() 331 AddrType caller_address_type; 344 DirectCallEdge(const char *symbol_name, AddrType caller_address_type, in DirectCallEdge() 377 IndirectCallEdge(DWARFExpression call_target, AddrType caller_address_type, in IndirectCallEdge()
|
/external/llvm-project/lldb/source/Target/ |
D | StackFrameList.cpp | 244 CallEdge::AddrType address_type = CallEdge::AddrType::Call; 417 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 3748 CallEdge::AddrType caller_address_type; in CollectCallEdges() 3751 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges() 3754 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges() 3757 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 1293 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local 1295 AddrType.addConst(); in CheckARMBuiltinExclusiveCall() 1299 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall() 1303 << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall() 1308 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall() 1309 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()
|
/external/rust/crates/structopt/ |
D | CHANGELOG.md | 236 addr_type: AddrType // this adds `addr-type` subcommand
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaChecking.cpp | 2339 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local 2341 AddrType.addConst(); in CheckARMBuiltinExclusiveCall() 2345 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall() 2348 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall() 2353 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall() 2354 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()
|