bin/sh/parser.c
1791
ESC_USTPUTC(0xc0 | v >> 6, out);
bin/sh/parser.c
1792
ESC_USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1795
ESC_USTPUTC(0xe0 | v >> 12, out);
bin/sh/parser.c
1796
ESC_USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1797
ESC_USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1800
ESC_USTPUTC(0xf0 | v >> 18, out);
bin/sh/parser.c
1801
ESC_USTPUTC(0x80 | ((v >> 12) & 0x3f), out);
bin/sh/parser.c
1802
ESC_USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1803
ESC_USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1808
ESC_USTPUTC(0xf8 | v >> 24, out);
bin/sh/parser.c
1809
ESC_USTPUTC(0x80 | ((v >> 18) & 0x3f), out);
bin/sh/parser.c
1810
ESC_USTPUTC(0x80 | ((v >> 12) & 0x3f), out);
bin/sh/parser.c
1811
ESC_USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1812
ESC_USTPUTC(0x80 | (v & 0x3f), out);
bin/sh/parser.c
1815
ESC_USTPUTC(0xfC | v >> 30, out);
bin/sh/parser.c
1816
ESC_USTPUTC(0x80 | ((v >> 24) & 0x3f), out);
bin/sh/parser.c
1817
ESC_USTPUTC(0x80 | ((v >> 18) & 0x3f), out);
bin/sh/parser.c
1818
ESC_USTPUTC(0x80 | ((v >> 12) & 0x3f), out);
bin/sh/parser.c
1819
ESC_USTPUTC(0x80 | ((v >> 6) & 0x3f), out);
bin/sh/parser.c
1820
ESC_USTPUTC(0x80 | (v & 0x3f), out);