Searched refs:def_char (Results 1 – 6 of 6) sorted by relevance
/reactos/sdk/tools/unicode/ |
H A D | mbtowc.c | 40 const unsigned char def_char = table->uni2cp_low[table->uni2cp_high[def_unicode_char >> 8] in check_invalid_chars_sbcs() local 44 if ((cp2uni[*src] == def_unicode_char && *src != def_char) || in check_invalid_chars_sbcs() 168 const unsigned short def_char = table->uni2cp_low[table->uni2cp_high[def_unicode_char >> 8] in check_invalid_chars_dbcs() local 177 ((src[0] << 8) | src[1]) != def_char) break; in check_invalid_chars_dbcs() 181 else if ((cp2uni[*src] == def_unicode_char && *src != def_char) || in check_invalid_chars_dbcs()
|
H A D | wctomb.c | 34 if ((flags & WC_NO_BEST_FIT_CHARS) || ch == (unsigned char)table->info.def_char) in is_valid_sbcs_mapping() 169 def = table->info.def_char & 0xff; in wcstombs_sbcs_slow() 227 if ((flags & WC_NO_BEST_FIT_CHARS) || ch == table->info.def_char) in is_valid_dbcs_mapping() 243 if (!defchar) return table->info.def_char; in get_defchar_dbcs()
|
/reactos/sdk/include/host/wine/ |
H A D | unicode.h | 70 WCHAR def_char; /* default char value (can be double-byte) */ member
|
/reactos/dll/win32/wininet/ |
H A D | urlcache.c | 776 BOOL def_char; in cache_containers_init() local 805 NULL, 0, NULL, &def_char) || def_char) in cache_containers_init() 812 NULL, 0, NULL, &def_char) || def_char) in cache_containers_init()
|
/reactos/dll/win32/kernel32/winnls/string/ |
H A D | locale.c | 2170 if (table->info.def_char & 0xff00) in GetCPInfo() 2172 cpinfo->DefaultChar[0] = (table->info.def_char & 0xff00) >> 8; in GetCPInfo() 2173 cpinfo->DefaultChar[1] = table->info.def_char & 0x00ff; in GetCPInfo() 2177 cpinfo->DefaultChar[0] = table->info.def_char & 0xff; in GetCPInfo()
|
/reactos/modules/rostests/winetests/gdi32/ |
H A D | font.c | 765 BYTE first_char, last_char, def_char, break_char; in test_bitmap_font_metrics() member 1053 …ok(tm.tmDefaultChar == fd[i].def_char, "%s(%d): tm.tmDefaultChar = %02x\n", fd[i].face_name, heigh… in test_bitmap_font_metrics()
|