Home
last modified time | relevance | path

Searched full:codepoint (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/util/
H A Dunicode.c16 static bool is_valid_codepoint(int codepoint) in is_valid_codepoint() argument
18 if (codepoint > 0x10FFFFu) { in is_valid_codepoint()
21 if ((codepoint >= 0xFDD0 && codepoint <= 0xFDEF) in is_valid_codepoint()
22 || (codepoint & 0xFFFE) == 0xFFFE) { in is_valid_codepoint()
25 if (codepoint >= 0xD800 && codepoint <= 0xDFFF) { in is_valid_codepoint()
53 * A well-formed sequence is valid unless it encodes a codepoint
55 * noncharacters, a surrogate codepoint, or is overlong. Except the
60 * Returns: the Unicode codepoint on success, -1 on failure.
117 * @codepoint: Unicode codepoint to encode
119 * Convert Unicode codepoint @codepoint to modified UTF-8.
[all …]
/openbmc/bmcweb/src/
H A Djson_html_serializer.cpp26 static uint8_t decode(uint8_t& state, uint32_t& codePoint, in decode() argument
58 codePoint = (state != utf8Accept) in decode()
59 ? (byte & 0x3fU) | (codePoint << 6) in decode()
69 uint32_t codePoint = 0; in dumpEscaped() local
81 switch (decode(state, codePoint, byte)) in dumpEscaped()
85 switch (codePoint) in dumpEscaped()
175 if ((codePoint <= 0x1F) or (codePoint >= 0x7F)) in dumpEscaped()
177 if (codePoint <= 0xFFFF) in dumpEscaped()
182 static_cast<uint16_t>(codePoint)); in dumpEscaped()
191 0xD7C0 + (codePoint >> 10)), in dumpEscaped()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/
H A DCVE-2017-16516.patch27 if ((codepoint & 0xFC00) == 0xD800) {
34 codepoint =
/openbmc/qemu/include/qemu/
H A Dunicode.h5 ssize_t mod_utf8_encode(char buf[], size_t bufsz, int codepoint);
/openbmc/u-boot/drivers/video/
H A Dstb_truetype.h99 // Render a unicode codepoint to a bitmap
127 // Codepoint
133 // A visual character shape (every codepoint is rendered as
555 …codepoint_in_range; // if non-zero, then the chars are continuous, and this is the first codepoint
663 // codepoint-based functions.
695 STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWi…
703 STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, in…
762 …intBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int…
771 … *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int…
775 …d char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint);
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddammit.py183 for codepoint, name in list(codepoint2name.items()):
184 character = chr(codepoint)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ncp/libowfat/
H A D0001-replace-__pure__-with-compiler-attribute-pure.patch293 * unicode codepoint) may be limited to 0x7f, 0xff or 0x10ffff. */