Lines Matching refs:new

80   ffesttCaseList new;  in ffestt_caselist_append()  local
82 new = (ffesttCaseList) malloc_new_kp (ffesta_scratch_pool, in ffestt_caselist_append()
83 "FFEST case list", sizeof (*new)); in ffestt_caselist_append()
84 new->next = list->previous->next; in ffestt_caselist_append()
85 new->previous = list->previous; in ffestt_caselist_append()
86 new->next->previous = new; in ffestt_caselist_append()
87 new->previous->next = new; in ffestt_caselist_append()
88 new->expr1 = case1; in ffestt_caselist_append()
89 new->expr2 = case2; in ffestt_caselist_append()
90 new->range = range; in ffestt_caselist_append()
91 new->t = t; in ffestt_caselist_append()
104 ffesttCaseList new; in ffestt_caselist_create() local
106 new = (ffesttCaseList) malloc_new_kp (ffesta_scratch_pool, in ffestt_caselist_create()
108 sizeof (*new)); in ffestt_caselist_create()
109 new->next = new->previous = new; in ffestt_caselist_create()
110 new->t = NULL; in ffestt_caselist_create()
111 new->expr1 = NULL; in ffestt_caselist_create()
112 new->expr2 = NULL; in ffestt_caselist_create()
113 new->range = FALSE; in ffestt_caselist_create()
114 return new; in ffestt_caselist_create()
152 ffesttDimList new; in ffestt_dimlist_append() local
154 new = (ffesttDimList) malloc_new_kp (ffesta_scratch_pool, in ffestt_dimlist_append()
155 "FFEST dim list", sizeof (*new)); in ffestt_dimlist_append()
156 new->next = list->previous->next; in ffestt_dimlist_append()
157 new->previous = list->previous; in ffestt_dimlist_append()
158 new->next->previous = new; in ffestt_dimlist_append()
159 new->previous->next = new; in ffestt_dimlist_append()
160 new->lower = lower; in ffestt_dimlist_append()
161 new->upper = upper; in ffestt_dimlist_append()
162 new->t = t; in ffestt_dimlist_append()
401 ffesttDimList new; in ffestt_dimlist_create() local
403 new = (ffesttDimList) malloc_new_kp (ffesta_scratch_pool, in ffestt_dimlist_create()
404 "FFEST dim list root", sizeof (*new)); in ffestt_dimlist_create()
405 new->next = new->previous = new; in ffestt_dimlist_create()
406 new->t = NULL; in ffestt_dimlist_create()
407 new->lower = NULL; in ffestt_dimlist_create()
408 new->upper = NULL; in ffestt_dimlist_create()
409 return new; in ffestt_dimlist_create()
504 ffesttExprList new; in ffestt_exprlist_append() local
506 new = (ffesttExprList) malloc_new_kp (ffesta_scratch_pool, in ffestt_exprlist_append()
507 "FFEST expr list", sizeof (*new)); in ffestt_exprlist_append()
508 new->next = list->previous->next; in ffestt_exprlist_append()
509 new->previous = list->previous; in ffestt_exprlist_append()
510 new->next->previous = new; in ffestt_exprlist_append()
511 new->previous->next = new; in ffestt_exprlist_append()
512 new->expr = expr; in ffestt_exprlist_append()
513 new->t = t; in ffestt_exprlist_append()
526 ffesttExprList new; in ffestt_exprlist_create() local
528 new = (ffesttExprList) malloc_new_kp (ffesta_scratch_pool, in ffestt_exprlist_create()
529 "FFEST expr list root", sizeof (*new)); in ffestt_exprlist_create()
530 new->next = new->previous = new; in ffestt_exprlist_create()
531 new->expr = NULL; in ffestt_exprlist_create()
532 new->t = NULL; in ffestt_exprlist_create()
533 return new; in ffestt_exprlist_create()
593 ffesttFormatList new; in ffestt_formatlist_append() local
595 new = (ffesttFormatList) malloc_new_kp (ffesta_scratch_pool, in ffestt_formatlist_append()
596 "FFEST format list", sizeof (*new)); in ffestt_formatlist_append()
597 new->next = list->previous->next; in ffestt_formatlist_append()
598 new->previous = list->previous; in ffestt_formatlist_append()
599 new->next->previous = new; in ffestt_formatlist_append()
600 new->previous->next = new; in ffestt_formatlist_append()
601 return new; in ffestt_formatlist_append()
614 ffesttFormatList new; in ffestt_formatlist_create() local
616 new = (ffesttFormatList) malloc_new_kp (ffesta_scratch_pool, in ffestt_formatlist_create()
617 "FFEST format list root", sizeof (*new)); in ffestt_formatlist_create()
618 new->next = new->previous = new; in ffestt_formatlist_create()
619 new->type = FFESTP_formattypeNone; in ffestt_formatlist_create()
620 new->t = t; in ffestt_formatlist_create()
621 new->u.root.parent = parent; in ffestt_formatlist_create()
622 return new; in ffestt_formatlist_create()
721 ffesttImpList new; in ffestt_implist_append() local
723 new = (ffesttImpList) malloc_new_kp (ffesta_scratch_pool, in ffestt_implist_append()
724 "FFEST token list", sizeof (*new)); in ffestt_implist_append()
725 new->next = list->previous->next; in ffestt_implist_append()
726 new->previous = list->previous; in ffestt_implist_append()
727 new->next->previous = new; in ffestt_implist_append()
728 new->previous->next = new; in ffestt_implist_append()
729 new->first = first; in ffestt_implist_append()
730 new->last = last; in ffestt_implist_append()
743 ffesttImpList new; in ffestt_implist_create() local
745 new = (ffesttImpList) malloc_new_kp (ffesta_scratch_pool, in ffestt_implist_create()
747 sizeof (*new)); in ffestt_implist_create()
748 new->next = new->previous = new; in ffestt_implist_create()
749 new->first = NULL; in ffestt_implist_create()
750 new->last = NULL; in ffestt_implist_create()
751 return new; in ffestt_implist_create()