Searched refs:Slot (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium/base/threading/
H A Dthread_local_storage_posix.cc11 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor) function in class:base::ThreadLocalStorage::Slot
17 bool ThreadLocalStorage::Slot::Initialize(TLSDestructorFunc destructor) {
29 void ThreadLocalStorage::Slot::Free() {
37 void* ThreadLocalStorage::Slot::Get() const {
42 void ThreadLocalStorage::Slot::Set(void* value) {
H A Dthread_local_storage.h29 class BASE_API Slot { class in class:base::ThreadLocalStorage
31 explicit Slot(TLSDestructorFunc destructor = NULL);
34 // It returns an uninitialized Slot.
35 explicit Slot(base::LinkerInitialized x) {} function in class:base::ThreadLocalStorage::Slot
68 DISALLOW_COPY_AND_ASSIGN(Slot);
H A Dthread_local_storage_win.cc59 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor) function in class:base::ThreadLocalStorage::Slot
65 bool ThreadLocalStorage::Slot::Initialize(TLSDestructorFunc destructor) {
82 void ThreadLocalStorage::Slot::Free() {
89 void* ThreadLocalStorage::Slot::Get() const {
97 void ThreadLocalStorage::Slot::Set(void* value) {
H A Dthread_local_storage_unittest.cc25 static ThreadLocalStorage::Slot tls_slot(LINKER_INITIALIZED);
63 ThreadLocalStorage::Slot slot;
/external/llvm/lib/CodeGen/
H A DLiveStackAnalysis.cpp1 //===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===//
29 "Live Stack Slot Analysis", false, false)
55 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) { argument
56 assert(Slot >= 0 && "Spill slot indice must be >= 0");
57 SS2IntervalMap::iterator I = S2IMap.find(Slot);
59 I = S2IMap.insert(I, std::make_pair(Slot,
60 LiveInterval(TargetRegisterInfo::index2StackSlot(Slot), 0.0F)));
61 S2RCMap.insert(std::make_pair(Slot, RC));
64 const TargetRegisterClass *OldRC = S2RCMap[Slot];
65 S2RCMap[Slot]
76 int Slot = I->first; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveStackAnalysis.h1 //===-- LiveStackAnalysis.h - Live Stack Slot Analysis ----------*- C++ -*-===//
57 LiveInterval &getOrCreateInterval(int Slot, const TargetRegisterClass *RC);
59 LiveInterval &getInterval(int Slot) { argument
60 assert(Slot >= 0 && "Spill slot indice must be >= 0");
61 SS2IntervalMap::iterator I = S2IMap.find(Slot);
66 const LiveInterval &getInterval(int Slot) const {
67 assert(Slot >= 0 && "Spill slot indice must be >= 0");
68 SS2IntervalMap::const_iterator I = S2IMap.find(Slot);
73 bool hasInterval(int Slot) const {
74 return S2IMap.count(Slot);
[all...]
H A DSlotIndexes.h1 //===- llvm/CodeGen/SlotIndexes.h - Slot indexes representation -*- C++ -*-===//
94 enum Slot { enum in class:llvm::SlotIndex
133 Slot getSlot() const {
134 return static_cast<Slot>(lie.getInt());
161 SlotIndex(const SlotIndex &li, Slot s) : lie(li.listEntry(), unsigned(s)) {
274 Slot s = getSlot();
294 Slot s = getSlot();
H A DMachineModuleInfo.h395 void setVariableDbgInfo(MDNode *N, unsigned Slot, DebugLoc Loc) { argument
396 VariableDbgInfo.push_back(std::make_pair(N, std::make_pair(Slot, Loc)));
/external/llvm/lib/Transforms/Utils/
H A DDemoteRegToStack.cpp30 AllocaInst *Slot; local
32 Slot = new AllocaInst(I.getType(), 0,
36 Slot = new AllocaInst(I.getType(), 0, I.getName()+".reg2mem",
59 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads,
67 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U);
92 new StoreInst(&I, Slot, InsertPt);
93 return Slot;
106 AllocaInst *Slot; local
108 Slot = new AllocaInst(P->getType(), 0,
112 Slot
[all...]
/external/skia/include/utils/
H A DSkJSON.h31 struct Slot;
173 Slot* fSlot;
177 Slot* fHead;
178 Slot* fTail;
180 const Slot* findSlot(const char name[], Type) const;
181 Slot* addSlot(Slot*);
/external/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp154 GlobalVariable *&Slot = CMap[Pair]; local
159 if (Slot == 0 || IsBetterCannonical(*GV, *Slot))
160 Slot = GV;
186 GlobalVariable *Slot = CMap[Pair]; local
188 if (!Slot || Slot == GV)
191 if (!Slot->hasUnnamedAddr() && !GV->hasUnnamedAddr())
195 Slot->setUnnamedAddr(false);
198 Replacements.push_back(std::make_pair(GV, Slot));
[all...]
/external/skia/src/utils/
H A DSkJSON.cpp53 struct SkJSON::Object::Slot { struct in class:SkJSON::Object
54 Slot(const char name[], Type type) { function in struct:SkJSON::Object::Slot
70 ~Slot();
75 Slot* fNext;
87 SkJSON::Object::Slot::~Slot() {
200 Slot* slot = fHead;
202 Slot* next = slot->fNext;
211 for (const Slot* slot = fHead; slot; slot = slot->fNext) {
217 SkJSON::Object::Slot* SkJSO
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNoReturnFunctionChecker.cpp87 unsigned Slot = 0; local
90 if (!Sel->getNameForSlot(Slot).equals(Arg))
92 ++Slot;
/external/chromium/net/base/
H A Ddns_reload_timer.cc75 static base::ThreadLocalStorage::Slot tls_index_ ;
82 base::ThreadLocalStorage::Slot DnsReloadTimer::tls_index_(
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h244 /// slot 'Slot'. Increment Slot past the number of slots used in the record.
246 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot,
248 if (Slot == Record.size()) return true;
249 unsigned ValNo = (unsigned)Record[Slot++];
255 } else if (Slot == Record.size()) {
259 unsigned TypeNo = (unsigned)Record[Slot++];
263 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot,
265 if (Slot == Record.size()) return true;
266 unsigned ValNo = (unsigned)Record[Slot
[all...]
/external/v8/src/
H A Dgdb-jit.cc75 class Slot { class in class:v8::internal::BASE_EMBEDDED
77 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } function in class:v8::internal::BASE_EMBEDDED::Slot
87 Slot<T> at(int i) {
88 return Slot<T>(w_, offset_ + sizeof(T) * i);
104 Slot<T> SlotAt(uintptr_t offset) {
106 return Slot<T>(this, offset);
110 Slot<T> CreateSlotHere() {
115 Slot<T> CreateSlotsHere(uint32_t count) {
174 template<typename T> friend class Slot;
195 virtual void WriteBody(Writer::Slot<THeade
[all...]
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp544 AggValueSlot Slot = EnsureSlot(E->getType()); local
545 CGF.EmitAggExpr(E->getInitializer(), Slot);
786 AggValueSlot Slot = EnsureSlot(E->getType()); local
787 CGF.EmitCXXConstructExpr(E, Slot);
792 AggValueSlot Slot = EnsureSlot(E->getType()); local
793 CGF.EmitLambdaExpr(E, Slot);
804 AggValueSlot Slot = EnsureSlot(T); local
805 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot.getAddr(), T));
810 AggValueSlot Slot = EnsureSlot(T); local
811 EmitNullInitializationToLValue(CGF.MakeAddrLValue(Slot
1119 CheckAggExprForMemSetUse(AggValueSlot &Slot, const Expr *E, CodeGenFunction &CGF) argument
1170 EmitAggExpr(const Expr *E, AggValueSlot Slot, bool IgnoreResult) argument
[all...]
H A DCGVTables.cpp374 ReturnValueSlot Slot; local
378 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified());
381 RValue RV = EmitCall(FnInfo, Callee, Slot, CallArgs, MD);
386 if (!ResultType->isVoidType() && Slot.isNull())
/external/chromium/base/metrics/
H A Dstats_table.h187 ThreadLocalStorage::Slot tls_index_;
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h850 unsigned Slot; member in class:llvm::EmitConvertToTargetMatcher
853 : Matcher(EmitConvertToTarget), Slot(slot) {}
855 unsigned getSlot() const { return Slot; }
864 return cast<EmitConvertToTargetMatcher>(M)->Slot == Slot;
866 virtual unsigned getHashImpl() const { return Slot; }
931 unsigned Slot; member in class:llvm::EmitNodeXFormMatcher
935 : Matcher(EmitNodeXForm), Slot(slot), NodeXForm(nodeXForm) {}
937 unsigned getSlot() const { return Slot; }
947 return cast<EmitNodeXFormMatcher>(M)->Slot
[all...]
H A DDAGISelMatcher.cpp229 OS.indent(indent) << "EmitConvertToTarget " << Slot << '\n';
243 << " Slot=" << Slot << '\n';
/external/llvm/lib/VMCore/
H A DAttributes.cpp241 const AttributeWithIndex &AttrListPtr::getSlot(unsigned Slot) const {
242 assert(AttrList && Slot < AttrList->Attrs.size() && "Slot # out of range!");
243 return AttrList->Attrs[Slot];
H A DAsmWriter.cpp525 /// the function incorporation state that affects get*Slot/Create*Slot. Function
1040 int Slot = Machine->getMetadataSlot(N); local
1041 if (Slot == -1)
1044 Out << '!' << Slot; local
1062 int Slot; local
1066 Slot = Machine->getGlobalSlot(GV);
1069 Slot = Machine->getLocalSlot(V);
1074 if (Slot == -1)
1076 Slot
1095 Out << Prefix << Slot; local
1324 int Slot = Machine.getMetadataSlot(NMD->getOperand(i)); local
1328 Out << '!' << Slot; local
1613 int Slot = Machine.getLocalSlot(BB); local
1615 Out << Slot; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp194 unsigned Slot = getSlot(RegNo);
195 return Slot < StackTop && Stack[Slot] == RegNo;
1345 unsigned Slot = getSlot(SrcFP);
1348 Stack[Slot] = SR;
1349 RegMap[SR] = Slot;
1367 unsigned Slot = getSlot(SrcFP);
1368 Stack[Slot] = DstFP;
1369 RegMap[DstFP] = Slot;
1385 unsigned Slot
[all...]
/external/chromium/base/
H A Dtracked_objects.h575 static base::ThreadLocalStorage::Slot tls_index_;

Completed in 882 milliseconds

12