Home | History | Annotate | Download | only in autosetup

Lines Matching defs:maxLen

278     int maxlen;
403 int maxLen;
533 int maxLen;
2561 jim_wide maxlen = JIM_WIDE_MAX;
2566 if (Jim_GetWide(interp, argv[1], &maxlen) != JIM_OK) {
2585 while (count < maxlen) {
2586 jim_wide len = maxlen - count;
7830 stack->maxlen = 0;
7848 if (neededLen > stack->maxlen) {
7849 stack->maxlen = neededLen < 20 ? 20 : neededLen * 2;
7850 stack->vector = Jim_Realloc(stack->vector, sizeof(void *) * stack->maxlen);
12158 dupPtr->internalRep.listValue.maxLen = srcPtr->internalRep.listValue.maxLen;
12160 Jim_Alloc(sizeof(Jim_Obj *) * srcPtr->internalRep.listValue.maxLen);
12429 objPtr->internalRep.listValue.maxLen = dict->maxLen;
12450 objPtr->internalRep.listValue.maxLen = 0;
12480 objPtr->internalRep.listValue.maxLen = 0;
12736 if (idx >= listPtr->internalRep.listValue.maxLen) {
12744 listPtr->internalRep.listValue.maxLen = idx;
12760 if (requiredLen > listPtr->internalRep.listValue.maxLen) {
13190 dict->maxLen = table_size;
13209 Jim_Dict *newDict = JimDictNew(interp, oldDict->maxLen, oldDict->size);
13257 dict->maxLen = objPtr->internalRep.listValue.maxLen;
13325 if (dict->maxLen == dict->len) {
13327 if (dict->maxLen < 4) {
13328 dict->maxLen = 4;
13331 dict->maxLen *= 2;
13333 dict->table = Jim_Realloc(dict->table, dict->maxLen * sizeof(*dict->table));