HomeSort by relevance Sort by last modified time
    Searched refs:AddrType (Results 1 - 8 of 8) sorted by null

  /external/google-breakpad/src/processor/
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_;
map_serializers_unittest.cc 49 typedef int32_t AddrType;
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_;
map_serializers-inl.h 189 template<class AddrType, class EntryType>
190 size_t ContainedRangeMapSerializer<AddrType, EntryType>::SizeOf(
191 const ContainedRangeMap<AddrType, EntryType> *m) const {
211 template<class AddrType, class EntryType>
212 char *ContainedRangeMapSerializer<AddrType, EntryType>::Write(
213 const ContainedRangeMap<AddrType, EntryType> *m, char *dest) const {
223 // Write map<<AddrType, ContainedRangeMap*>:
233 dest += sizeof(AddrType) * m->map_->size();
248 template<class AddrType, class EntryType>
249 char *ContainedRangeMapSerializer<AddrType, EntryType>::Serialize
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elf_file.h 465 * AddrType - Defines pointer type for the CU the range belongs to. CU's
477 template<typename AddrType>
478 bool get_range(Elf_Word offset, AddrType* low, AddrType* high) {
479 const AddrType* ptr = INC_CPTR_T(AddrType, debug_ranges_.data(), offset);
480 assert(debug_ranges_.is_contained(ptr, sizeof(AddrType) * 2));
481 if (!debug_ranges_.is_contained(ptr, sizeof(AddrType) * 2)) {
dwarf_die.cc 129 template <typename AddrType>
139 AddrType low;
140 AddrType high;
147 range_off += sizeof(AddrType) * 2;
dwarf_die.h 98 * AddrType - Type of compilation unin address (4, or 8 bytes), defined by
107 template <typename AddrType>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dhcpssdk.h 78 typedef DWORD (WINAPI *LPDHCP_GIVE_ADDRESS)(LPBYTE Packet,DWORD PacketSize,DWORD ControlCode,DWORD IpAddress,DWORD AltAddress,DWORD AddrType,DWORD LeaseTime,LPVOID Reserved,LPVOID PktContext);
  /external/clang/lib/Sema/
SemaChecking.cpp 747 QualType AddrType = ValType.getUnqualifiedType().withVolatile();
749 AddrType.addConst();
753 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) {
757 << Context.getPointerType(AddrType)
762 AddrType = Context.getPointerType(AddrType);
763 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded);
    [all...]

Completed in 418 milliseconds