HomeSort by relevance Sort by last modified time
    Searched defs:DataRefImpl (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Object/
SymbolicFile.h 24 union DataRefImpl {
31 DataRefImpl() { std::memset(this, 0, sizeof(DataRefImpl)); }
35 OStream& operator<<(OStream &OS, const DataRefImpl &D) {
40 inline bool operator==(const DataRefImpl &a, const DataRefImpl &b) {
43 return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
46 inline bool operator!=(const DataRefImpl &a, const DataRefImpl &b) {
50 inline bool operator<(const DataRefImpl &a, const DataRefImpl &b)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
ObjectFile.h 29 union DataRefImpl {
75 static bool operator ==(const DataRefImpl &a, const DataRefImpl &b) {
78 return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
85 DataRefImpl SymbolPimpl;
100 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
124 DataRefImpl getRawDataRefImpl() const;
131 DataRefImpl RelocationPimpl;
139 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
167 DataRefImpl SectionPimpl
    [all...]

Completed in 2443 milliseconds