Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineRelocation.h67 AddressType AddrType : 4; // The field of Target to use variable
91 Result.AddrType = isGV;
111 Result.AddrType = isIndirectSym;
128 Result.AddrType = isBB;
148 Result.AddrType = isExtSym;
167 Result.AddrType = isConstPool;
186 Result.AddrType = isJumpTable;
223 return AddrType == isGV; in isGlobalValue()
229 return AddrType == isIndirectSym; in isIndirectSymbol()
235 return AddrType == isBB; in isBasicBlock()
[all …]
/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/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugInfoTest.cpp43 template <uint16_t Version, class AddrType, class RefAddrType>
45 Triple Triple = getHostTripleForAddrSize(sizeof(AddrType)); in TestAllForms()
50 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/syzkaller/vendor/google.golang.org/grpc/naming/
Ddns_resolver.go188 AddrType AddressType member
232 Metadata: AddrMetadataGRPCLB{AddrType: GRPCLB, ServerName: s.Target}}
/external/syzkaller/vendor/golang.org/x/sys/unix/
Dsyscall_linux.go473 AddrType uint8 member
488 sa.raw.Bdaddr_type = sa.AddrType
/external/clang/lib/Sema/
DSemaChecking.cpp1293 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()