HomeSort by relevance Sort by last modified time
    Searched refs:Slot (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium/base/threading/
thread_local_storage_posix.cc 11 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor)
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) {
thread_local_storage.h 29 class BASE_API Slot {
31 explicit Slot(TLSDestructorFunc destructor = NULL);
34 // It returns an uninitialized Slot.
35 explicit Slot(base::LinkerInitialized x) {}
37 // Set up the TLS slot. Called by the constructor.
39 // this object. If set to NULL, no cleanup is done for this TLS slot.
43 // Free a previously allocated TLS 'slot'.
44 // If a destructor was set for this slot, removes
49 // Get the thread-local value stored in slot 'slot'
    [all...]
thread_local_storage_win.cc 26 // unallocated TLS slot.
30 // a slot has a destructor, it will be stored in its corresponding
59 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor)
65 bool ThreadLocalStorage::Slot::Initialize(TLSDestructorFunc destructor) {
69 // Grab a new slot.
82 void ThreadLocalStorage::Slot::Free() {
89 void* ThreadLocalStorage::Slot::Get() const {
97 void ThreadLocalStorage::Slot::Set(void* value) {
115 for (int slot = 0; slot < tls_max_; slot++)
    [all...]
  /external/llvm/lib/CodeGen/
LiveStackAnalysis.cpp 1 //===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===//
10 // This file implements the live stack slot analysis pass. It is analogous to
29 "Live Stack Slot Analysis", false, false)
32 "Live Stack Slot Analysis", false, false)
58 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) {
59 assert(Slot >= 0 && "Spill slot indice must be >= 0");
60 SS2IntervalMap::iterator I = S2IMap.find(Slot);
62 I = S2IMap.insert(I, std::make_pair(Slot,
63 LiveInterval(TargetRegisterInfo::index2StackSlot(Slot), 0.0F)))
    [all...]
StackColoring.cpp 17 // 1. Allow merging multiple small slots into a single larger slot at different
77 STATISTIC(StackSlotMerged, "Number of stack slot merged.");
93 /// for a different stack slot.
114 /// Maps liveness intervals for each slot.
131 // We use -1 to denote a uninteresting slot. Place these slots at the end.
178 /// which access that frame slot.
267 unsigned Slot = MI.getIndex();
271 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot);
273 DEBUG(dbgs()<<"Found a lifetime marker for slot #"<<Slot<<
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveStackAnalysis.h 1 //===-- LiveStackAnalysis.h - Live Stack Slot Analysis ----------*- C++ -*-===//
10 // This file implements the live stack slot analysis pass. It is analogous to
34 /// S2IMap - Stack slot indices to live interval mapping.
39 /// S2RCMap - Stack slot indices to register class mapping.
57 LiveInterval &getOrCreateInterval(int Slot, const TargetRegisterClass *RC);
59 LiveInterval &getInterval(int Slot) {
60 assert(Slot >= 0 && "Spill slot indice must be >= 0");
61 SS2IntervalMap::iterator I = S2IMap.find(Slot);
62 assert(I != S2IMap.end() && "Interval does not exist for stack slot");
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 149 // Type of slots: each slot can be either a count, or a PC value
150 typedef uintptr_t Slot;
154 Slot count; // Number of hits
155 Slot depth; // Stack depth
156 Slot stack[kMaxStackDepth]; // Stack contents
165 Slot* evict_; // evicted entries
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 149 // Type of slots: each slot can be either a count, or a PC value
150 typedef uintptr_t Slot;
154 Slot count; // Number of hits
155 Slot depth; // Stack depth
156 Slot stack[kMaxStackDepth]; // Stack contents
165 Slot* evict_; // evicted entries
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListButtonsDiagonalAcrossItems.java 20 import static android.util.ListItemFactory.Slot;
52 final Slot slot = position == 0 ? Slot.Left : local
53 (position == 1 ? Slot.Middle : Slot.Right);
55 parent.getContext(), desiredHeight, slot);
ListHorizontalFocusWithinItemWins.java 20 import static android.util.ListItemFactory.Slot;
56 context, desiredHeight, Slot.Left, Slot.Right);
59 context, desiredHeight, Slot.Middle);
  /external/chromium_org/base/threading/
thread_local_storage.h 37 // ThreadLocalStorage::Slot (below) instead.
39 // Set up the TLS slot. Called by the constructor.
41 // this object. If set to NULL, no cleanup is done for this TLS slot.
45 // Free a previously allocated TLS 'slot'.
46 // If a destructor was set for this slot, removes
51 // Get the thread-local value stored in slot 'slot'.
55 // Set the thread-local value stored in slot 'slot' to
73 class BASE_EXPORT Slot : public StaticSlot
    [all...]
thread_local_storage_posix.cc 11 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor) {
  /external/llvm/lib/Transforms/Utils/
DemoteRegToStack.cpp 20 /// Instruction and replaces it with a slot in the stack frame, allocated via
23 /// the alloca inserted to create a stack slot for I.
31 // Create a stack slot to hold the value.
32 AllocaInst *Slot;
34 Slot = new AllocaInst(I.getType(), 0,
38 Slot = new AllocaInst(I.getType(), 0, I.getName()+".reg2mem",
42 // Change all of the users of the instruction to read from the stack slot.
61 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads,
69 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U);
75 // Insert stores of the computed value into the stack slot. We have to b
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkJSON.h 31 struct Slot;
39 * Create a new slot with the specified name and value. The name
47 * Create a new slot with the specified name and value. The name
55 * Create a new slot with the specified name and value. Both parameters
62 * Create a new slot with the specified name and value. The name
68 * Create a new slot with the specified name and value. The name
74 * Create a new slot with the specified name and value. The name
86 * Returns true if a slot matching the name and Type is found.
97 * Finds the first slot matching the name and Type and removes it.
173 Slot* fSlot
    [all...]
  /external/skia/include/utils/
SkJSON.h 31 struct Slot;
39 * Create a new slot with the specified name and value. The name
47 * Create a new slot with the specified name and value. The name
55 * Create a new slot with the specified name and value. Both parameters
62 * Create a new slot with the specified name and value. The name
68 * Create a new slot with the specified name and value. The name
74 * Create a new slot with the specified name and value. The name
86 * Returns true if a slot matching the name and Type is found.
97 * Finds the first slot matching the name and Type and removes it.
173 Slot* fSlot
    [all...]
  /external/llvm/lib/Transforms/IPO/
ConstantMerge.cpp 155 GlobalVariable *&Slot = CMap[Pair];
160 if (Slot == 0 || IsBetterCannonical(*GV, *Slot))
161 Slot = GV;
187 GlobalVariable *Slot = CMap[Pair];
189 if (!Slot || Slot == GV)
192 if (!Slot->hasUnnamedAddr() && !GV->hasUnnamedAddr())
196 Slot->setUnnamedAddr(false);
199 Replacements.push_back(std::make_pair(GV, Slot));
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 43 /// The key of this vector is the placeholder constant, the value is the slot
259 /// slot 'Slot'. Increment Slot past the number of slots used in the record.
261 bool getValueTypePair(SmallVectorImpl<uint64_t> &Record, unsigned &Slot,
263 if (Slot == Record.size()) return true;
264 unsigned ValNo = (unsigned)Record[Slot++];
273 } else if (Slot == Record.size()) {
277 unsigned TypeNo = (unsigned)Record[Slot++];
282 /// popValue - Read a value out of the specified record from slot 'Slot'
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
FGNode.cpp 36 void FGNode::addSlot(Slot pSlot)
  /external/llvm/lib/IR/
AttributeImpl.h 191 /// \brief Return a pointer to the IndexAttrPair for the specified slot.
192 const IndexAttrPair *getNode(unsigned Slot) const {
193 return reinterpret_cast<const IndexAttrPair *>(this + 1) + Slot;
223 /// \brief Get the index of the given "slot" in the AttrNodes list. This index
227 unsigned getSlotIndex(unsigned Slot) const {
228 return getNode(Slot)->first;
231 /// \brief Retrieve the attributes for the given "slot" in the AttrNode list.
232 /// \p Slot is an index into the AttrNodes list, not the index of the return /
234 AttributeSet getSlotAttributes(unsigned Slot) const {
235 return AttributeSet::get(Context, *getNode(Slot));
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
FGNode.h 32 typedef ResolveInfo* Slot;
39 typedef std::vector<Slot> SlotListType;
53 void addSlot(Slot pSlot);
FragmentGraph.h 39 typedef FGNode::Slot Slot;
60 bool connect(Signal pSignal, Slot pSlot);
61 bool connect(FGNode& pFrom, Slot pSlot);
  /external/chromium_org/third_party/skia/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
54 Slot(const char name[], Type type) {
55 LEAK_CODE(SkDebugf(" slot[%d]\n", gSlotCount++);)
70 ~Slot();
75 Slot* fNext;
87 SkJSON::Object::Slot::~Slot() {
102 LEAK_CODE(SkASSERT(gSlotCount > 0); SkDebugf("~slot[%d]\n", --gSlotCount);)
200 Slot* slot = fHead local
272 const Slot* slot = this->findSlot(name, kObject); local
283 const Slot* slot = this->findSlot(name, kArray); local
294 const Slot* slot = this->findSlot(name, kString); local
305 const Slot* slot = this->findSlot(name, kInt); local
316 const Slot* slot = this->findSlot(name, kFloat); local
327 const Slot* slot = this->findSlot(name, kBool); local
340 Slot* slot = fHead; local
    [all...]
  /external/skia/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
54 Slot(const char name[], Type type) {
55 LEAK_CODE(SkDebugf(" slot[%d]\n", gSlotCount++);)
70 ~Slot();
75 Slot* fNext;
87 SkJSON::Object::Slot::~Slot() {
102 LEAK_CODE(SkASSERT(gSlotCount > 0); SkDebugf("~slot[%d]\n", --gSlotCount);)
200 Slot* slot = fHead local
272 const Slot* slot = this->findSlot(name, kObject); local
283 const Slot* slot = this->findSlot(name, kArray); local
294 const Slot* slot = this->findSlot(name, kString); local
305 const Slot* slot = this->findSlot(name, kInt); local
316 const Slot* slot = this->findSlot(name, kFloat); local
327 const Slot* slot = this->findSlot(name, kBool); local
340 Slot* slot = fHead; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 86 unsigned Slot = 0;
89 if (!Sel->getNameForSlot(Slot).equals(Arg))
91 ++Slot;
  /device/generic/goldfish/opengl/system/gralloc/
Android.mk 13 # Need to access the special OPENGL TLS Slot

Completed in 470 milliseconds

1 2 3 4