Home
last modified time | relevance | path

Searched refs:ret (Results 1 – 8 of 8) sorted by relevance

/GUIX-v6.4.1/common/src/
Dgx_system_string_width_get.c85 UINT ret; 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()
196 UINT ret; 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()
392 UINT ret; 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()
Dgx_canvas_glyphs_draw.c102 UINT ret; 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()
279 UINT ret; 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()
317 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_canvas_compressed_glyphs_draw()
321 if ((ret != GX_SUCCESS) || (char_val == 0)) in _gx_canvas_compressed_glyphs_draw()
460 UINT ret; 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()
496 ret = _gx_utility_utf8_string_character_get(&string_copy, &char_val, GX_NULL); in _gx_canvas_generic_glyphs_draw()
[all …]
Dgxe_widget_status_add.c73 UINT ret; in _gxe_widget_status_add() local
88 ret = _gx_widget_status_add(widget, status); in _gxe_widget_status_add()
91 return(ret); in _gxe_widget_status_add()
Dgx_utility_thai_glyph_shaping.c88 UINT ret; in _gx_utility_thai_utf8_to_unicode() local
96 ret = _gx_utility_utf8_string_character_get(&string_copy, &code_point, GX_NULL); in _gx_utility_thai_utf8_to_unicode()
97 if ((ret != GX_SUCCESS) || (code_point == 0)) in _gx_utility_thai_utf8_to_unicode()
/GUIX-v6.4.1/guix_studio/
Dcanonical_normalize.cpp3269 UINT ret; in gx_studio_nfc_form_detect() local
3281 ret = _gx_utility_utf8_string_character_get(&string_copy, &code_point, GX_NULL); in gx_studio_nfc_form_detect()
3283 if ((ret != GX_SUCCESS) || (code_point == 0)) in gx_studio_nfc_form_detect()
3316 UINT ret; in gx_studio_canonical_utf8_to_unicode() local
3322 ret = _gx_utility_utf8_string_character_get(&string_copy, &code_point, GX_NULL); in gx_studio_canonical_utf8_to_unicode()
3324 if ((ret != GX_SUCCESS) || (code_point == 0)) in gx_studio_canonical_utf8_to_unicode()
DMainFrm.cpp1404 int ret = playback->Read(&input, sizeof(INPUT)); in PlaybackOnemacro() local
1407 while (ret == sizeof(INPUT)) in PlaybackOnemacro()
1459 ret = playback->Read(&input, sizeof(INPUT)); in PlaybackOnemacro()
1470 ret = playback->Read(&input, sizeof(INPUT)); in PlaybackOnemacro()
1543 BOOL ret = m_hwnd->PostMessage(WM_COMMAND, wParam, NULL); in MacroPlayThread() local
/GUIX-v6.4.1/guix_studio/libs/freetype/include/freetype/internal/
Dftcalc.h198 long long ret, tmp; in FT_MulFix_x86_64() local
201 ret = (long long)a * b; in FT_MulFix_x86_64()
202 tmp = ret >> 63; in FT_MulFix_x86_64()
203 ret += 0x8000 + tmp; in FT_MulFix_x86_64()
205 return (FT_Int32)( ret >> 16 ); in FT_MulFix_x86_64()
/GUIX-v6.4.1/test/guix_test/regression_test/utility/
Dgx_show_canvas.c445 int ret = 0; in show_frame() local
458ret = read_file_header(pFile, &file_format, &total_frames, &color_format, &bits_per_pixel, &width,… in show_frame()
460 if(ret == -1) in show_frame()