HomeSort by relevance Sort by last modified time
    Searched refs:byteMask (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Basic/
ConvertUTF.c 230 const UTF32 byteMask = 0xBF;
277 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
278 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
279 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
300 const UTF32 byteMask = 0xBF;
330 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
331 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
332 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
UTF8.cpp 138 const UChar32 byteMask = 0xBF;
191 case 4: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
192 case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
193 case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;

Completed in 705 milliseconds