Lines Matching full:offsets
1320 GLint *offsets;
1331 * This array holds offsets of where the appropriate string ends, thus the
1334 offsets = (GLint *) malloc(count * sizeof(GLint));
1335 if (offsets == NULL) {
1342 free((GLvoid *) offsets);
1348 offsets[i] = strlen(string[i]);
1350 offsets[i] = length[i];
1353 offsets[i] += offsets[i - 1];
1360 totalLength = offsets[count - 1] + 2;
1363 free((GLvoid *) offsets);
1369 GLint start = (i > 0) ? offsets[i - 1] : 0;
1371 (offsets[i] - start) * sizeof(GLcharARB));
1405 free(offsets);