Lines Matching refs:char_val

79 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
205 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_kerning_font_get()
206 if ((ret != GX_SUCCESS) || (char_val == 0)) in _gx_system_string_width_kerning_font_get()
208 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr++); in _gx_system_string_width_kerning_font_get()
210 if (char_val == 0) in _gx_system_string_width_kerning_font_get()
219 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_kerning_font_get()
220 char_val <= font_link -> gx_font_last_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()
230 glyph = &font_link -> gx_font_glyphs.gx_font_kerning_glyphs[char_val]; in _gx_system_string_width_kerning_font_get()
254 pre_char_val = char_val; in _gx_system_string_width_kerning_font_get()
386 GX_CHAR_CODE char_val; in _gx_system_string_width_get_ext() local
421 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_system_string_width_get_ext()
423 if ((ret != GX_SUCCESS) || (char_val == 0)) in _gx_system_string_width_get_ext()
425 char_val = (GX_CHAR_CODE)(*string_copy.gx_string_ptr); in _gx_system_string_width_get_ext()
429 if (char_val == 0) in _gx_system_string_width_get_ext()
438 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_get_ext()
439 char_val <= font_link -> gx_font_last_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()
448 glyph = &font_link -> gx_font_glyphs.gx_font_normal_glyphs[char_val]; in _gx_system_string_width_get_ext()