Lines Matching refs:totSize
1070 size_t *totSize)
1075 if (pos + size > *totSize) {
1076 while (pos + size > *totSize) {
1077 *totSize += ((*totSize + 7) / 8) * 4;
1079 param = (char *)realloc(param, *totSize);
1088 size_t *totSize)
1091 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1096 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1101 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1106 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1116 if (*curSize + len + 1 > *totSize) {
1117 *totSize = *curSize + len + 1;
1118 param = (char *)realloc(param, *totSize);
1135 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1136 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1164 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1179 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);