HomeSort by: relevance | last modified time | path
    Searched defs:Atom (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
AccelTable.h 223 /// An Atom defines the form of the data in an Apple accelerator table.
226 struct Atom {
227 /// Atom Type.
232 constexpr Atom(uint16_t Type, uint16_t Form) : Type(Type), Form(Form) {}
240 // static constexpr Atom Atoms[];
297 ArrayRef<AppleAccelTableData::Atom> Atoms);
328 static constexpr Atom Atoms[] = {
329 Atom(dwarf::DW_ATOM_die_offset, dwarf::DW_FORM_data4)};
347 static constexpr Atom Atoms[] = {
348 Atom(dwarf::DW_ATOM_die_offset, dwarf::DW_FORM_data4)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp 28 struct Atom {
32 static raw_ostream &operator<<(raw_ostream &OS, const Atom &A) {
40 static Atom formatAtom(unsigned Atom) { return {Atom}; }
96 for (auto Atom : getAtomsDesc()) {
97 DWARFFormValue FormValue(Atom.second);
98 switch (Atom.first) {
120 for (auto Atom : getAtomsDesc()) {
121 DWARFFormValue FormValue(Atom.second)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCFragment.h 58 /// The atom this fragment is in, as represented by its defining symbol.
59 const MCSymbol *Atom;
99 const MCSymbol *getAtom() const { return Atom; }
100 void setAtom(const MCSymbol *Value) { Atom = Value; }

Completed in 47 milliseconds