HomeSort by relevance Sort by last modified time
    Searched full:keepbytes (Results 1 - 1 of 1) sorted by null

  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utf8ByteLengthFilter.java 64 int keepBytes = mMaxBytes - destByteCount;
65 if (keepBytes <= 0) {
67 } else if (keepBytes >= srcByteCount) {
70 // find end position of largest sequence that fits in keepBytes
73 keepBytes -= (c < (char) 0x0080) ? 1 : (c < (char) 0x0800 ? 2 : 3);
74 if (keepBytes < 0) {

Completed in 3003 milliseconds