Lines Matching defs:cur
33 cond_av_list_t *top, *p, *cur;
35 top = p = cur = *l;
37 while (cur) {
38 if ((cur->node->key.specified & AVTAB_TYPE) && (top != cur)) {
39 p->next = cur->next;
40 cur->next = top;
41 top = cur;
42 cur = p->next;
44 p = cur;
45 cur = cur->next;
214 cond_expr_t *cur;
220 for (cur = expr; cur != NULL; cur = cur->next) {
221 switch (cur->expr_type) {
226 s[sp] = p->bool_val_to_struct[cur->bool - 1]->state;
272 cond_expr_t *cur, *head, *tail, *new_expr;
274 cur = expr;
275 while (cur) {
281 new_expr->expr_type = cur->expr_type;
282 new_expr->bool = cur->bool;
289 cur = cur->next;
312 cond_av_list_t *cur;
320 for (cur = node->true_list; cur != NULL; cur = cur->next) {
322 cur->node->key.specified &= ~AVTAB_ENABLED;
324 cur->node->key.specified |= AVTAB_ENABLED;
328 for (cur = node->false_list; cur != NULL; cur = cur->next) {
331 cur->node->key.specified &= ~AVTAB_ENABLED;
333 cur->node->key.specified |= AVTAB_ENABLED;
443 cond_node_t *cur;
445 for (cur = p->cond_list; cur != NULL; cur = cur->next) {
446 ret = evaluate_cond_node(p, cur);
465 cond_av_list_t *cur, *next;
466 for (cur = list; cur != NULL; cur = next) {
467 next = cur->next;
469 free(cur);
500 cond_node_t *next, *cur;
505 for (cur = list; cur != NULL; cur = next) {
506 next = cur->next;
507 cond_node_destroy(cur);
508 free(cur);
625 cond_av_list_t *other = data->other, *list, *cur;
656 for (cur = other; cur != NULL; cur = cur->next) {
657 if (cur->node == node_ptr) {