HomeSort by relevance Sort by last modified time
    Searched defs:UNI_SUR_LOW_START (Results 1 - 2 of 2) sorted by null

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h 119 #define UNI_SUR_LOW_START (UTF32)0xDC00
  /external/clang/lib/Basic/
ConvertUTF.c 62 #define UNI_SUR_LOW_START (UTF32)0xDC00
157 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
183 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
185 + (ch2 - UNI_SUR_LOW_START) + halfBase;
199 if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) {
240 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
242 + (ch2 - UNI_SUR_LOW_START) + halfBase;
256 if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) {
477 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);

Completed in 221 milliseconds