Home | History | Annotate | Download | only in nine

Lines Matching refs:next

11  * The above copyright notice and this permission notice (including the next
38 struct nine_range *ranges; /* single MALLOC, but next-pointers valid */
124 struct nine_shader_variant *next;
132 while (list->key != key && list->next)
133 list = list->next;
143 while (list->next) {
145 list = list->next;
147 list->next = MALLOC_STRUCT(nine_shader_variant);
148 if (!list->next)
150 list->next->next = NULL;
151 list->next->key = key;
152 list->next->cso = cso;
159 while (list->next) {
160 struct nine_shader_variant *ptr = list->next;
161 list->next = ptr->next;
168 struct nine_shader_variant_so *next;
179 while (list->vdecl != vdecl && list->next)
180 list = list->next;
194 list->next = NULL;
200 while (list->next) {
202 list = list->next;
204 list->next = MALLOC_STRUCT(nine_shader_variant_so);
205 if (!list->next)
207 list->next->next = NULL;
209 list->next->so = *so;
210 list->next->cso = cso;
217 while (list->next) {
218 struct nine_shader_variant_so *ptr = list->next;
219 list->next = ptr->next;