Home
last modified time | relevance | path

Searched refs:partial_path_array (Results 1 – 2 of 2) sorted by relevance

/external/srec/srec/crec/
Dastar.c538 …stack->partial_path_array = (partial_path*)CALLOC_CLR(MAX_NUM_PARPS, sizeof(stack->partial_path_ar… in astar_stack_make()
541 stack->free_parp_list = &stack->partial_path_array[0]; in astar_stack_make()
544 stack->partial_path_array[i-1].next = &stack->partial_path_array[i]; in astar_stack_make()
546 stack->partial_path_array[i-1].next = 0; in astar_stack_make()
560 FREE(stack->partial_path_array); in astar_stack_destroy()
640 stack->free_parp_list = &stack->partial_path_array[0]; in astar_stack_clear()
642 stack->partial_path_array[i-1].next = &stack->partial_path_array[i]; in astar_stack_clear()
643 stack->partial_path_array[i-1].next = 0; in astar_stack_clear()
1328 x[(parp-stack->partial_path_array)] = PARP_FREE; in list_free_parps()
1336 for (; parp; parp = parp->next) x[(parp-stack->partial_path_array)] = PARP_USED; in list_free_parps()
[all …]
/external/srec/srec/include/
Dastar.h91 partial_path* partial_path_array; member