Home
last modified time | relevance | path

Searched refs:AddrType (Results 1 – 4 of 4) sorted by relevance

/external/google-breakpad/src/processor/
Dmap_serializers.h138 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_;
Dmap_serializers_unittest.cc49 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_;
Dmap_serializers-inl.h189 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/clang/lib/Sema/
DSemaChecking.cpp747 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local
749 AddrType.addConst(); in CheckARMBuiltinExclusiveCall()
753 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall()
757 << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall()
762 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall()
763 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()