Searched refs:theUsedByteLen (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFStringEncodingConverter.c684 CFIndex theUsedByteLen = 0; local
708 while ((usedLen < numChars) && (!maxByteLen || (theUsedByteLen < maxByteLen))) {
709 if ((usedLen += TO_BYTE(converter, flags, characters + usedLen, numChars - usedLen, bytes + theUsedByteLen, (maxByteLen ? maxByteLen - theUsedByteLen : 0), &localUsedByteLen)) < numChars) {
717 theUsedByteLen += localUsedByteLen;
720 theUsedByteLen -= localUsedByteLen;
722 theUsedByteLen--;
724 if ((localUsedLen = toBytesPrecompose(flags, characters + usedLen, numChars - usedLen, bytes + theUsedByteLen, (maxByteLen ? maxByteLen - theUsedByteLen : 0), &localUsedByteLen)) > 0) {
727 theUsedByteLen
[all...]
/macosx-10.9.5/hfs-226.1.1/hfs_japanese/hfs_japanese.kmodproj/
H A DJapaneseConverter.c1663 UInt32 theUsedByteLen = 0; local
1667 while ((processedCharLen < numChars) && (!maxByteLen || ((theUsedByteLen < maxByteLen) || ((flags & kCFStringEncodingComposeCombinings) && __CFIsValidCombiningCharJapanese(*characters))))) {
1671 theUsedByteLen++;
1674 theUsedByteLen++;
1680 theUsedByteLen++;
1683 theUsedByteLen += 2;
1685 if (theUsedByteLen > maxByteLen) break;
1691 theUsedByteLen += 2;
1693 if (theUsedByteLen > maxByteLen) break;
1704 *usedByteLen = theUsedByteLen;
[all...]

Completed in 83 milliseconds