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

/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660.cpp106 int32 utf8Len; local
111 utf8Len = UTF8 - utf8;
112 if (dstCount + utf8Len > dstLimit)
115 for (j = 0; j < utf8Len; j++)
117 dstCount += utf8Len;
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dencodings.cpp945 int32 utf8Len; local
950 utf8Len = UTF8 - utf8;
951 if ((dstCount + utf8Len) > dstLimit)
954 for (j = 0; j < utf8Len; j++)
956 dstCount += utf8Len;
1028 int32 utf8Len = UTF8 - utf8; local
1029 if ((dstCount + utf8Len) > dstLimit)
1032 for (int32 j = 0; j < utf8Len; j++)
1034 dstCount += utf8Len;

Completed in 25 milliseconds