Lines Matching refs:Stack
311 GLmatrix *new_stack = realloc(stack->Stack,
322 stack->Stack = new_stack;
326 _math_matrix_push_copy(&stack->Stack[stack->Depth + 1],
327 &stack->Stack[stack->Depth]);
329 stack->Top = &(stack->Stack[stack->Depth]);
379 if (memcmp(stack->Top, &stack->Stack[stack->Depth],
385 stack->Top = &(stack->Stack[stack->Depth]);
998 stack->Stack = calloc(1, sizeof(GLmatrix));
1000 _math_matrix_ctr(&stack->Stack[0]);
1001 stack->Top = stack->Stack;
1012 free(stack->Stack);
1013 stack->Stack = stack->Top = NULL;