/external/llvm/lib/MC/ |
D | MCModule.cpp | 31 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) { in remap() argument 33 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Atom->Begin); in remap() 35 assert(*I == Atom && "Previous atom mapping was invalid!"); in remap() 39 OffsetMap.insert(NewBegin, NewEnd, Atom); in remap() 42 Atom->Begin = NewBegin; in remap() 43 Atom->End = NewEnd; in remap()
|
/external/chromium/chrome/browser/chromeos/ |
D | wm_ipc.h | 17 typedef unsigned long Atom; typedef 135 std::map<AtomType, Atom> type_to_atom_; 136 std::map<Atom, std::string> atom_to_string_; 139 Atom wm_message_atom_;
|
D | wm_ipc.cc | 39 bool SetIntProperty(XID xid, Atom xatom, const std::vector<int>& values) { in SetIntProperty() 150 static Atom wm_s0_atom = type_to_atom_[ATOM_WM_S0]; in HandleNonChromeClientMessageEvent() 153 static_cast<Atom>(event.data.l[1]) == wm_s0_atom) { in HandleNonChromeClientMessageEvent() 174 scoped_array<Atom> atoms(new Atom[kNumAtoms]); in WmIpc()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfAccelTable.h | 149 struct Atom { struct 153 Atom(AtomType type, uint16_t form) : type(type), form(form) {} in Atom() argument 169 SmallVector<Atom, 1> Atoms; argument 171 TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0) 271 DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
|
D | DwarfAccelTable.cpp | 27 const char *DwarfAccelTable::Atom::AtomTypeString(enum AtomType AT) { in AtomTypeString() 40 DwarfAccelTable::DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom> atomList) : in DwarfAccelTable() 128 Atom A = HeaderData.Atoms[i]; in EmitHeader() 129 Asm->OutStreamer.AddComment(Atom::AtomTypeString(A.type)); in EmitHeader()
|
/external/webkit/Source/JavaScriptCore/heap/ |
D | MarkedBlock.h | 87 typedef char Atom[atomSize]; typedef 90 Atom* atoms(); 107 inline MarkedBlock::Atom* MarkedBlock::atoms() in atoms() 109 return reinterpret_cast<Atom*>(this); in atoms()
|
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
D | Xvlib.h | 114 Atom attribute; /* atom that identifies attribute */ 308 Atom /* attribute */, 317 Atom /* attribute */,
|
D | Xvproto.h | 64 #define Atom CARD32 macro 321 Atom attribute B32; 331 Atom attribute B32; 585 Atom attribute B32; 601 #undef Atom
|
/external/chromium/chrome/browser/ |
D | fullscreen_linux.cc | 117 static Atom desktop_atom = gdk_x11_get_xatom_by_name_for_display( in IsTopMostWindowFullScreen() 120 std::vector<Atom> atom_properties; in IsTopMostWindowFullScreen()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | PlatformScreenGtk.cpp | 126 Atom xproperty = gdk_x11_get_xatom_by_name_for_display(display, "_NET_WORKAREA"); in screenAvailableRect() 128 Atom retType; in screenAvailableRect()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | tytypes.c | 98 te->Te.Atom.valueKnown ? "" : "unknown:", in ML_() 99 te->Te.Atom.value, te->Te.Atom.name); in ML_() 492 r = Bool__cmp(te1->Te.Atom.valueKnown, te2->Te.Atom.valueKnown); in ML_() 494 r = Long__cmp(te1->Te.Atom.value, te2->Te.Atom.value); in ML_() 496 r = Asciiz__cmp(te1->Te.Atom.name, te2->Te.Atom.name); in ML_() 599 if (te->Te.Atom.name) ML_(dinfo_free)(te->Te.Atom.name); in ML_()
|
D | priv_tytypes.h | 80 } Atom; member
|
/external/llvm/include/llvm/MC/ |
D | MCModule.h | 46 void remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd);
|
D | MCAssembler.h | 76 MCSymbolData *Atom; variable 105 MCSymbolData *getAtom() const { return Atom; } in getAtom() 106 void setAtom(MCSymbolData *Value) { Atom = Value; } in setAtom()
|
/external/llvm/test/CodeGen/X86/ |
D | phys-reg-local-regalloc.ll | 4 ; CHECKed instructions should be the same with or without -O0 except on Intel Atom due to instructi… 20 ; On Intel Atom the scheduler moves a movl instruction
|
D | v-binop-widen2.ll | 9 ; Scheduler causes a different instruction order to be produced on Intel Atom
|
D | vec_shuffle-26.ll | 21 ; Different instruction order for Atom.
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
D | SDL_x11sym.h | 29 SDL_X11_SYM(int,XChangeProperty,(Display* a,Window b,Atom c,Atom d,int e,int f,_Xconst unsigned cha… 49 SDL_X11_SYM(int,XDeleteProperty,(Display* a,Window b,Atom c),(a,b,c),return) 75 SDL_X11_SYM(Atom,XInternAtom,(Display* a,_Xconst char* b,Bool c),(a,b,c),return) 105 SDL_X11_SYM(void,XSetTextProperty,(Display* a,Window b,XTextProperty* c,Atom d),(a,b,c,d),) 107 SDL_X11_SYM(Status,XSetWMProtocols,(Display* a,Window b,Atom* c,int d),(a,b,c,d),return)
|
D | SDL_x11video.h | 64 Atom WM_DELETE_WINDOW; /* "close-window" protocol atom */
|
D | SDL_x11wm.c | 250 Atom _NET_WM_NAME = 0; in X11_SetCaptionNoLock() 251 Atom _NET_WM_ICON_NAME = 0; in X11_SetCaptionNoLock()
|
D | SDL_x11video.c | 434 Atom _NET_WM_PID = XInternAtom(SDL_Display, "_NET_WM_PID", False); in create_aux_windows() 435 Atom WM_CLIENT_MACHINE = XInternAtom(SDL_Display, "WM_CLIENT_MACHINE", False); in create_aux_windows() 831 Atom WM_HINTS; in X11_SetSizeHints() 885 Atom WM_HINTS; in X11_SetSizeHints()
|
/external/ceres-solver/data/nist/ |
D | Roszman1.dat | 18 Quantum Defects for Sulfur I Atom.
|
/external/skia/legacy/src/utils/unix/ |
D | SkOSWindow_Unix.cpp | 88 Atom myAtom(0); in post_linuxevent()
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebNSDataExtras.m | 131 // We are trying to identify RSS or Atom. RSS has a top-level 134 // for a <channel> element. In the case of an Atom file, a
|
/external/llvm/lib/Target/X86/ |
D | X86ScheduleAtom.td | 1 //===- X86ScheduleAtom.td - X86 Atom Scheduling Definitions -*- tablegen -*-==// 10 // This file defines the itinerary class data for the Intel Atom (Bonnell) 521 // Atom machine model.
|