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/llvm/lib/Support/
ConvertUTF.c 62 #define UNI_SUR_LOW_START (UTF32)0xDC00
156 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
182 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
184 + (ch2 - UNI_SUR_LOW_START) + halfBase;
198 if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) {
239 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
241 + (ch2 - UNI_SUR_LOW_START) + halfBase;
255 if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) {
484 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);

Completed in 26 milliseconds