Lines Matching refs: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];
1108 int32_t listMax;
1119 list = new PCE[listMax];
1138 if (listSize >= listMax) {
1139 listMax *= 2;
1141 PCE *newList = new PCE[listMax];