Lines Matching refs:totSize
1082 size_t *totSize)
1087 if (pos + size > *totSize) {
1088 while (pos + size > *totSize) {
1089 *totSize += ((*totSize + 7) / 8) * 4;
1091 param = (char *)realloc(param, *totSize);
1100 size_t *totSize)
1103 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1108 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1113 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1118 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1128 if (*curSize + len + 1 > *totSize) {
1129 *totSize = *curSize + len + 1;
1130 param = (char *)realloc(param, *totSize);
1147 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1148 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1176 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1191 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);