Home
last modified time | relevance | path

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

/GUIX-v6.2.1/common/src/
Dgx_utility_thai_glyph_shaping.c90 UINT code_count = 0; in _gx_utility_thai_utf8_to_unicode() local
102 code_count++; in _gx_utility_thai_utf8_to_unicode()
113 code_count++; in _gx_utility_thai_utf8_to_unicode()
122 code_list = (GX_CHAR_CODE *)_gx_system_memory_allocator(sizeof(GX_CHAR_CODE) * code_count); in _gx_utility_thai_utf8_to_unicode()
129 code_count = 0; in _gx_utility_thai_utf8_to_unicode()
137 code_list[code_count++] = 0xe4d; in _gx_utility_thai_utf8_to_unicode()
138 code_list[code_count++] = 0xe32; in _gx_utility_thai_utf8_to_unicode()
142 code_list[code_count++] = code_point; in _gx_utility_thai_utf8_to_unicode()
147 *returned_code_count = code_count; in _gx_utility_thai_utf8_to_unicode()
299 UINT code_count; in _gx_utility_thai_glyph_shaping() local
[all …]
Dgx_canvas_glyphs_draw.c283 UINT code_count; in _gx_canvas_compressed_glyphs_draw() local
287 ret = _gx_utility_thai_glyph_shaping(string, &code_list, &code_count); in _gx_canvas_compressed_glyphs_draw()
305 if (index < code_count) in _gx_canvas_compressed_glyphs_draw()
463 UINT code_count; in _gx_canvas_generic_glyphs_draw() local
467 ret = _gx_utility_thai_glyph_shaping(string, &code_list, &code_count); in _gx_canvas_generic_glyphs_draw()
484 if (index < code_count) in _gx_canvas_generic_glyphs_draw()
/GUIX-v6.2.1/guix_studio/
Dcanonical_normalize.cpp3317 ULONG code_count = 0; in gx_studio_canonical_utf8_to_unicode() local
3329 code_count++; in gx_studio_canonical_utf8_to_unicode()
3332 context->gx_canonical_context_code_list = new ULONG[code_count]; in gx_studio_canonical_utf8_to_unicode()
3337 context->gx_canonical_context_code_count = code_count; in gx_studio_canonical_utf8_to_unicode()
3341 for (code_count = 0; code_count < context->gx_canonical_context_code_count; code_count++) in gx_studio_canonical_utf8_to_unicode()
3344 context->gx_canonical_context_code_list[code_count] = code_point; in gx_studio_canonical_utf8_to_unicode()
Dresource_gen.cpp2071 UINT code_count; in MakeAdjustedThaiString() local
2080 if (_gx_utility_thai_glyph_shaping(utf8str, &code_list, &code_count) == GX_SUCCESS) in MakeAdjustedThaiString()
2082 adjusted_string = new GX_CHAR[code_count * 6 + 1]; in MakeAdjustedThaiString()
2085 for (index = 0; index < code_count; index++) in MakeAdjustedThaiString()