msvcp: Add ostream::operator<<(unsigned short) implementation.
This commit is contained in:
parent
f159b33da2
commit
8e26d7aee8
|
@ -4937,19 +4937,15 @@ basic_ostream_wchar* __thiscall basic_ostream_short_print_short(basic_ostream_wc
|
||||||
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
static basic_ostream_wchar* basic_ostream_print_ushort(basic_ostream_wchar *this, unsigned short val, const num_put *numput)
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
|
||||||
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
|
||||||
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
int state = IOSTATE_goodbit;
|
int state = IOSTATE_goodbit;
|
||||||
|
|
||||||
TRACE("(%p %u)\n", this, val);
|
TRACE("(%p %d)\n", this, val);
|
||||||
|
|
||||||
if(basic_ostream_wchar_sentry_create(this)) {
|
if(basic_ostream_wchar_sentry_create(this)) {
|
||||||
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
||||||
const num_put *numput = num_put_wchar_use_facet(strbuf->loc);
|
|
||||||
ostreambuf_iterator_wchar dest = {0, strbuf};
|
ostreambuf_iterator_wchar dest = {0, strbuf};
|
||||||
|
|
||||||
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
||||||
|
@ -4960,6 +4956,24 @@ basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_w
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_wchar_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_short_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_short_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_short_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
|
|
|
@ -569,8 +569,8 @@
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ stub -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
||||||
|
|
|
@ -808,9 +808,9 @@
|
||||||
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z
|
||||||
@ stub -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@G@Z
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@G@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@G@Z
|
||||||
@ stub -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
||||||
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z
|
||||||
|
|
|
@ -6148,6 +6148,34 @@ basic_ostream_wchar* __thiscall basic_ostream_short_print_short(basic_ostream_wc
|
||||||
&basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
&basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static basic_ostream_wchar* basic_ostream_print_ushort(basic_ostream_wchar *this, unsigned short val, const num_put *numput)
|
||||||
|
{
|
||||||
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
|
int state = IOSTATE_goodbit;
|
||||||
|
|
||||||
|
TRACE("(%p %d)\n", this, val);
|
||||||
|
|
||||||
|
if(basic_ostream_wchar_sentry_create(this)) {
|
||||||
|
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
||||||
|
ostreambuf_iterator_wchar dest = {0, strbuf};
|
||||||
|
|
||||||
|
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
||||||
|
}
|
||||||
|
basic_ostream_wchar_sentry_destroy(this);
|
||||||
|
|
||||||
|
basic_ios_wchar_setstate(base, state);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_short_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_short_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_short_use_facet(
|
||||||
|
&basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
|
|
|
@ -1401,8 +1401,8 @@
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ stub -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
||||||
|
|
|
@ -454,6 +454,8 @@ static basic_ostream_char* (*__thiscall p_basic_ostream_char_print_double)(basic
|
||||||
|
|
||||||
static basic_ostream_wchar* (*__thiscall p_basic_ostream_wchar_print_double)(basic_ostream_wchar*, double);
|
static basic_ostream_wchar* (*__thiscall p_basic_ostream_wchar_print_double)(basic_ostream_wchar*, double);
|
||||||
|
|
||||||
|
static basic_ostream_wchar* (*__thiscall p_basic_ostream_short_print_ushort)(basic_ostream_wchar*, unsigned short);
|
||||||
|
|
||||||
/* basic_ios */
|
/* basic_ios */
|
||||||
static locale* (*__thiscall p_basic_ios_char_imbue)(basic_ios_char*, locale*, const locale*);
|
static locale* (*__thiscall p_basic_ios_char_imbue)(basic_ios_char*, locale*, const locale*);
|
||||||
|
|
||||||
|
@ -646,6 +648,9 @@ static BOOL init(void)
|
||||||
SET(p_basic_ostream_wchar_print_double,
|
SET(p_basic_ostream_wchar_print_double,
|
||||||
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@N@Z");
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@N@Z");
|
||||||
|
|
||||||
|
SET(p_basic_ostream_short_print_ushort,
|
||||||
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z");
|
||||||
|
|
||||||
SET(p_ios_base_rdstate,
|
SET(p_ios_base_rdstate,
|
||||||
"?rdstate@ios_base@std@@QEBAHXZ");
|
"?rdstate@ios_base@std@@QEBAHXZ");
|
||||||
SET(p_ios_base_setf_mask,
|
SET(p_ios_base_setf_mask,
|
||||||
|
@ -752,6 +757,9 @@ static BOOL init(void)
|
||||||
SET(p_basic_ostream_wchar_print_double,
|
SET(p_basic_ostream_wchar_print_double,
|
||||||
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@N@Z");
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@N@Z");
|
||||||
|
|
||||||
|
SET(p_basic_ostream_short_print_ushort,
|
||||||
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z");
|
||||||
|
|
||||||
SET(p_ios_base_rdstate,
|
SET(p_ios_base_rdstate,
|
||||||
"?rdstate@ios_base@std@@QBEHXZ");
|
"?rdstate@ios_base@std@@QBEHXZ");
|
||||||
SET(p_ios_base_setf_mask,
|
SET(p_ios_base_setf_mask,
|
||||||
|
@ -1608,6 +1616,25 @@ static void test_istream_getline(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_ostream_print_ushort(void)
|
||||||
|
{
|
||||||
|
static const wchar_t str65[] = { '6','5',0 };
|
||||||
|
|
||||||
|
basic_stringstream_wchar wss;
|
||||||
|
basic_string_wchar pwstr;
|
||||||
|
const wchar_t *wstr;
|
||||||
|
|
||||||
|
call_func3(p_basic_stringstream_wchar_ctor_mode, &wss, OPENMODE_in|OPENMODE_out, TRUE);
|
||||||
|
call_func2(p_basic_ostream_short_print_ushort, &wss.base.base2, 65);
|
||||||
|
|
||||||
|
call_func2(p_basic_stringstream_wchar_str_get, &wss, &pwstr);
|
||||||
|
wstr = call_func1(p_basic_string_wchar_cstr, &pwstr);
|
||||||
|
ok(!lstrcmpW(str65, wstr), "wstr = %s\n", wine_dbgstr_w(wstr));
|
||||||
|
|
||||||
|
call_func1(p_basic_string_wchar_dtor, &pwstr);
|
||||||
|
call_func1(p_basic_stringstream_wchar_vbase_dtor, &wss);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
START_TEST(ios)
|
START_TEST(ios)
|
||||||
{
|
{
|
||||||
|
@ -1623,4 +1650,5 @@ START_TEST(ios)
|
||||||
test_istream_peek();
|
test_istream_peek();
|
||||||
test_istream_tellg();
|
test_istream_tellg();
|
||||||
test_istream_getline();
|
test_istream_getline();
|
||||||
|
test_ostream_print_ushort();
|
||||||
}
|
}
|
||||||
|
|
|
@ -997,8 +997,8 @@
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) msvcp90.??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) msvcp90.??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z
|
||||||
@ stub -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) msvcp90.??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z
|
||||||
|
|
|
@ -6506,19 +6506,15 @@ basic_ostream_wchar* __thiscall basic_ostream_short_print_short(basic_ostream_wc
|
||||||
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
static basic_ostream_wchar* basic_ostream_print_ushort(basic_ostream_wchar *this, unsigned short val, const num_put *numput)
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
|
||||||
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
|
||||||
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
int state = IOSTATE_goodbit;
|
int state = IOSTATE_goodbit;
|
||||||
|
|
||||||
TRACE("(%p %u)\n", this, val);
|
TRACE("(%p %d)\n", this, val);
|
||||||
|
|
||||||
if(basic_ostream_wchar_sentry_create(this)) {
|
if(basic_ostream_wchar_sentry_create(this)) {
|
||||||
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
||||||
const num_put *numput = num_put_wchar_use_facet(strbuf->loc);
|
|
||||||
ostreambuf_iterator_wchar dest = {0, strbuf};
|
ostreambuf_iterator_wchar dest = {0, strbuf};
|
||||||
|
|
||||||
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
||||||
|
@ -6529,6 +6525,24 @@ basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_w
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_wchar_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_short_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_short_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_short_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
|
|
|
@ -1463,8 +1463,8 @@
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
@ cdecl -arch=win64 ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAAEAV01@_N@Z(ptr long) basic_ostream_char_print_bool
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ stub -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
@ thiscall -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@I@Z(ptr long) basic_ostream_short_print_uint
|
||||||
|
|
|
@ -6540,19 +6540,15 @@ basic_ostream_wchar* __thiscall basic_ostream_short_print_short(basic_ostream_wc
|
||||||
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
static basic_ostream_wchar* basic_ostream_print_ushort(basic_ostream_wchar *this, unsigned short val, const num_put *numput)
|
||||||
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
|
||||||
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
|
||||||
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
int state = IOSTATE_goodbit;
|
int state = IOSTATE_goodbit;
|
||||||
|
|
||||||
TRACE("(%p %u)\n", this, val);
|
TRACE("(%p %d)\n", this, val);
|
||||||
|
|
||||||
if(basic_ostream_wchar_sentry_create(this)) {
|
if(basic_ostream_wchar_sentry_create(this)) {
|
||||||
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
basic_streambuf_wchar *strbuf = basic_ios_wchar_rdbuf_get(base);
|
||||||
const num_put *numput = num_put_wchar_use_facet(strbuf->loc);
|
|
||||||
ostreambuf_iterator_wchar dest = {0, strbuf};
|
ostreambuf_iterator_wchar dest = {0, strbuf};
|
||||||
|
|
||||||
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
num_put_wchar_put_ulong(numput, &dest, dest, &base->base, basic_ios_wchar_fill_get(base), val);
|
||||||
|
@ -6563,6 +6559,24 @@ basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_w
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_wchar_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_wchar_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_wchar_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z */
|
||||||
|
/* ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z */
|
||||||
|
DEFINE_THISCALL_WRAPPER(basic_ostream_short_print_ushort, 8)
|
||||||
|
basic_ostream_wchar* __thiscall basic_ostream_short_print_ushort(basic_ostream_wchar *this, unsigned short val)
|
||||||
|
{
|
||||||
|
return basic_ostream_print_ushort(this, val, num_put_short_use_facet(
|
||||||
|
basic_ios_wchar_rdbuf_get(basic_ostream_wchar_get_basic_ios(this))->loc));
|
||||||
|
}
|
||||||
|
|
||||||
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
static basic_ostream_wchar* basic_ostream_print_int(basic_ostream_wchar *this, int val, const num_put *numput)
|
||||||
{
|
{
|
||||||
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
basic_ios_wchar *base = basic_ostream_wchar_get_basic_ios(this);
|
||||||
|
|
|
@ -1797,8 +1797,9 @@
|
||||||
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@F@Z(ptr long) basic_ostream_short_print_short
|
||||||
@ stub -arch=win32 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ stub -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z(ptr long) basic_ostream_short_print_ushort
|
||||||
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ cdecl -arch=arm ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ thiscall -arch=i386 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
@ cdecl -arch=win64 ??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@H@Z(ptr long) basic_ostream_short_print_int
|
||||||
|
|
|
@ -468,6 +468,8 @@ static basic_ostream_char* (*__thiscall p_basic_ostream_char_print_double)(basic
|
||||||
|
|
||||||
static basic_ostream_wchar* (*__thiscall p_basic_ostream_wchar_print_double)(basic_ostream_wchar*, double);
|
static basic_ostream_wchar* (*__thiscall p_basic_ostream_wchar_print_double)(basic_ostream_wchar*, double);
|
||||||
|
|
||||||
|
static basic_ostream_wchar* (*__thiscall p_basic_ostream_short_print_ushort)(basic_ostream_wchar*, unsigned short);
|
||||||
|
|
||||||
/* basic_ios */
|
/* basic_ios */
|
||||||
static locale* (*__thiscall p_basic_ios_char_imbue)(basic_ios_char*, locale*, const locale*);
|
static locale* (*__thiscall p_basic_ios_char_imbue)(basic_ios_char*, locale*, const locale*);
|
||||||
|
|
||||||
|
@ -685,6 +687,9 @@ static BOOL init(void)
|
||||||
SET(p_basic_ostream_wchar_print_double,
|
SET(p_basic_ostream_wchar_print_double,
|
||||||
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@N@Z");
|
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QEAAAEAV01@N@Z");
|
||||||
|
|
||||||
|
SET(p_basic_ostream_short_print_ushort,
|
||||||
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QEAAAEAV01@G@Z");
|
||||||
|
|
||||||
SET(p_ios_base_rdstate,
|
SET(p_ios_base_rdstate,
|
||||||
"?rdstate@ios_base@std@@QEBAHXZ");
|
"?rdstate@ios_base@std@@QEBAHXZ");
|
||||||
SET(p_ios_base_setf_mask,
|
SET(p_ios_base_setf_mask,
|
||||||
|
@ -796,6 +801,9 @@ static BOOL init(void)
|
||||||
SET(p_basic_ostream_wchar_print_double,
|
SET(p_basic_ostream_wchar_print_double,
|
||||||
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAAAAV01@N@Z");
|
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAAAAV01@N@Z");
|
||||||
|
|
||||||
|
SET(p_basic_ostream_short_print_ushort,
|
||||||
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAAAAV01@G@Z");
|
||||||
|
|
||||||
SET(p_ios_base_rdstate,
|
SET(p_ios_base_rdstate,
|
||||||
"?rdstate@ios_base@std@@QBAHXZ");
|
"?rdstate@ios_base@std@@QBAHXZ");
|
||||||
SET(p_ios_base_setf_mask,
|
SET(p_ios_base_setf_mask,
|
||||||
|
@ -906,6 +914,9 @@ static BOOL init(void)
|
||||||
SET(p_basic_ostream_wchar_print_double,
|
SET(p_basic_ostream_wchar_print_double,
|
||||||
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@N@Z");
|
"??6?$basic_ostream@_WU?$char_traits@_W@std@@@std@@QAEAAV01@N@Z");
|
||||||
|
|
||||||
|
SET(p_basic_ostream_short_print_ushort,
|
||||||
|
"??6?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEAAV01@G@Z");
|
||||||
|
|
||||||
SET(p_ios_base_rdstate,
|
SET(p_ios_base_rdstate,
|
||||||
"?rdstate@ios_base@std@@QBEHXZ");
|
"?rdstate@ios_base@std@@QBEHXZ");
|
||||||
SET(p_ios_base_setf_mask,
|
SET(p_ios_base_setf_mask,
|
||||||
|
@ -1920,6 +1931,26 @@ static void test_istream_getline(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_ostream_print_ushort(void)
|
||||||
|
{
|
||||||
|
static const wchar_t str65[] = { '6','5',0 };
|
||||||
|
|
||||||
|
basic_stringstream_wchar wss;
|
||||||
|
basic_string_wchar pwstr;
|
||||||
|
const wchar_t *wstr;
|
||||||
|
|
||||||
|
call_func1(p_basic_stringstream_wchar_ctor, &wss);
|
||||||
|
call_func2(p_basic_ostream_short_print_ushort, &wss.base.base2, 65);
|
||||||
|
|
||||||
|
call_func2(p_basic_stringstream_wchar_str_get, &wss, &pwstr);
|
||||||
|
wstr = call_func1(p_basic_string_wchar_cstr, &pwstr);
|
||||||
|
ok(!lstrcmpW(str65, wstr), "wstr = %s\n", wine_dbgstr_w(wstr));
|
||||||
|
|
||||||
|
call_func1(p_basic_string_wchar_dtor, &pwstr);
|
||||||
|
call_func1(p_basic_stringstream_wchar_vbase_dtor, &wss);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
START_TEST(ios)
|
START_TEST(ios)
|
||||||
{
|
{
|
||||||
if(!init())
|
if(!init())
|
||||||
|
@ -1935,6 +1966,7 @@ START_TEST(ios)
|
||||||
test_istream_peek();
|
test_istream_peek();
|
||||||
test_istream_tellg();
|
test_istream_tellg();
|
||||||
test_istream_getline();
|
test_istream_getline();
|
||||||
|
test_ostream_print_ushort();
|
||||||
|
|
||||||
ok(!invalid_parameter, "invalid_parameter_handler was invoked too many times\n");
|
ok(!invalid_parameter, "invalid_parameter_handler was invoked too many times\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue