Home
last modified time | relevance | path

Searched refs:char_val (Results 1 – 4 of 4) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_system_string_width_get.c79 GX_CHAR_CODE char_val; in _gx_system_string_width_compressed_font_get() local
92 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_compressed_font_get()
94 if ((ret != GX_SUCCESS) || (char_val == 0)) in _gx_system_string_width_compressed_font_get()
96 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_system_string_width_compressed_font_get()
100 if (char_val == 0) in _gx_system_string_width_compressed_font_get()
109 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_compressed_font_get()
110 char_val <= font_link -> gx_font_last_glyph) in _gx_system_string_width_compressed_font_get()
118 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_system_string_width_compressed_font_get()
119 glyph = &font_link -> gx_font_glyphs.gx_font_compressed_glyphs[char_val]; in _gx_system_string_width_compressed_font_get()
182 GX_CHAR_CODE char_val; in _gx_system_string_width_kerning_font_get() local
[all …]
Dgx_canvas_glyphs_draw.c83 GX_CHAR_CODE char_val; in _gx_canvas_kerning_glyphs_draw() local
115 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_canvas_kerning_glyphs_draw()
117 if ((ret != GX_SUCCESS) || (char_val == 0)) in _gx_canvas_kerning_glyphs_draw()
119 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr++); in _gx_canvas_kerning_glyphs_draw()
122 if (char_val == 0) in _gx_canvas_kerning_glyphs_draw()
131 if (char_val >= font_link -> gx_font_first_glyph && in _gx_canvas_kerning_glyphs_draw()
132 char_val <= font_link -> gx_font_last_glyph) in _gx_canvas_kerning_glyphs_draw()
141 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_canvas_kerning_glyphs_draw()
143 …yph = &((GX_CONST GX_KERNING_GLYPH *)font_link -> gx_font_glyphs.gx_font_kerning_glyphs)[char_val]; in _gx_canvas_kerning_glyphs_draw()
210 pre_char_val = char_val; in _gx_canvas_kerning_glyphs_draw()
[all …]
Dgx_utility_string_to_alphamap.c167 GX_CHAR_CODE char_val; in _gx_utility_string_to_alphamap_ext() local
182 _gx_utility_utf8_string_character_get(&string_copy, &char_val, &glyph_len); in _gx_utility_string_to_alphamap_ext()
184 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_utility_string_to_alphamap_ext()
189 if (!char_val) in _gx_utility_string_to_alphamap_ext()
198 if (font_page -> gx_font_first_glyph <= char_val && in _gx_utility_string_to_alphamap_ext()
199 font_page -> gx_font_last_glyph >= char_val) in _gx_utility_string_to_alphamap_ext()
208 …glyph = &font_page -> gx_font_glyphs.gx_font_normal_glyphs[char_val - font_page -> gx_font_first_g… in _gx_utility_string_to_alphamap_ext()
995 GX_CHAR_CODE char_val; in _gx_utility_string_to_alphamap_draw() local
1074 _gx_utility_utf8_string_character_get(&string_copy, &char_val, &glyph_len); in _gx_utility_string_to_alphamap_draw()
1076 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_utility_string_to_alphamap_draw()
[all …]
/GUIX-v6.2.1/guix_studio/
Dgx_studio_font_util.cpp998 DWORD char_val; in InsertStringTableGlyphs() local
1034 for (char_val = 0; char_val < maxval; char_val++) in InsertStringTableGlyphs()
1036 if (char_map->Test(char_val)) in InsertStringTableGlyphs()
1043 if (page->gx_font_first_glyph <= char_val && in InsertStringTableGlyphs()
1044 page->gx_font_last_glyph >= char_val) in InsertStringTableGlyphs()
1050 …yph = (GX_KERNING_GLYPH *) &page->gx_font_glyphs.gx_font_kerning_glyphs[char_val - page->gx_font_f… in InsertStringTableGlyphs()
1056 …if (gx_studio_font_util_get_glyph(handle, char_val, height, anti_alias, &glyph) != GXS_FONT_UTIL_S… in InsertStringTableGlyphs()
1067 if (char_val <= 0xff) in InsertStringTableGlyphs()
1069 …gx_studio_font_util_get_kerning_info(handle, char_val, page->gx_font_first_glyph, page->gx_font_la… in InsertStringTableGlyphs()
1076 …(GX_COMPRESSED_GLYPH *) &page->gx_font_glyphs.gx_font_compressed_glyphs[char_val - page->gx_font_f… in InsertStringTableGlyphs()
[all …]