Home
last modified time | relevance | path

Searched refs:gx_font_first_glyph (Results 1 – 16 of 16) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_system_string_width_get.c109 if (char_val >= font_link -> gx_font_first_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()
219 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_kerning_font_get()
228 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_system_string_width_kerning_font_get()
241 if ((*left_glyph_ptr) == (pre_char_val + font_link -> gx_font_first_glyph)) in _gx_system_string_width_kerning_font_get()
438 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_get_ext()
447 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_system_string_width_get_ext()
Dgx_canvas_glyphs_draw.c131 if (char_val >= font_link -> gx_font_first_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()
153 if ((*left_glyph_ptr) == (pre_char_val + font_link -> gx_font_first_glyph)) in _gx_canvas_kerning_glyphs_draw()
335 if (char_val >= font_link -> gx_font_first_glyph && in _gx_canvas_compressed_glyphs_draw()
345 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_canvas_compressed_glyphs_draw()
514 if (char_val >= font_link -> gx_font_first_glyph && in _gx_canvas_generic_glyphs_draw()
524 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_canvas_generic_glyphs_draw()
Dgx_utility_string_to_alphamap.c198 if (font_page -> gx_font_first_glyph <= char_val && in _gx_utility_string_to_alphamap_ext()
208 … = &font_page -> gx_font_glyphs.gx_font_normal_glyphs[char_val - font_page -> gx_font_first_glyph]; in _gx_utility_string_to_alphamap_ext()
1090 if (font_page -> gx_font_first_glyph <= char_val && in _gx_utility_string_to_alphamap_draw()
1099 glyph_index = (GX_CHAR_CODE)(char_val - font_page -> gx_font_first_glyph); in _gx_utility_string_to_alphamap_draw()
Dgx_binres_theme_load.c1394 font -> gx_font_first_glyph = header.gx_page_header_first_glyph; in _gx_binres_one_font_load()
1402 glyph_count = (USHORT)(font -> gx_font_last_glyph - font -> gx_font_first_glyph + 1); in _gx_binres_one_font_load()
/GUIX-v6.2.1/guix_studio/
Dgx_studio_font_util.cpp700 new_font->gx_font_first_glyph = firstchar; in MakeFontPage()
1043 if (page->gx_font_first_glyph <= char_val && in InsertStringTableGlyphs()
1050 …ERNING_GLYPH *) &page->gx_font_glyphs.gx_font_kerning_glyphs[char_val - page->gx_font_first_glyph]; 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 …SED_GLYPH *) &page->gx_font_glyphs.gx_font_compressed_glyphs[char_val - page->gx_font_first_glyph]; in InsertStringTableGlyphs()
1095 …ph = (GX_GLYPH *)&page->gx_font_glyphs.gx_font_normal_glyphs[char_val - page->gx_font_first_glyph]; in InsertStringTableGlyphs()
1140 int num_chars = font->gx_font_last_glyph - font->gx_font_first_glyph + 1; in DestroyFont()
1196 index = glyph_start - page->gx_font_first_glyph; in FindFirstValidGlyph()
1248 if (compressed_glyph[index - page->gx_font_first_glyph].gx_glyph_map == NULL && in FindDeadGlyphBlock()
1249 compressed_glyph[index - page->gx_font_first_glyph].gx_glyph_advance == 0) in FindDeadGlyphBlock()
[all …]
Dbinary_resource_gen.cpp1502 header.gx_page_header_first_glyph = font->gx_font_first_glyph; in WritePageBlock()
1526 for (charval = font->gx_font_first_glyph; charval <= font->gx_font_last_glyph; charval++) in WritePageBlock()
1528 glyph_index = charval - font->gx_font_first_glyph; in WritePageBlock()
2937 for (charval = font->gx_font_first_glyph; charval <= font->gx_font_last_glyph; charval++) in GetPageDataSize()
2942 size = GetGlyphDataSize(written_size, font, charval - font->gx_font_first_glyph); in GetPageDataSize()
2946 size = GetGlyphKerningTableSize(font, charval - font->gx_font_first_glyph); in GetPageDataSize()
2953 for (charval = font->gx_font_first_glyph; charval <= font->gx_font_last_glyph; charval++) in GetPageDataSize()
2958 size = GetGlyphDataSize(written_size, font, charval - font->gx_font_first_glyph); in GetPageDataSize()
Dresource_gen.cpp3256 mapsize_list = new int[font->gx_font_last_glyph - font->gx_font_first_glyph + 1]; in WriteFontPage()
3259 for (charval = font->gx_font_first_glyph; charval <= font->gx_font_last_glyph; charval++ ) in WriteFontPage()
3261 index = charval - font->gx_font_first_glyph; in WriteFontPage()
3392 struct_name, name, page, (font->gx_font_last_glyph - font->gx_font_first_glyph + 1)); in WriteFontPage()
3395 for (charval = font->gx_font_first_glyph; charval <= font->gx_font_last_glyph; charval++ ) in WriteFontPage()
3397 index = charval - font->gx_font_first_glyph; in WriteFontPage()
3624 font->gx_font_first_glyph, in WriteFontPage()
3642 font->gx_font_first_glyph, in WriteFontPage()
DStudioXProject.cpp1358 put->font_pages[0].first_char = def_font->gx_font_first_glyph; in ConfigureDefaultFont()
2089 pFont->font_pages[0].first_char = pFontRec->font->gx_font_first_glyph; in CreateDefaultResources()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_utility_string_to_alphamap.c101 font_page[0].gx_font_first_glyph = 0x00; in control_thread_entry()
109 font_page[1].gx_font_first_glyph = 0x80; in control_thread_entry()
/GUIX-v6.2.1/common/inc/
Dgx_api.h1213 …GX_CHAR_CODE gx_font_first_glyph; /* First glyph on this page … member
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_24xrgb/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_24xrgb.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_8bit_palette/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_8bit_palette.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_1555xrgb/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_1555xrgb.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_565rgb/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_565rgb.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_565rgb_rotated_ccw/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_565rgb_rotated_ccw.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/demo_guix_jpeg_decode_565rgb_rotated_cw/Debug/BrowseInfo/
Ddemo_guix_jpeg_decode_565rgb_rotated_cw.pbw8302 "ID": "c:@S@GX_FONT_STRUCT@FI@gx_font_first_glyph",
8305 "display": "gx_font_first_glyph",
8311 "name": "gx_font_first_glyph",