Home | History | Annotate | Download | only in intltest

Lines Matching defs:listMax

700     int32_t listMax;
705 : list(NULL), listMax(16), listSize(0)
707 list = new Order[listMax];
711 : list(NULL), listMax(16), listSize(0)
732 list = new Order[listMax];
760 if (listSize >= listMax) {
761 listMax *= 2;
763 Order *newList = new Order[listMax];
1100 int32_t listMax;
1111 list = new PCE[listMax];
1130 if (listSize >= listMax) {
1131 listMax *= 2;
1133 PCE *newList = new PCE[listMax];