Home | History | Annotate | Download | only in intltest

Lines Matching defs:listMax

707     int32_t listMax;
712 : list(NULL), listSize(0), listMax(16)
714 list = new Order[listMax];
718 : list(NULL), listMax(16), listSize(0)
739 list = new Order[listMax];
767 if (listSize >= listMax) {
768 listMax *= 2;
770 Order *newList = new Order[listMax];
1105 int32_t listMax;
1116 list = new PCE[listMax];
1135 if (listSize >= listMax) {
1136 listMax *= 2;
1138 PCE *newList = new PCE[listMax];