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

  /external/mksh/src/
expr.c 838 *dst = asc2rtt(wc);
844 *d++ = asc2rtt((wc >> 6) | 0xC0);
846 *d++ = asc2rtt(((wc = wc > 0xFFFD ? 0xFFFD : wc) >> 12) | 0xE0);
847 *d++ = asc2rtt(((wc >> 6) & 0x3F) | 0x80);
849 *d++ = asc2rtt((wc & 0x3F) | 0x80);
lex.c     [all...]
sh.h 1501 #define asc2rtt macro
1507 #define asc2rtt macro
    [all...]
edit.c     [all...]
var.c 421 s[2] = asc2rtt(n & 0xFF);
    [all...]

Completed in 102 milliseconds