HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 426 - 450 of 3921) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe.h 15 * next paragraph) shall be included in all copies or substantial portions
59 struct draw_stage *next; /**< next stage in pipeline */ member in struct:draw_stage
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dirty_surfaces.h 14 * next paragraph) shall be included in all copies or substantial
59 struct list_head *p, *next; local
60 for(p = dss->dirty_list.next; p != &dss->dirty_list; p = next)
63 next = p->next;
72 struct list_head *p, *next; local
75 for(p = dss->dirty_list.next; p != &dss->dirty_list; p = next)
78 next = p->next
    [all...]
u_mm.c 44 for (p = heap->next; p != heap; p = p->next) {
87 heap->next = block;
93 block->next = heap;
113 /* break left [p, newblock, p->next], then p = newblock */
123 newblock->next = p->next;
125 p->next->prev = newblock;
126 p->next = newblock;
137 /* break right, also [p, newblock, p->next] */
290 struct mem_block *next = p->next; local
    [all...]
u_slab.h 11 * The above copyright notice and this permission notice (including the next
49 struct util_slab_page *prev, *next; member in struct:util_slab_page
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_fence.c 96 screen->fence.tail->next = fence;
117 screen->fence.head = fence->next;
121 for (it = screen->fence.head; it && it->next != fence; it = it->next);
122 it->next = fence->next;
140 struct nouveau_fence *next = NULL; local
147 for (fence = screen->fence.head; fence; fence = next) {
148 next = fence->next;
    [all...]
nouveau_fence.h 21 struct nouveau_fence *next; member in struct:nouveau_fence
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_screen.h 15 * next paragraph) shall be included in all copies or substantial portions
37 struct rbug_list *next; member in struct:rbug_list
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_framebuffer.h 15 * next paragraph) shall be included in all copies or substantial portions
107 struct stw_framebuffer *next; member in struct:stw_framebuffer
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_context.h 70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wmesadef.h 37 struct wmesa_framebuffer *next; member in struct:wmesa_framebuffer
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mm.c 42 for(p = heap->next; p != heap; p = p->next) {
78 heap->next = block;
84 block->next = heap;
104 /* break left [p, newblock, p->next], then p = newblock */
114 newblock->next = p->next;
116 p->next->prev = newblock;
117 p->next = newblock;
128 /* break right, also [p, newblock, p->next] */
277 struct mem_block *next = p->next; local
    [all...]
simple_list.h 45 struct simple_node *next; member in struct:simple_node
56 (elem)->next->prev = (elem)->prev; \
57 (elem)->prev->next = (elem)->next; \
69 (elem)->next = (list)->next; \
70 (list)->next->prev = elem; \
71 (list)->next = elem; \
82 (elem)->next = list; \
84 (list)->prev->next = elem;
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prclist.h 46 PRCList *next; member in struct:PRCListStr
55 (_e)->next = (_l); \
57 (_l)->prev->next = (_e); \
66 (_e)->next = (_l)->next; \
68 (_l)->next->prev = (_e); \
69 (_l)->next = (_e); \
76 ((_e)->next)
94 #define PR_LIST_HEAD(_l) (_l)->next
102 (_e)->prev->next = (_e)->next;
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
UnmodifiableLazyStringList.java 85 public String next() { method
86 return iter.next();
137 public String next() { method
138 return iter.next();
  /external/chromium_org/third_party/skia/src/core/
SkTLS.cpp 45 SkTLSRec* next = rec->fNext; local
47 rec = next;
109 SkTLSRec* next = curr->fNext; local
112 prev->fNext = next;
115 SkTLS::PlatformSetSpecific(next);
121 curr = next;
  /external/chromium_org/third_party/skia/src/effects/
Sk1DPathEffect.cpp 21 SkScalar delta = this->next(dst, distance, meas);
117 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) {
177 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, function in class:SkPath1DPathEffect
Sk2DPathEffect.cpp 36 for (; !iter.done(); iter.next()) {
59 this->next(dst, x++, y, path);
65 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {} function in class:Sk2DPathEffect
129 void SkPath2DPathEffect::next(const SkPoint& loc, int u, int v, function in class:SkPath2DPathEffect
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkBitmapCache.cpp 48 Entry* next = entry->fNext; local
50 entry = next;
  /external/chromium_org/third_party/skia/src/gpu/
GrMemoryPool.cpp 82 BlockHeader* next = block->fNext; local
84 prev->fNext = next;
85 if (next) {
86 next->fPrev = prev;
  /external/chromium_org/third_party/sqlite/src/src/
hash.h 35 ** element pointed to plus the next _ht.count-1 elements in the list.
60 HashElem *next, *prev; /* Next and previous elements in the table */ member in struct:HashElem
86 #define sqliteHashNext(E) ((E)->next)
  /external/chromium_org/third_party/tlslite/tlslite/
X509CertChain.py 64 def next(self): member in class:X509CertChain.parseChain.PEMIterator
65 """Iterates and returns the next L{tlslite.X509.X509}
154 #next one
  /external/chromium_org/ui/gfx/
break_list.h 54 // the next break's start position (or |max_| for the terminal break).
141 const typename BreakList<T>::const_iterator next = i + 1; local
142 return Range(i->first, next == breaks_.end() ? max_ : next->first);
  /external/chromium_org/v8/src/
hydrogen-representation-changes.cc 37 HInstruction* next = NULL; local
39 next = use_value->block()->predecessors()->at(use_index)->end();
41 next = HInstruction::cast(use_value);
71 new_value->InsertBefore(next);
190 HInstruction* next = current->next(); local
192 current = next;
  /external/clang/lib/Sema/
AttributeList.cpp 62 AttributeList *next = cur->NextInPool; local
75 cur = next;
91 AttributeList *next = pool->NextInPool; local
94 pool = next;
  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 11 struct edge_rec *next; member in struct:edge_rec
33 return (int)basel->next;

Completed in 707 milliseconds

<<11121314151617181920>>