Lines Matching defs:length
201 * required supported string length is 509 bytes.
441 // an explicit string length that exceeds the number of remaining 16-bit units.
457 int32_t length;
461 for (length = 0;
462 length < remaining && p[length] != 0;
463 ++length) {}
466 length = first & 0x3ff;
469 length = ((first - 0xdfef) << 16) | p[1];
472 length = ((int32_t)p[1] << 16) | p[2];
478 if ((numCharsForLength + length) >= remaining ||
479 p[numCharsForLength + length] != 0) {
484 int32_t maxStringIndex = poolStringIndex + numCharsForLength + length - 1;
491 if (length != 0) {
494 p, length, status);
505 p += length + 1;
506 remaining -= length + 1;
518 int32_t length = poolBundle.fStringIndexLimit + 1; // incl. last NUL
520 (int)length, (int)length * 2);
629 dirlen = inputDirBuf.length();
778 int32_t pkgLen = 0; /* length of package prefix */