Home | History | Annotate | Download | only in Parser

Lines Matching refs:XXXROUNDUP

21 /* See comments at XXXROUNDUP below.  Returns -1 on overflow. */
40 * if XXXROUNDUP(current_size) < XXXROUNDUP(current_size + 1):
41 * allocate space for XXXROUNDUP(current_size + 1) total children
47 * XXXROUNDUP(0) < XXXROUNDUP(1)
52 * XXXROUNDUP(1) == 1. That in turn forces XXXROUNDUP(0) == 0.
73 #define XXXROUNDUP(n) ((n) <= 1 ? (n) : \
89 current_capacity = XXXROUNDUP(nch);
90 required_capacity = XXXROUNDUP(nch + 1);
160 res += XXXROUNDUP(NCH(n)) * sizeof(node);