Home | History | Annotate | Download | only in src

Lines Matching defs:stack_top

332         uchar **stack_top = &stack[0];
455 if ((stack_top - stack_bottom) + src.cols > maxsize)
457 int sz = (int)(stack_top - stack_bottom);
461 stack_top = stack_bottom + sz;
464 #define CANNY_PUSH(d) *(d) = uchar(2), *stack_top++ = (d)
465 #define CANNY_POP(d) (d) = *--stack_top
533 while (stack_top > stack_bottom)
535 if ((stack_top - stack_bottom) + 8 > maxsize)
537 int sz = (int)(stack_top - stack_bottom);
541 stack_top = stack_bottom + sz;
723 uchar **stack_top = &stack[0];
738 #define CANNY_PUSH(d) *(d) = uchar(2), *stack_top++ = (d)
739 #define CANNY_POP(d) (d) = *--stack_top
862 if ((stack_top - stack_bottom) + src.cols > maxsize)
864 int sz = (int)(stack_top - stack_bottom);
868 stack_top = stack_bottom + sz;
927 while (stack_top > stack_bottom)
930 if ((stack_top - stack_bottom) + 8 > maxsize)
932 int sz = (int)(stack_top - stack_bottom);
936 stack_top = stack_bottom + sz;