Home | History | Annotate | Download | only in common

Lines Matching full:bufflength

242                              int32_t buffLength,
248 } else if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) {
251 if(buffLength == -1) {
257 buffLength = (int32_t)(p - buff);
259 setArray(buff, buffLength, buffCapacity);
1267 int32_t buffLength,
1281 if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) {
1284 } else if(buffLength == -1) {
1285 // buffLength = u_strlen(buff); but do not look beyond buffCapacity
1290 buffLength = (int32_t)(p - buffer);
1296 setArray(buffer, buffLength, buffCapacity);