Lines Matching refs:Stack
249 GLmatrix *new_stack = realloc(stack->Stack,
260 stack->Stack = new_stack;
264 _math_matrix_copy( &stack->Stack[stack->Depth + 1],
265 &stack->Stack[stack->Depth] );
267 stack->Top = &(stack->Stack[stack->Depth]);
306 stack->Top = &(stack->Stack[stack->Depth]);
667 stack->Stack = calloc(1, sizeof(GLmatrix));
669 _math_matrix_ctr(&stack->Stack[0]);
670 stack->Top = stack->Stack;
686 _math_matrix_dtr(&stack->Stack[i]);
688 free(stack->Stack);
689 stack->Stack = stack->Top = NULL;