HomeSort by relevance Sort by last modified time
    Searched refs:Slot (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/chromium_org/v8/src/
gdb-jit.cc 56 class Slot {
58 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
68 Slot<T> at(int i) {
69 return Slot<T>(w_, offset_ + sizeof(T) * i);
85 Slot<T> SlotAt(uintptr_t offset) {
87 return Slot<T>(this, offset);
91 Slot<T> CreateSlotHere() {
96 Slot<T> CreateSlotsHere(uint32_t count) {
155 template<typename T> friend class Slot;
176 virtual void WriteBody(Writer::Slot<THeader> header, Writer* writer)
    [all...]
  /external/chromium_org/base/metrics/
stats_table.h 82 // Get the slot id for the calling thread. Returns 0 if no
83 // slot is assigned.
95 // On success, returns the slot id for this thread. On failure,
114 // the counter id and slot id.
178 // Locates a free slot in the table. Returns a number > 0 on success,
213 ThreadLocalStorage::Slot tls_index_;
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.cc 48 // This must be called only once, so the slot must be empty.
53 base::ThreadLocalStorage::Slot* slot = new base::ThreadLocalStorage::Slot(); local
54 PluginGlobals::Get()->set_msg_loop_slot(slot);
56 slot->Set(this);
75 base::ThreadLocalStorage::Slot* slot = globals->msg_loop_slot(); local
76 if (!slot) {
77 slot = new base::ThreadLocalStorage::Slot(&ReleaseMessageLoop)
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 723 // Now add the attribute into the correct slot. There may already be an
776 // Now remove the attribute from the correct slot. There may already be an
898 AttributeSet::iterator AttributeSet::begin(unsigned Slot) const {
901 return pImpl->begin(Slot);
904 AttributeSet::iterator AttributeSet::end(unsigned Slot) const {
907 return pImpl->end(Slot);
921 unsigned AttributeSet::getSlotIndex(unsigned Slot) const {
922 assert(pImpl && Slot < pImpl->getNumAttributes() &&
923 "Slot # out of range!");
924 return pImpl->getSlotIndex(Slot);
    [all...]
AsmWriter.h 101 void writeMDNode(unsigned Slot, const MDNode *Node);
118 // which slot it occupies.
AsmWriter.cpp 298 // SlotTracker Class: Enumerate slot numbers for unnamed values
300 /// This class provides computation of slot numbers for LLVM Assembly writing.
304 /// ValueMap - A mapping of Values to slot numbers.
308 /// TheModule - The module for which we are holding slot numbers.
311 /// TheFunction - The function for which we are holding slot numbers.
315 /// mMap - The slot map for the module level data.
319 /// fMap - The slot map for the function level data.
327 /// asMap - The slot map for attribute sets.
336 /// Return the slot number of the specified value in it's type
374 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table
    [all...]
  /external/chromium_org/base/threading/
thread_local_storage.cc 14 // pointer to the destructor for each slot. We keep this array of pointers in a
16 // We use the single OS-level TLS slot (giving us one pointer per thread) to
26 // assigned to the instance variable slot_ in a ThreadLocalStorage::Slot
28 // instance of ThreadLocalStorage::Slot has been freed (i.e., destructor called,
40 // An array of destructor function pointers for the slots. If a slot has a
68 // another TLS slot.
134 // Try to destroy the first-created-slot (which is slot 1) in our last
135 // destructor call. That user was able to function, and define a slot with
142 for (int slot = last_used_tls_key; slot > 0; --slot)
    [all...]
thread_local_storage_unittest.cc 76 ThreadLocalStorage::Slot slot; local
77 slot.Set(reinterpret_cast<void*>(123));
78 int value = reinterpret_cast<intptr_t>(slot.Get());
88 // unsynchronized with the following users of the same TSD slot. This results
  /external/chromium_org/mojo/services/html_viewer/
blink_platform_impl.h 80 base::ThreadLocalStorage::Slot current_thread_slot_;
  /external/llvm/include/llvm/IR/
Attributes.h 324 iterator begin(unsigned Slot) const;
325 iterator end(unsigned Slot) const;
357 /// \brief Return the index for the given slot.
358 unsigned getSlotIndex(unsigned Slot) const;
360 /// \brief Return the attributes at the given slot.
361 AttributeSet getSlotAttributes(unsigned Slot) const;
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListItemFactory.java 77 public enum Slot {
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) {
104 for (Slot slot : slots) {
105 switch (slot) {
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 173 unsigned Slot;
406 void setVariableDbgInfo(MDNode *N, unsigned Slot, DebugLoc Loc) {
407 VariableDbgInfo Info = { N, Slot, Loc };
SlotIndexes.h 1 //===- llvm/CodeGen/SlotIndexes.h - Slot indexes representation -*- C++ -*-===//
34 /// This class represents an entry in the slot index list held in the
95 enum Slot {
98 /// def slot of PHI-defs.
101 /// Early-clobber register use/def slot. A live range defined at
103 /// Slot_Register. Also used as the kill slot for live ranges tied to an
107 /// Normal register use/def slot. Normal instructions kill and define
108 /// register live ranges at this slot.
111 /// Dead def kill point. Kill slot for a live range that is defined by
121 SlotIndex(IndexListEntry *entry, unsigned slot)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 239 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
270 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
720 /// MatchNumber - This is the recorded nodes slot that contains the node we
727 /// FirstResult - This is the first slot in the RecordedNodes list that the
908 unsigned Slot;
910 EmitConvertToTargetMatcher(unsigned slot)
911 : Matcher(EmitConvertToTarget), Slot(slot) {}
913 unsigned getSlot() const { return Slot; }
922 return cast<EmitConvertToTargetMatcher>(M)->Slot == Slot
    [all...]
DAGISelMatcher.cpp 247 OS.indent(indent) << "EmitConvertToTarget " << Slot << '\n';
261 << " Slot=" << Slot << '\n';
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 77 public enum Slot {
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) {
104 for (Slot slot : slots) {
105 switch (slot) {
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 38 /// We want to use 'dest' as the return slot except under two
40 /// - The destination slot requires garbage collection, so we
42 /// - The destination slot is potentially aliased.
243 /// directly into the return value slot. Otherwise, a final move
544 AggValueSlot Slot = EnsureSlot(E->getType());
545 CGF.EmitAggExpr(E->getInitializer(), Slot);
    [all...]
CGVTables.cpp 272 // Determine whether we have a return value slot to use.
275 ReturnValueSlot Slot;
279 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified());
282 RValue RV = EmitCall(*CurFnInfo, Callee, Slot, CallArgs, MD);
289 if (!ResultType->isVoidType() && Slot.isNull())
  /external/llvm/lib/Target/R600/
R600MachineScheduler.cpp 286 // LDS src registers cannot be used in the Trans slot.
348 DEBUG(dbgs() << "New Slot\n");
349 assert (OccupedSlotsMask && "Slot wasn't filled");
357 void R600SchedStrategy::AssignSlot(MachineInstr* MI, unsigned Slot) {
372 // Constrains the regclass of DestReg to assign it to Slot
373 switch (Slot) {
389 SUnit *R600SchedStrategy::AttemptFillSlot(unsigned Slot, bool AnyAlu) {
391 SUnit *SlotedSU = PopInst(AvailableAlus[IndexToID[Slot]], AnyAlu);
396 AssignSlot(UnslotedSU->getInstr(), Slot);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 124 unsigned Slot = 0;
125 for (unsigned e = Vals.size(); e - Slot > 2; Slot += 2, e += 1) {
128 SDValue LHS = Vals[Slot];
129 SDValue RHS = Vals[Slot + 1];
140 Lo = Vals[Slot++];
141 Hi = Vals[Slot++];
162 // Emit a store to the stack slot.
166 // Load the first half from the stack slot.
176 // Load the second half from the stack slot
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 136 unsigned Stack[8]; // FP<n> Registers in each stack slot...
150 // in fixed stack slot positions. This is handled by copying FP registers
189 /// getSlot - Return the stack slot number a particular register number is
198 unsigned Slot = getSlot(RegNo);
199 return Slot < StackTop && Stack[Slot] == RegNo;
248 // Swap stack slot contents.
288 /// otherwise we store the current top-of-stack into the specified slot,
853 /// current top-of-stack into the specified slot, then pop the top of stack.
    [all...]
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 58 // Name of metadata node where RS object slot info resides (should be
163 llvm::StringRef Slot =
166 if (Slot.getAsInteger(10, USlot)) {
167 ALOGE("Non-integer object slot value '%s'", Slot.str().c_str());
457 ALOGE("Could not populate object slot metadata");
  /external/chromium_org/content/child/
blink_platform_impl.h 177 base::ThreadLocalStorage::Slot current_thread_slot_;
  /external/chromium_org/v8/test/mjsunit/compiler/
short-circuit.js 65 // Slot assignment in value/test context.
69 // Slot assignment in test/value context.
  /external/deqp/framework/delibs/depool/
dePoolHashSet.h 190 const HASHTYPENAME##Slot* slot = hash->slotTable[slotNdx]; \
191 while (slot) \
194 for (elemNdx = 0; elemNdx < slot->numUsed; elemNdx++) \
197 KEYARRAYTYPENAME##_set(keyArray, arrayNdx, slot->keys[elemNdx]); \
199 VALUEARRAYTYPENAME##_set(valueArray, arrayNdx, slot->values[elemNdx]); \
202 slot = slot->nextSlot; \

Completed in 1459 milliseconds

12 3 4