Home | History | Annotate | Download | only in common

Lines Matching refs:buffLength

244                              int32_t buffLength,
250 } else if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) {
253 if(buffLength == -1) {
259 buffLength = (int32_t)(p - buff);
261 setArray(buff, buffLength, buffCapacity);
1297 int32_t buffLength,
1311 if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) {
1314 } else if(buffLength == -1) {
1315 // buffLength = u_strlen(buff); but do not look beyond buffCapacity
1320 buffLength = (int32_t)(p - buffer);
1326 setArray(buffer, buffLength, buffCapacity);