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

<<51525354555657585960>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_framebuffer.c 15 * next paragraph) shall be included in all copies or substantial portions
55 for (fb = stw_dev->fb_head; fb != NULL; fb = fb->next)
85 link = &(*link)->next;
87 *link = fb->next;
88 fb->next = NULL;
304 fb->next = stw_dev->fb_head;
364 struct stw_framebuffer *next; local
373 next = fb->next;
378 fb = next;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
parse.py 16 # next paragraph) shall be included in all copies or substantial portions
106 def next(self): member in class:XmlTokenizer
153 self.token = self.tokenizer.next()
  /external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
gbm_dri.c 11 * The above copyright notice and this permission notice (including the next
173 char path[PATH_MAX], *search_paths, *p, *next, *end; local
185 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) {
187 next = strchr(p, ':');
188 if (next == NULL)
189 next = end;
191 len = next - p;
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 11 * The above copyright notice and this permission notice (including the next
31 * \c next pointer being \c NULL.
33 * A list is empty if either the head sentinel's \c next pointer points to the
43 * - A \c head pointer that represents the \c next pointer of the
46 * sentinel node and the \c next pointer of the tail sentinel node. This
51 * Therefore, if \c head->next is \c NULL or \c tail_prev->prev is \c NULL,
75 struct exec_node *next; member in struct:exec_node
98 exec_node() : next(NULL), prev(NULL)
105 return next;
110 return next;
229 void next() function in class:iterator
251 void next() function in class:exec_list_iterator
    [all...]
ralloc.c 11 * The above copyright notice and this permission notice (including the next
66 struct ralloc_header *next; member in struct:ralloc_header
92 info->next = parent->child;
95 if (info->next != NULL)
96 info->next->prev = info;
148 info->prev->next = info;
150 if (info->next != NULL)
151 info->next->prev = info;
155 for (child = info->child; child != NULL; child = child->next)
217 info->parent->child = info->next;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_drawable.h 139 /*END*/ struct apple_glx_drawable *previous, *next; member in struct:apple_glx_drawable
  /external/chromium_org/third_party/mesa/src/src/glx/
dri_common.c 132 const char *libPaths, *p, *next; local
150 for (p = libPaths; *p; p = next) {
151 next = strchr(p, ':');
152 if (next == NULL) {
154 next = p + len;
157 len = next - p;
158 next++;
360 head.next = NULL;
361 for (m = configs; m; m = m->next) {
362 tail->next = createDriMode(core, m, driConfigs)
    [all...]
glxconfig.h 12 * The above copyright notice and this permission notice (including the next
34 struct glx_config * next; member in struct:glx_config
glxhash.c 16 * The above copyright notice and this permission notice (including the next
111 struct __glxHashBucket *next; member in struct:__glxHashBucket
180 __glxHashBucketPtr next; local
188 next = bucket->next;
190 bucket = next;
210 for (bucket = table->buckets[hash]; bucket; bucket = bucket->next) {
214 prev->next = bucket->next;
215 bucket->next = table->buckets[hash]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 11 * The above copyright notice and this permission notice (including the next
219 schedule_node *next = (schedule_node *)n->next; local
228 if (next) {
229 while (!next->is_tail_sentinel()) {
230 add_dep(n, next, 0);
231 next = (schedule_node *)next->next;
485 * something off to it then the next math isn't going to mak
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_program.h 15 * next paragraph) shall be included in all copies or substantial portions
81 /** next in linked list */
82 struct st_fp_variant *next; member in struct:st_fp_variant
133 /** Next in linked list */
134 struct st_vp_variant *next; member in struct:st_vp_variant
186 struct st_gp_variant *next; member in struct:st_gp_variant
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plarena.h 56 PLArena *next; /* next arena for this lifetime */ member in struct:PLArena
59 PRUword avail; /* points to next available byte */
66 PLArenaStats *next; /* next in arenaStats list */ member in struct:PLArenaStats
177 *(pnext) = (a)->next; \
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_ctx.c 96 struct bignum_pool_item *prev, *next; member in struct:bignum_pool_item
166 item = item->next;
245 pool = pool->next;
377 p->current = p->head->next;
396 item = item->next;
416 item->next = NULL;
422 p->tail->next = item;
434 p->current = p->current->next;
  /external/chromium_org/third_party/ply/
lex.py 107 # token() - Get the next token
298 # opttoken() - Return the next token from the Lexer
350 # Every function must return a token, if nothing, we just move to next token
404 def next(self): member in class:Lexer
410 __next__ = next
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
LiteralByteString.java 310 public Byte next() { method in class:LiteralByteString.LiteralByteIterator
  /external/chromium_org/third_party/re2/re2/
nfa.cc 60 Thread* next; // when on free list member in union:re2::NFA::Thread::__anon13974
94 // p is position of the next byte (the one after c)
149 Thread* next; local
150 for (Thread* t = free_threads_; t; t = next) {
151 next = t->next;
160 t->next = free_threads_;
171 free_threads_ = t->next;
233 // Save state; will pick up at next byte.
265 // Save state; will pick up at next byte
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkClipStack.cpp 399 for (const Element* element = (const Element*)recIter.next();
401 element = (const Element*)recIter.next()) {
415 const Element* myElement = (const Element*)myIter.next();
416 const Element* bElement = (const Element*)bIter.next();
422 myElement = (const Element*)myIter.next();
423 bElement = (const Element*)bIter.next();
639 const SkClipStack::Element* SkClipStack::Iter::next() { function in class:SkClipStack::Iter
640 return (const SkClipStack::Element*)fIter.next();
665 // return on the next "next" or "prev" call) the elemen
    [all...]
SkMetaData.cpp 54 Rec* next = rec->fNext; local
56 rec = next;
249 Rec* next = rec->fNext; local
252 prev->fNext = next;
254 fRec = next;
267 rec = next;
311 const char* SkMetaData::Iter::next(SkMetaData::Type* t, int* count) { function in class:SkMetaData::Iter
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp 68 void next() { function in class:GifInterlaceIter
382 iter.next();
387 iter.next();
398 sampler.next(scanline);
403 sampler.next(scanline);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp 174 SkOpSegment* next = current->findNextOp(&chaseArray, &nextStart, &nextEnd, local
176 if (!next) {
191 current = next;
295 SkOpContour* next; local
297 next = *nextPtr++;
298 } while (AddIntersectTs(current, next) && nextPtr != listEnd);
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFTypes.cpp 482 SkPDFName* SkPDFDict::Iter::next(SkPDFObject** value) { function in class:SkPDFDict::Iter
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 331 char next; local
333 next = valCh[index++];
334 if (next == ',') {
338 if (next == ']') {
342 if (next == ' ')
345 } while (is_whitespace(next) == false);
  /external/chromium_org/third_party/skia/src/utils/
SkJSON.cpp 113 void SkJSON::Object::Iter::next() { function in class:SkJSON::Object::Iter
195 iter.next();
202 Slot* next = slot->fNext; local
204 slot = next;
342 Slot* next = slot->fNext; local
346 prev->fNext = next;
349 fHead = next;
359 slot = next;
SkNWayCanvas.cpp 51 bool next() { function in class:SkNWayCanvas::Iter
68 while (iter.next()) {
77 while (iter.next()) {
85 while (iter.next()) {
93 while (iter.next()) {
101 while (iter.next()) {
109 while (iter.next()) {
117 while (iter.next()) {
125 while (iter.next()) {
133 while (iter.next()) {
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkEvent.cpp 197 while ((name = iter.next(&mtype, &count)) != NULL)
456 SkEvent* next = evt->fNextEvent; local
459 evt = next;
497 SkEvent* next = evt->fNextEvent; local
499 evt = next;
504 SkEvent* next = evt->fNextEvent; local
506 evt = next;

Completed in 869 milliseconds

<<51525354555657585960>>