Lines Matching refs:textLength
2027 long textLength = 0; /* length of the string to convert */
2033 textLength = strlen(a_plainTextString);
2037 stringLength = textLength*2;
2044 for (p = a_plainTextString; textLength > 0; p++, textLength--) {
2055 stringLength += (textLength*2)+12;
2210 long textLength = 0; /* length of encoded string to decode */
2231 textLength = strlen(a_xmlEncodedString);
2240 stringHead = (char *)calloc(1, textLength+1);
2250 for (s = a_xmlEncodedString, d = stringHead; textLength > 0;
2251 s++, textLength--) {