Searched refs:m_index (Results 1 - 25 of 62) sorted by relevance

123

/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DReg.h55 : m_index(invalid())
60 : m_index(MacroAssembler::registerIndex(reg))
65 : m_index(MacroAssembler::registerIndex(reg))
72 result.m_index = index;
79 result.m_index = 0;
86 result.m_index = MacroAssembler::numberOfRegisters() + MacroAssembler::numberOfFPRegisters() - 1;
96 result.m_index = m_index + 1;
100 unsigned index() const { return m_index; }
102 bool isSet() const { return m_index !
168 uint8_t m_index; member in class:JSC::Reg
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DNodeWithIndex.h49 m_index = m_node->nodeIndex();
52 ASSERT(m_index == static_cast<int>(m_node->nodeIndex()));
53 return m_index;
59 mutable int m_index; member in class:WebCore::NodeWithIndex
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DUnlinkedInstructionStream.h47 bool atEnd() const { return m_index == m_stream.m_data.size(); }
55 unsigned m_index; member in class:JSC::UnlinkedInstructionStream::Reader
99 , m_index(0)
105 return m_stream.m_data.data()[m_index++];
110 const unsigned char* data = &m_stream.m_data.data()[m_index];
115 m_index++;
118 m_index++;
121 m_index += 2;
124 m_index += 2;
127 m_index
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSRExitJumpPlaceholder.h42 : m_index(std::numeric_limits<unsigned>::max())
50 : m_index(index)
55 bool operator!() const { return m_index == std::numeric_limits<unsigned>::max(); }
61 unsigned m_index; member in class:JSC::DFG::OSRExitJumpPlaceholder
H A DDFGOSRExitJumpPlaceholder.cpp41 jit.m_exitCompilationInfo[m_index].m_failureJumps = jumps;
H A DDFGRegisterBank.h232 return m_bank->nameAtIndex(m_index);
237 return m_bank->isLockedAtIndex(m_index);
242 m_bank->releaseAtIndex(m_index);
247 return BankInfo::toRegister(m_index);
259 ++m_index;
266 return m_index != other.m_index;
271 return m_index;
277 , m_index(index)
282 unsigned m_index;
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecompiler/
H A DLabelScope.h85 , m_index(0)
90 , m_index(index)
97 , m_index(other.m_index)
100 m_owner->at(m_index).ref();
106 other.m_owner->at(other.m_index).ref();
108 m_owner->at(m_index).deref();
110 m_index = other.m_index;
117 m_owner->at(m_index)
131 size_t m_index; member in class:JSC::LabelScopePtr
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPlatformGamepad.h41 unsigned index() const { return m_index; }
49 : m_index(index)
56 unsigned m_index; member in class:WebCore::PlatformGamepad
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DCurlCacheManager.cpp148 m_index.set(url, WTF::move(cacheEntry));
189 ASSERT(m_index.find(m_LRUEntryList.last()) != m_index.end());
210 auto it = m_index.find(url);
211 if (it != m_index.end() && it->value->isLoading())
220 m_index.set(url, WTF::move(cacheEntry));
234 auto it = m_index.find(url);
235 if (it != m_index.end())
244 auto it = m_index.find(url);
245 if (it != m_index
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DAssemblerBuffer.h118 , m_index(0)
124 return m_index + space <= m_storage.capacity();
135 return !(m_index & (alignment - 1));
154 return m_index;
159 return AssemblerLabel(m_index);
162 unsigned debugOffset() { return m_index; }
170 unsigned nextIndex = m_index + sizeof(IntegralType);
174 *reinterpret_cast_ptr<IntegralType*>(m_storage.buffer() + m_index) = value;
175 m_index = nextIndex;
182 *reinterpret_cast_ptr<IntegralType*>(m_storage.buffer() + m_index)
202 unsigned m_index; member in class:JSC::AssemblerBuffer
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DInsertion.h37 : m_index(index)
42 size_t index() const { return m_index; }
47 return m_index < other.m_index;
51 size_t m_index; member in class:WTF::Insertion
H A DSegmentedVector.h47 T& operator*() const { return m_vector.m_segments.at(m_segment)->at(m_index); }
48 T* operator->() const { return &m_vector.m_segments.at(m_segment)->at(m_index); }
53 ASSERT(m_index != SegmentSize);
54 ++m_index;
55 if (m_index >= m_vector.m_segments.at(m_segment)->size()) {
59 m_index = 0;
63 m_index = SegmentSize;
71 return m_index == other.m_index && m_segment == other.m_segment && &m_vector == &other.m_vector;
76 return m_index !
97 size_t m_index; member in class:WTF::SegmentedVectorIterator
[all...]
H A DThreadSpecific.h105 int m_index; member in class:WTF::ThreadSpecific
184 : m_index(-1)
190 m_index = InterlockedIncrement(&tlsKeyCount()) - 1;
191 if (m_index >= kMaxTlsKeySize)
193 tlsKeys()[m_index] = tlsKey;
200 TlsFree(tlsKeys()[m_index]);
206 Data* data = static_cast<Data*>(TlsGetValue(tlsKeys()[m_index]));
216 TlsSetValue(tlsKeys()[m_index], data);
240 TlsSetValue(tlsKeys()[data->owner->m_index], 0);
/macosx-10.10/WebCore-7600.1.25/Modules/gamepad/deprecated/
H A DGamepad.h50 unsigned index() const { return m_index; }
51 void index(unsigned val) { m_index = val; }
65 unsigned m_index; member in class:WebCore::Gamepad
H A DGamepad.cpp36 : m_index(0)
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedResourceClientWalker.h39 : m_clientSet(set), m_clientVector(set.size()), m_index(0)
51 while (m_index < size) {
52 CachedResourceClient* next = m_clientVector[m_index++];
64 size_t m_index; member in class:WebCore::CachedResourceClientWalker
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DMapData.h45 JSValue key() const { ASSERT(!atEnd()); return m_mapData->m_entries[m_index].key.get(); }
46 JSValue value() const { ASSERT(!atEnd()); return m_mapData->m_entries[m_index].value.get(); }
51 void finish() { m_index = std::numeric_limits<int32_t>::max(); }
61 bool atEnd() const { return static_cast<size_t>(m_index) >= static_cast<size_t>(m_mapData->m_size); }
64 int32_t m_index; member in struct:JSC::MapData::const_iterator
177 size_t index = m_index + 1;
181 m_index = index;
189 size_t index = m_index;
194 return static_cast<size_t>(m_index) < end;
199 , m_index(
[all...]
H A DPropertyTable.cpp65 , m_index(static_cast<unsigned*>(fastZeroedMalloc(dataSize())))
76 , m_index(static_cast<unsigned*>(fastMalloc(dataSize())))
82 memcpy(m_index, other.m_index, dataSize());
100 , m_index(static_cast<unsigned*>(fastZeroedMalloc(dataSize())))
132 fastFree(m_index);
/macosx-10.10/WebCore-7600.1.25/Modules/gamepad/
H A DGamepad.h49 unsigned index() const { return m_index; }
62 unsigned m_index; member in class:WebCore::Gamepad
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DDOMMimeType.cpp37 , m_index(index)
73 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);
H A DDOMMimeType.h46 const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_index]; }
50 unsigned m_index; member in class:WebCore::DOMMimeType
H A DDOMPlugin.h51 const PluginInfo& pluginInfo() const { return m_pluginData->plugins()[m_index]; }
55 unsigned m_index; member in class:WebCore::DOMPlugin
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/
H A DInbandTextTrackPrivateAVF.h50 virtual int trackIndex() const override { return m_index; }
51 void setTextTrackIndex(int index) { m_index = index; }
97 int m_index; member in class:WebCore::InbandTextTrackPrivateAVF
/macosx-10.10/JavaScriptCore-7600.1.17/yarr/
H A DYarrParser.h237 , m_index(0)
715 return m_index;
720 m_index = state;
725 ASSERT(m_index <= m_size);
726 return m_index == m_size;
731 ASSERT(m_index < m_size);
732 return m_data[m_index];
748 ASSERT(m_index < m_size);
749 return m_data[m_index++];
781 if (atEndOfPattern() || (m_data[m_index] !
[all...]
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DKeyframeAnimation.h54 int index() const { return m_index; }
55 void setIndex(int i) { m_index = i; }
96 int m_index; member in class:WebCore::final

Completed in 141 milliseconds

123