Searched refs:next (Results 1 - 25 of 117) sorted by relevance

12345

/solaris-x11-s11/open-src/kernel/sys/drm/
H A Ddrm_linux_list.h22 * The above copyright notice and this permission notice (including the next
45 struct list_head *next, *prev; member in struct:list_head
57 list_entry((ptr)->next, type, member)
60 ((head)->next == head)
64 (head)->next = head; \
71 struct list_head *n_node = (head)->next; \
73 (ptr)->next = (head)->next; \
75 (head)->next = ptr; \
83 (ptr)->next
[all...]
H A Ddrm_sun_idr.h11 * The above copyright notice and this permission notice (including the next
40 struct idr_free_id *next; member in struct:idr_free_id
45 struct idr_free_id_range *next; member in struct:idr_free_id_range
71 struct idr_list *next, *prev; member in struct:idr_list
79 list_for_each(entry, &(head)->next[key])
H A Ddrm_mm.h23 * next paragraph) shall be included in all copies or substantial portions
102 next = entry ? list_entry(entry->node_list.next, \
104 entry != NULL; entry = next, \
105 next = entry ? list_entry(entry->node_list.next, \
113 for (entry = list_entry((mm)->hole_stack.next, struct drm_mm_node, hole_stack); \
118 entry = list_entry(entry->hole_stack.next, struct drm_mm_node, hole_stack))
/solaris-x11-s11/open-src/kernel/efb/src/
H A Dradeon_mem.c20 * The above copyright notice and this permission notice (including the next
59 newblock->next = p->next;
61 p->next->prev = newblock;
62 p->next = newblock;
76 newblock->next = p->next;
78 p->next->prev = newblock;
79 p->next = newblock;
95 for (p = heap->next;
[all...]
H A Ddrm_auth.c21 * The above copyright notice and this permission notice (including the next
55 for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
77 entry->next = NULL;
81 dev->magiclist[hash].tail->next = entry;
103 for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
106 dev->magiclist[hash].head = pt->next;
112 prev->next = pt->next;
H A Defb_map.c47 mi->next = ctx->mappings;
48 if (mi->next != NULL)
49 mi->next->prev = mi;
95 ctx->next = NULL;
431 mi->prev->next = mi->next;
433 ctx->mappings = mi->next;
435 if (mi->next != NULL)
436 mi->next->prev = mi->prev;
445 radeon_priv->private_data = (void *)(ctx->next);
[all...]
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/
H A Ddpsdict.c54 struct _EntryRec *next; member in struct:_EntryRec
84 Entry next; local
89 next = (dict->entries)[links];
90 while (next != NIL)
92 prev = next;
93 next = next->next;
113 for (e = (d->entries)[x]; e != NIL; e = e->next) {
123 for (e = (d->entries)[x]; e != NIL; e = e->next) {
[all...]
H A Ddpssimpint.h59 struct _t_DPSPrivContextRec *next; member in struct:_t_DPSPrivContextRec
77 struct _t_DPSPrivSpaceRec *next; member in struct:_t_DPSPrivSpaceRec
H A DdpsXint.h62 struct _t_DPSPrivContextRec *next; member in struct:_t_DPSPrivContextRec
83 the allocated offset buffer and the second entry contains the next
92 struct _t_DPSPrivSpaceRec *next; member in struct:_t_DPSPrivSpaceRec
H A DdpsXtdisp.c59 struct _DpyProcRec *next; member in struct:_DpyProcRec
71 d = d->next) {}
92 d->next = dpyProcList;
/solaris-x11-s11/open-src/lib/DPS/sun-src/pswrap/
H A Dpswsemantics.c108 nextarg = arg->next;
110 nextitem = item->next;
124 nextarg = arg->next;
126 nextitem = item->next;
160 for (arg = inArgs; arg; arg = arg->next) { /* foreach input arg */
162 for (item = arg->items; item; item = item->next) {
170 if (prevItem) {prevItem->next = item->next;}
171 else if (item == arg->items) {arg->items = item->next;};
186 if (prevItem) {prevItem->next
[all...]
H A Dpswpriv.h64 struct _t_ItemRec *next; member in struct:_t_ItemRec
81 struct _t_ArgRec *next; member in struct:_t_ArgRec
100 struct _t_TokenRec *next; member in struct:_t_TokenRec
127 struct _t_TokenListRec *next; member in struct:_t_TokenListRec
H A Dpswdict.c60 struct _t_EntryRec *next; member in struct:_t_EntryRec
104 for (e = (d->entries)[x]; e; e = e->next) {
114 for (e = (d->entries)[x]; e; e = e->next) {
142 e->next = (dict->entries)[x]; (dict->entries)[x] = e;
158 if (prev == NULL) (dict->entries)[x] = e->next; else prev->next = e->next;
173 e->next = (atoms->entries)[x]; (atoms->entries)[x] = e;
H A Dpsw.c107 for (arg = args; arg; arg = arg->next)
108 for (item = arg->items; item; item = item->next)
116 while (body) { n++; body = body->next; }
124 tt->next = ll;
133 tt->next = ll;
137 while((temp->next != NULL) && strcmp((char *)(temp->token->val), (char *)(t->val)))
138 temp = temp->next;
139 tt->next = temp->next;
140 temp->next
[all...]
/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_sun_idr.c11 * The above copyright notice and this permission notice (including the next
60 range->free_ids = range->free_ids->next;
64 ret = range->next;
76 entry = entry->next;
87 while (prev->next && prev->next->start < start)
88 prev = prev->next;
93 n->next = prev->next;
94 prev->next
[all...]
H A Ddrm_auth.c31 * The above copyright notice and this permission notice (including the next
78 for (pt = master->magiclist[hash].head; pt; pt = pt->next) {
115 entry->next = NULL;
119 master->magiclist[hash].tail->next = entry;
150 for (pt = master->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
153 master->magiclist[hash].head = pt->next;
159 prev->next = pt->next;
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A DFlags.c239 new->list.next = NULL;
337 opt = opt->list.next;
353 opt = opt->list.next;
384 opt->list.next = 0;
396 return list->list.next;
475 for ( ; list != NULL; list = list->list.next)
570 bp->list.next = a;
572 tail = a->list.next;
574 ap->list.next = a->list.next;
[all...]
H A DInput.c146 ptr = ptr->list.next;
163 ptr = ptr->list.next;
185 input = input->list.next;
198 p = p->list.next;
211 p = p->list.next;
H A DLayout.c122 iptr->list.next = NULL;
138 aptr->list.next = NULL;
273 iptr->list.next = NULL;
330 for (aptr = ptr->lay_adjacency_lst; aptr; aptr = aptr->list.next)
370 for (iptr = ptr->lay_inactive_lst; iptr; iptr = iptr->list.next)
372 for (inptr = ptr->lay_input_lst; inptr; inptr = inptr->list.next)
375 for (optr = inptr->iref_option_lst; optr; optr = optr->list.next)
383 ptr = ptr->list.next;
399 ptr = ptr->list.next;
418 ptr = ptr->list.next;
[all...]
H A DScreen.c135 mon_ptr = (XF86ConfScrnMonitorEntryPtr)mon_ptr->list.next) {
162 mon_ptr->list.next = NULL;
295 mptr->list.next = NULL;
461 aptr = (XF86ConfAdaptorLinkPtr) aptr->list.next)
468 aptr->list.next = NULL;
571 for (mptr = dptr->disp_mode_lst; mptr != NULL; mptr = mptr->list.next)
721 mon_ptr = (XF86ConfScrnMonitorEntryPtr)mon_ptr->list.next) {
733 for (aptr = ptr->scrn_adaptor_lst; aptr; aptr = aptr->list.next)
741 for (dptr = ptr->scrn_display_lst; dptr; dptr = dptr->list.next)
795 ptr = ptr->list.next;
[all...]
/solaris-x11-s11/open-src/lib/libowconfig/sun-src/
H A DOWconfig.c11 * The above copyright notice and this permission notice (including the next
92 struct nodeStruct *next; member in struct:nodeStruct
114 struct commentStruct *next; member in struct:commentStruct
168 np->parent->head = np->next;\
171 if (np->next)\
172 np->next->prev = np->prev;\
174 np->prev->next = np->next;\
186 struct nodeStruct *next; local
191 next
648 struct commentStruct *next; local
1279 struct nodeStruct *next = ip->next; local
[all...]
/solaris-x11-s11/open-src/lib/libX11/sun-src/src/
H A DXInteractive.c11 * The above copyright notice and this permission notice (including the next
70 struct _IAExtDisplayInfo *next; member in struct:_IAExtDisplayInfo
127 IAExtDisplayInfo *di, *prev, *next;
129 for (di = iaExtDisplayList, prev = NULL; di != NULL; di = next) {
130 next = di->next;
133 prev->next = di->next;
135 iaExtDisplayList = di->next;
163 for (di = iaExtDisplayList ; di != NULL; di = di->next) {
[all...]
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_mode_list.c11 * The above copyright notice and this permission notice (including the next
88 mode_elem_p = (fbc_mode_elem_t **)&mode_elem->list.next) {
212 mode_elem->list.next = *mode_elem_p;
241 for ( ; mode_ptr != NULL; mode_ptr = mode_ptr->list.next) {
302 modeslink = modeslink->list.next) {
336 next_mode_elem = mode_elem->list.next;
/solaris-x11-s11/open-src/lib/DPS/sun-src/makepsres/
H A Dmakepsres.c102 struct _t_Resource *next; member in struct:_t_Resource
109 struct _t_Duplicate *next; member in struct:_t_Duplicate
117 struct _t_Category *next; member in struct:_t_Category
199 current = current->next;
204 newCategory->next = NULL;
205 previous->next = newCategory;
207 newCategory->next = current;
212 previous->next = newCategory;
230 category = category->next;
280 current = current->next;
445 struct _t_UPRResource *next; member in struct:_t_UPRResource
[all...]
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/
H A DXaw3_1Toggle.c402 group->next = NULL;
407 if ((local->next = group->next) != NULL)
408 local->next->prev = local;
409 group->next = local;
438 group = group->next;
455 (group->prev)->next = group->next;
456 if (group->next != NULL)
457 (group->next)
[all...]

Completed in 39 milliseconds

12345