Home | History | Annotate | Download | only in perf

Lines Matching full:ptop

7474 static void sym_pop(Sym **ptop, Sym *b)
7480 s = *ptop;
7497 *ptop = b;
8212 static Sym *label_push(Sym **ptop, int v, int flags)
8215 s = sym_push2(ptop, v, 0, 0);
8218 if (ptop == &global_label_stack) {
8231 static void label_pop(Sym **ptop, Sym *slast)
8234 for(s = *ptop; s != slast; s = s1) {
8252 *ptop = slast;