Home | History | Annotate | Download | only in tests

Lines Matching defs:mk

26 Node* mk(void)
39 // Building like this rather than "t = mk(mk(mk(NULL, NULL), ...)" seems to
41 t = mk(); // A
42 t->l = mk(); // B
43 t->r = mk(); // C (48(16d,32i)/1 definitely leaked from here)
44 t->l->l = mk(); // D (16/1 definitely leaked from here)
45 t->l->r = mk(); // E
46 t->r->l = mk(); // F
47 t->r->r = mk(); // G