Searched refs:m_next (Results 1 - 25 of 131) sorted by relevance

123456

/macosx-10.10/WTF-7600.1.24/wtf/
H A DStringPrintStream.cpp38 , m_next(0)
53 ASSERT_WITH_SECURITY_IMPLICATION(m_next < m_size);
54 ASSERT(!m_buffer[m_next]);
60 vsnprintf(m_buffer + m_next, m_size - m_next, format, firstPassArgList);
65 if (m_next + numberOfBytesThatWouldHaveBeenWritten <= m_size) {
66 m_next += numberOfBytesNotIncludingTerminatorThatWouldHaveBeenWritten;
70 increaseSize(m_next + numberOfBytesThatWouldHaveBeenWritten);
73 vsnprintf(m_buffer + m_next, m_size - m_next, forma
[all...]
H A DBag.h38 Node* m_next; member in class:WTF::Bag::Node
51 m_head = current->m_next;
59 newNode->m_next = m_head;
78 m_node = m_node->m_next;
H A DBumpPointerAllocator.h102 , m_next(0)
134 while (m_next) {
135 BumpPointerPool* nextNext = m_next->m_next;
136 m_next->destroy();
137 m_next = nextNext;
152 BumpPointerPool* pool = previousPool->m_next;
158 previousPool->m_next = pool;
196 BumpPointerPool* m_next; member in class:WTF::BumpPointerPool
H A DSentinelLinkedList.h48 : m_next(0)
54 : m_next(0)
60 void setNext(BasicRawSentinelNode* next) { m_next = next; }
63 T* next() { return static_cast<T*>(m_next); }
67 ASSERT(!!m_prev == !!m_next);
74 BasicRawSentinelNode* m_next; member in class:WTF::BasicRawSentinelNode
/macosx-10.10/WebCore-7600.1.25/css/
H A DDashboardRegion.h37 && m_next ? other.m_next && m_next->equals(*other.m_next) : !other.m_next;
40 RefPtr<DashboardRegion> m_next; member in class:WebCore::DashboardRegion
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DSamplingCounter.h60 // Set m_next to point to the head of the chain, and inform whatever is
62 m_next = s_abstractSamplingCounterChain;
63 s_abstractSamplingCounterChain->m_referer = &m_next;
71 AbstractSamplingCounter* m_next; member in class:JSC::AbstractSamplingCounter
133 if (!m_next)
164 // and m_next should know that this node is the previous node in the list.
166 ASSERT(m_next->m_referer == &m_next);
167 // Remove this node from the list, and inform m_next that we have done so.
168 m_next
[all...]
H A DSamplingCounter.cpp39 for (AbstractSamplingCounter* currCounter = s_abstractSamplingCounterChain; (currCounter != &s_abstractSamplingCounterChainEnd); currCounter = currCounter->m_next)
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DShadowData.cpp36 , m_next(o.m_next ? std::make_unique<ShadowData>(*o.m_next) : nullptr)
42 if ((m_next && !o.m_next) || (!m_next && o.m_next)
43 || (m_next && o.m_next && *m_next !
[all...]
H A DFillLayer.cpp76 : m_next(o.m_next ? std::make_unique<FillLayer>(*o.m_next) : nullptr)
111 for (std::unique_ptr<FillLayer> next = WTF::move(m_next); next; next = WTF::move(next->m_next)) { }
116 m_next = o.m_next ? std::make_unique<FillLayer>(*o.m_next) : nullptr;
162 && ((m_next && o.m_next)
[all...]
H A DShadowData.h84 const ShadowData* next() const { return m_next.get(); }
85 void setNext(std::unique_ptr<ShadowData> shadow) { m_next = WTF::move(shadow); }
97 std::unique_ptr<ShadowData> m_next; member in class:WebCore::ShadowData
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DLayoutState.cpp39 , m_next(WTF::move(next))
44 ASSERT(m_next);
52 m_paintOffset = m_next->m_paintOffset + offset;
66 m_clipped = !fixed && m_next->m_clipped;
68 m_clipRect = m_next->m_clipRect;
93 m_pageLogicalHeight = m_next->m_pageLogicalHeight;
94 m_pageLogicalHeightChanged = m_next->m_pageLogicalHeightChanged;
95 m_pageOffset = m_next->m_pageOffset;
109 m_layoutDelta = m_next->m_layoutDelta;
111 m_layoutDeltaXSaturated = m_next
[all...]
H A DBidiRun.h40 BidiRun* next() { return static_cast<BidiRun*>(m_next); }
H A DRenderQuote.cpp38 , m_next(0)
47 ASSERT(!m_next);
387 ASSERT(!m_next);
399 m_next = m_previous->m_next;
400 m_previous->m_next = this;
401 if (m_next)
402 m_next->m_previous = this;
408 m_next = view().renderQuoteHead();
410 if (m_next)
[all...]
H A DRenderQuote.h52 RenderQuote* m_next; member in class:WebCore::final
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DHandleStack.h42 HandleSlot m_next; member in class:JSC::HandleStack::Frame
92 for (HandleSlot it = blocks[i] + m_blockStack.blockLength - 1; it != lastFrame.m_next - 1; --it)
98 for (HandleSlot it = m_frame.m_next - 1; it != lastFrame.m_next - 1; --it)
120 if (m_frame.m_next == m_frame.m_end)
122 return m_frame.m_next++;
H A DHandleStack.cpp54 heapRootVisitor.visit(block, m_frame.m_next - block);
60 m_frame.m_next = block;
H A DHeapBlock.h52 , m_next(0)
62 T* m_next; member in class:JSC::HeapBlock
/macosx-10.10/dtrace-147/libelf/
H A Dmember.h53 * | m_next |
85 struct Memlist * m_next; member in struct:Memlist
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DBidiRunList.h79 m_lastRun->m_next = run;
87 ASSERT(!run->m_next);
92 run->m_next = m_firstRun;
102 ASSERT(run->m_next);
114 current->m_next = run->m_next;
116 run->m_next = 0;
117 m_lastRun->m_next = run;
135 current->m_next = run->m_next;
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dlist.c45 struct list_entry *m_next; member in struct:list_entry
78 le->m_prev = le->m_next = NULL;
107 le->m_next = next;
109 prev->m_next = le;
141 newciter.m_entry = le->m_next;
178 newiter.m_entry = le->m_next;
214 lebeg->m_next = leend;
217 leend->m_next = NULL;
238 lenext = le->m_next;
255 return entry_to_iter(l, le->m_next);
[all...]
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLInputStream.h134 m_inputStream->splitInto(m_next);
145 m_inputStream->mergeFrom(m_next);
152 SegmentedString m_next; member in class:WebCore::InsertionPointRecord
/macosx-10.10/xnu-2782.1.97/bsd/netinet6/
H A Dipcomp_output.c156 for (n = md; n; n = n->m_next)
185 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
187 if (mprev == NULL || mprev->m_next != md) {
196 mprev->m_next = NULL;
204 mprev->m_next = md;
207 if ((*algo->compress)(m, md, &plen) || mprev->m_next == NULL) {
217 md = mprev->m_next;
226 mprev->m_next = md0;
286 mprev->m_next
[all...]
H A Dipcomp_core.c191 np = &n->m_next; \
206 n->m_next = NULL; \
220 for (mprev = m; mprev && mprev->m_next != md; mprev = mprev->m_next)
248 p = p->m_next;
257 p = p->m_next;
259 p = p->m_next;
340 np = &n->m_next;
345 mprev->m_next = n0;
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Duipc_mbuf2.c219 for (t = m; t; t = t->m_next)
229 n = n->m_next;
233 n = n->m_next;
263 o->m_next = n->m_next;
264 n->m_next = o;
265 n = n->m_next;
271 * we need to take hlen from <n, off> and tlen from <n->m_next, 0>,
283 for (o = n->m_next; o != NULL; o = o->m_next)
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DStructureStubClearingWatchpoint.h60 , m_next(next)
75 OwnPtr<StructureStubClearingWatchpoint> m_next; member in class:JSC::StructureStubClearingWatchpoint

Completed in 244 milliseconds

123456