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

  /external/llvm/unittests/MC/
MCAtomTest.cpp 19 MCDataAtom *Atom = M.createDataAtom(0, 0);
20 EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
21 Atom->addData(0);
22 EXPECT_EQ(uint64_t(0), Atom->getEndAddr());
23 Atom->addData(1);
24 EXPECT_EQ(uint64_t(1), Atom->getEndAddr());
25 Atom->addData(2);
26 EXPECT_EQ(uint64_t(2), Atom->getEndAddr());
27 EXPECT_EQ(size_t(3), Atom->getData().size());
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 112 // is as a list of atoms (atom_count) where each atom contains a type
125 struct Atom {
129 LLVM_CONSTEXPR Atom(uint16_t type, uint16_t form)
143 SmallVector<Atom, 1> Atoms;
145 TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0)
247 DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
  /external/llvm/lib/MC/MCAnalysis/
MCModuleYAML.cpp 99 struct Atom {
120 std::vector<Atom> Atoms;
130 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MCModuleYAML::Atom)
142 template <> struct MappingTraits<MCModuleYAML::Atom> {
143 static void mapping(IO &IO, MCModuleYAML::Atom &A);
182 void MappingTraits<MCModuleYAML::Atom>::mapping(IO &IO, MCModuleYAML::Atom &A) {
311 MCModuleYAML::Atom &A = YAMLModule.Atoms.back();
330 llvm_unreachable("Unknown atom type.");
360 typedef std::vector<MCModuleYAML::Atom>::const_iterator AtomIt
    [all...]
MCObjectDisassembler.cpp 159 MCTextAtom *Atom;
165 BBInfo() : Atom(nullptr), BB(nullptr) {}
207 BBInfos[TA->getBeginAddr()].Atom = TA;
233 BBInfos[NewAtom->getBeginAddr()].Atom = NewAtom;
262 if (!BBI.Atom) continue;
264 MCFunction &MCFN = *Module->createFunction(BBI.Atom->getName());
271 if (!BBI->Atom)
273 BBI->BB = &MCFN.createBlock(*BBI->Atom);
305 // - check if atom exists there
306 // - if middle of atom
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
HashedNameToDIE.h 207 struct Atom
212 Atom (uint16_t t = eAtomTypeNULL, dw_form_t f = 0) :
219 typedef std::vector<Atom> AtomArray;
228 GetAtomTypeName (uint16_t atom)
230 switch (atom)
259 // and then define the atom type for the array, in this case
293 atoms.push_back (Atom(type, form));
301 assert (!"Unhandled atom form");
385 // Add an extra count to the atoms size for the zero termination Atom that gets
387 return sizeof(die_base_offset) + sizeof(uint32_t) + atoms.size() * sizeof(Atom);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 482 class Atom;
486 friend class Atom;
508 class Atom {
510 Atom();
511 Atom(const Atom&);
512 ~Atom();
513 Atom& operator=(const Atom&);
530 void ShallowCopy(Atom&) const
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 562 class Atom;
567 friend class Atom;
587 class Atom
590 Atom();
591 Atom(const Atom&);
592 ~Atom();
593 Atom& operator=(const Atom&);
608 void ShallowCopy(Atom&) const
    [all...]
  /external/libvpx/libwebm/
mkvparser.cpp     [all...]
mkvparser.hpp 482 class Atom;
486 friend class Atom;
508 class Atom {
510 Atom();
511 Atom(const Atom&);
512 ~Atom();
513 Atom& operator=(const Atom&);
530 void ShallowCopy(Atom&) const
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
autopep8.py     [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 70 /// Atom - The atom this fragment is in, as represented by it's defining
72 MCSymbolData *Atom;
101 MCSymbolData *getAtom() const { return Atom; }
102 void setAtom(MCSymbolData *Value) { Atom = Value; }
983 /// Find the symbol which defines the atom containing the given symbol, or
990 /// defining a separate atom.
    [all...]
  /external/chromium_org/v8/src/
jsregexp.cc 131 // than the code used for atom matches.
193 // Parse-tree is a single atom that is equal to the pattern.
200 RegExpAtom* atom = parse_result.tree->AsAtom(); local
201 Vector<const uc16> atom_pattern = atom->data();
230 case JSRegExp::ATOM:
242 // RegExp Atom implementation: Simple string search using indexOf.
250 JSRegExp::ATOM,
699 if (regexp_->TypeTag() == JSRegExp::ATOM) {
702 // There is no distinction between interpreted and native for atom regexps.
5869 RegExpAtom* atom = text.atom(); local
    [all...]

Completed in 509 milliseconds