2 * Copyright 2010 Piotr Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/list.h"
35 #include "wine/unicode.h"
36 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(msvcp
);
39 char* __cdecl
_Getdays(void);
40 char* __cdecl
_Getmonths(void);
41 void* __cdecl
_Gettnames(void);
42 unsigned int __cdecl
___lc_codepage_func(void);
43 LCID
* __cdecl
___lc_handle_func(void);
44 const locale_facet
* __thiscall
locale__Getfacet(const locale
*, MSVCP_size_t
);
52 typedef struct _locale__Locimp
{
54 locale_facet
**facetvec
;
55 MSVCP_size_t facet_cnt
;
57 MSVCP_bool transparent
;
58 basic_string_char name
;
67 basic_string_char days
;
68 basic_string_char months
;
69 basic_string_char oldlocname
;
70 basic_string_char newlocname
;
88 const char *false_name
;
89 const char *true_name
;
97 const wchar_t *false_name
;
98 const wchar_t *true_name
;
101 /* ?_Id_cnt@id@locale@std@@0HA */
102 int locale_id__Id_cnt
= 0;
104 static locale__Locimp
*global_locale
;
105 static locale classic_locale
;
107 /* ?_Clocptr@_Locimp@locale@std@@0PAV123@A */
108 /* ?_Clocptr@_Locimp@locale@std@@0PEAV123@EA */
109 locale__Locimp
*locale__Locimp__Clocptr
= NULL
;
111 static char istreambuf_iterator_char_val(istreambuf_iterator_char
*this)
113 if(this->strbuf
&& !this->got
) {
114 int c
= basic_streambuf_char_sgetc(this->strbuf
);
125 static wchar_t istreambuf_iterator_wchar_val(istreambuf_iterator_wchar
*this)
127 if(this->strbuf
&& !this->got
) {
128 unsigned short c
= basic_streambuf_wchar_sgetc(this->strbuf
);
139 static void istreambuf_iterator_char_inc(istreambuf_iterator_char
*this)
141 if(!this->strbuf
|| basic_streambuf_char_sbumpc(this->strbuf
)==EOF
) {
146 istreambuf_iterator_char_val(this);
150 static void istreambuf_iterator_wchar_inc(istreambuf_iterator_wchar
*this)
152 if(!this->strbuf
|| basic_streambuf_wchar_sbumpc(this->strbuf
)==WEOF
) {
157 istreambuf_iterator_wchar_val(this);
161 static void ostreambuf_iterator_char_put(ostreambuf_iterator_char
*this, char ch
)
163 if(this->failed
|| basic_streambuf_char_sputc(this->strbuf
, ch
)==EOF
)
167 static void ostreambuf_iterator_wchar_put(ostreambuf_iterator_wchar
*this, wchar_t ch
)
169 if(this->failed
|| basic_streambuf_wchar_sputc(this->strbuf
, ch
)==WEOF
)
173 /* ??1facet@locale@std@@UAE@XZ */
174 /* ??1facet@locale@std@@UEAA@XZ */
175 DEFINE_THISCALL_WRAPPER(locale_facet_dtor
, 4)
176 void __thiscall
locale_facet_dtor(locale_facet
*this)
178 TRACE("(%p)\n", this);
181 DEFINE_THISCALL_WRAPPER(MSVCP_locale_facet_vector_dtor
, 8)
182 #define call_locale_facet_vector_dtor(this, flags) CALL_VTBL_FUNC(this, 0, \
183 locale_facet*, (locale_facet*, unsigned int), (this, flags))
184 locale_facet
* __thiscall
MSVCP_locale_facet_vector_dtor(locale_facet
*this, unsigned int flags
)
186 TRACE("(%p %x)\n", this, flags
);
188 /* we have an array, with the number of elements stored before the first object */
189 int i
, *ptr
= (int *)this-1;
191 for(i
=*ptr
-1; i
>=0; i
--)
192 locale_facet_dtor(this+i
);
193 MSVCRT_operator_delete(ptr
);
195 locale_facet_dtor(this);
197 MSVCRT_operator_delete(this);
208 static struct list lazy_facets
= LIST_INIT(lazy_facets
);
210 /* Not exported from msvcp90 */
211 /* ?facet_Register@facet@locale@std@@CAXPAV123@@Z */
212 /* ?facet_Register@facet@locale@std@@CAXPEAV123@@Z */
213 void __cdecl
locale_facet_register(locale_facet
*add
)
215 facets_elem
*head
= MSVCRT_operator_new(sizeof(*head
));
217 ERR("Out of memory\n");
218 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
222 list_add_head(&lazy_facets
, &head
->entry
);
225 /* Not exported from msvcp90 */
226 /* ?_Register@facet@locale@std@@QAEXXZ */
227 /* ?_Register@facet@locale@std@@QEAAXXZ */
228 DEFINE_THISCALL_WRAPPER(locale_facet__Register
, 4)
229 void __thiscall
locale_facet__Register(locale_facet
*this)
231 TRACE("(%p)\n", this);
232 locale_facet_register(this);
235 /* Not exported from msvcp90 */
236 /* ??_7facet@locale@std@@6B@ */
237 extern const vtable_ptr MSVCP_locale_facet_vtable
;
239 /* ??0id@locale@std@@QAE@I@Z */
240 /* ??0id@locale@std@@QEAA@_K@Z */
241 DEFINE_THISCALL_WRAPPER(locale_id_ctor_id
, 8)
242 locale_id
* __thiscall
locale_id_ctor_id(locale_id
*this, MSVCP_size_t id
)
244 TRACE("(%p %lu)\n", this, id
);
250 /* ??_Fid@locale@std@@QAEXXZ */
251 /* ??_Fid@locale@std@@QEAAXXZ */
252 DEFINE_THISCALL_WRAPPER(locale_id_ctor
, 4)
253 locale_id
* __thiscall
locale_id_ctor(locale_id
*this)
255 TRACE("(%p)\n", this);
261 /* ??Bid@locale@std@@QAEIXZ */
262 /* ??Bid@locale@std@@QEAA_KXZ */
263 DEFINE_THISCALL_WRAPPER(locale_id_operator_size_t
, 4)
264 MSVCP_size_t __thiscall
locale_id_operator_size_t(locale_id
*this)
268 TRACE("(%p)\n", this);
271 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
272 this->id
= ++locale_id__Id_cnt
;
279 /* ?_Id_cnt_func@id@locale@std@@CAAAHXZ */
280 /* ?_Id_cnt_func@id@locale@std@@CAAEAHXZ */
281 int* __cdecl
locale_id__Id_cnt_func(void)
284 return &locale_id__Id_cnt
;
287 /* ??_Ffacet@locale@std@@QAEXXZ */
288 /* ??_Ffacet@locale@std@@QEAAXXZ */
289 DEFINE_THISCALL_WRAPPER(locale_facet_ctor
, 4)
290 locale_facet
* __thiscall
locale_facet_ctor(locale_facet
*this)
292 TRACE("(%p)\n", this);
293 this->vtable
= &MSVCP_locale_facet_vtable
;
298 /* ??0facet@locale@std@@IAE@I@Z */
299 /* ??0facet@locale@std@@IEAA@_K@Z */
300 DEFINE_THISCALL_WRAPPER(locale_facet_ctor_refs
, 8)
301 locale_facet
* __thiscall
locale_facet_ctor_refs(locale_facet
*this, MSVCP_size_t refs
)
303 TRACE("(%p %lu)\n", this, refs
);
304 this->vtable
= &MSVCP_locale_facet_vtable
;
309 /* ?_Incref@facet@locale@std@@QAEXXZ */
310 /* ?_Incref@facet@locale@std@@QEAAXXZ */
311 DEFINE_THISCALL_WRAPPER(locale_facet__Incref
, 4)
312 void __thiscall
locale_facet__Incref(locale_facet
*this)
316 TRACE("(%p)\n", this);
318 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
323 /* ?_Decref@facet@locale@std@@QAEPAV123@XZ */
324 /* ?_Decref@facet@locale@std@@QEAAPEAV123@XZ */
325 DEFINE_THISCALL_WRAPPER(locale_facet__Decref
, 4)
326 locale_facet
* __thiscall
locale_facet__Decref(locale_facet
*this)
331 TRACE("(%p)\n", this);
333 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
337 ret
= this->refs
? NULL
: this;
343 /* ?_Getcat@facet@locale@std@@SAIPAPBV123@PBV23@@Z */
344 /* ?_Getcat@facet@locale@std@@SA_KPEAPEBV123@PEBV23@@Z */
345 MSVCP_size_t __cdecl
locale_facet__Getcat(const locale_facet
**facet
, const locale
*loc
)
347 TRACE("(%p %p)\n", facet
, loc
);
351 /* ??0_Timevec@std@@QAE@ABV01@@Z */
352 /* ??0_Timevec@std@@QEAA@AEBV01@@Z */
353 /* This copy constructor modifies copied object */
354 DEFINE_THISCALL_WRAPPER(_Timevec_copy_ctor
, 8)
355 _Timevec
* __thiscall
_Timevec_copy_ctor(_Timevec
*this, _Timevec
*copy
)
357 TRACE("(%p %p)\n", this, copy
);
358 this->timeptr
= copy
->timeptr
;
359 copy
->timeptr
= NULL
;
363 /* ??0_Timevec@std@@QAE@PAX@Z */
364 /* ??0_Timevec@std@@QEAA@PEAX@Z */
365 DEFINE_THISCALL_WRAPPER(_Timevec_ctor_timeptr
, 8)
366 _Timevec
* __thiscall
_Timevec_ctor_timeptr(_Timevec
*this, void *timeptr
)
368 TRACE("(%p %p)\n", this, timeptr
);
369 this->timeptr
= timeptr
;
373 /* ??_F_Timevec@std@@QAEXXZ */
374 /* ??_F_Timevec@std@@QEAAXXZ */
375 DEFINE_THISCALL_WRAPPER(_Timevec_ctor
, 4)
376 _Timevec
* __thiscall
_Timevec_ctor(_Timevec
*this)
378 TRACE("(%p)\n", this);
379 this->timeptr
= NULL
;
383 /* ??1_Timevec@std@@QAE@XZ */
384 /* ??1_Timevec@std@@QEAA@XZ */
385 DEFINE_THISCALL_WRAPPER(_Timevec_dtor
, 4)
386 void __thiscall
_Timevec_dtor(_Timevec
*this)
388 TRACE("(%p)\n", this);
392 /* ??4_Timevec@std@@QAEAAV01@ABV01@@Z */
393 /* ??4_Timevec@std@@QEAAAEAV01@AEBV01@@Z */
394 DEFINE_THISCALL_WRAPPER(_Timevec_op_assign
, 8)
395 _Timevec
* __thiscall
_Timevec_op_assign(_Timevec
*this, _Timevec
*right
)
397 TRACE("(%p %p)\n", this, right
);
398 this->timeptr
= right
->timeptr
;
399 right
->timeptr
= NULL
;
403 /* ?_Getptr@_Timevec@std@@QBEPAXXZ */
404 /* ?_Getptr@_Timevec@std@@QEBAPEAXXZ */
405 DEFINE_THISCALL_WRAPPER(_Timevec__Getptr
, 4)
406 void* __thiscall
_Timevec__Getptr(_Timevec
*this)
408 TRACE("(%p)\n", this);
409 return this->timeptr
;
412 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@HPBD@Z */
413 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@HPEBD@Z */
414 _Locinfo
* __cdecl
_Locinfo__Locinfo_ctor_cat_cstr(_Locinfo
*locinfo
, int category
, const char *locstr
)
416 const char *locale
= NULL
;
418 /* This function is probably modifying more global objects */
419 FIXME("(%p %d %s) semi-stub\n", locinfo
, category
, locstr
);
422 throw_exception(EXCEPTION_RUNTIME_ERROR
, "bad locale name");
424 _Lockit_ctor_locktype(&locinfo
->lock
, _LOCK_LOCALE
);
425 MSVCP_basic_string_char_ctor_cstr(&locinfo
->days
, "");
426 MSVCP_basic_string_char_ctor_cstr(&locinfo
->months
, "");
427 MSVCP_basic_string_char_ctor_cstr(&locinfo
->oldlocname
, setlocale(LC_ALL
, NULL
));
430 locale
= setlocale(LC_ALL
, locstr
);
432 locale
= setlocale(LC_ALL
, NULL
);
435 MSVCP_basic_string_char_ctor_cstr(&locinfo
->newlocname
, locale
);
437 MSVCP_basic_string_char_ctor_cstr(&locinfo
->newlocname
, "*");
442 /* ??0_Locinfo@std@@QAE@HPBD@Z */
443 /* ??0_Locinfo@std@@QEAA@HPEBD@Z */
444 DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_cat_cstr
, 12)
445 _Locinfo
* __thiscall
_Locinfo_ctor_cat_cstr(_Locinfo
*this, int category
, const char *locstr
)
447 return _Locinfo__Locinfo_ctor_cat_cstr(this, category
, locstr
);
450 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
451 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@@Z */
452 _Locinfo
* __cdecl
_Locinfo__Locinfo_ctor_bstr(_Locinfo
*locinfo
, const basic_string_char
*locstr
)
454 return _Locinfo__Locinfo_ctor_cat_cstr(locinfo
, 1/*FIXME*/, MSVCP_basic_string_char_c_str(locstr
));
457 /* ??0_Locinfo@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z */
458 /* ??0_Locinfo@std@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z */
459 DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_bstr
, 8)
460 _Locinfo
* __thiscall
_Locinfo_ctor_bstr(_Locinfo
*this, const basic_string_char
*locstr
)
462 return _Locinfo__Locinfo_ctor_cat_cstr(this, 1/*FIXME*/, MSVCP_basic_string_char_c_str(locstr
));
465 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z */
466 /* ?_Locinfo_ctor@_Locinfo@std@@SAXPEAV12@PEBD@Z */
467 _Locinfo
* __cdecl
_Locinfo__Locinfo_ctor_cstr(_Locinfo
*locinfo
, const char *locstr
)
469 return _Locinfo__Locinfo_ctor_cat_cstr(locinfo
, 1/*FIXME*/, locstr
);
472 /* ??0_Locinfo@std@@QAE@PBD@Z */
473 /* ??0_Locinfo@std@@QEAA@PEBD@Z */
474 DEFINE_THISCALL_WRAPPER(_Locinfo_ctor_cstr
, 8)
475 _Locinfo
* __thiscall
_Locinfo_ctor_cstr(_Locinfo
*this, const char *locstr
)
477 return _Locinfo__Locinfo_ctor_cat_cstr(this, 1/*FIXME*/, locstr
);
480 /* ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z */
481 /* ?_Locinfo_dtor@_Locinfo@std@@SAXPEAV12@@Z */
482 void __cdecl
_Locinfo__Locinfo_dtor(_Locinfo
*locinfo
)
484 TRACE("(%p)\n", locinfo
);
486 setlocale(LC_ALL
, MSVCP_basic_string_char_c_str(&locinfo
->oldlocname
));
487 MSVCP_basic_string_char_dtor(&locinfo
->days
);
488 MSVCP_basic_string_char_dtor(&locinfo
->months
);
489 MSVCP_basic_string_char_dtor(&locinfo
->oldlocname
);
490 MSVCP_basic_string_char_dtor(&locinfo
->newlocname
);
491 _Lockit_dtor(&locinfo
->lock
);
494 /* ??_F_Locinfo@std@@QAEXXZ */
495 /* ??_F_Locinfo@std@@QEAAXXZ */
496 DEFINE_THISCALL_WRAPPER(_Locinfo_ctor
, 4)
497 _Locinfo
* __thiscall
_Locinfo_ctor(_Locinfo
*this)
499 return _Locinfo__Locinfo_ctor_cat_cstr(this, 1/*FIXME*/, "C");
502 /* ??1_Locinfo@std@@QAE@XZ */
503 /* ??1_Locinfo@std@@QEAA@XZ */
504 DEFINE_THISCALL_WRAPPER(_Locinfo_dtor
, 4)
505 void __thiscall
_Locinfo_dtor(_Locinfo
*this)
507 _Locinfo__Locinfo_dtor(this);
510 /* ?_Locinfo_Addcats@_Locinfo@std@@SAAAV12@PAV12@HPBD@Z */
511 /* ?_Locinfo_Addcats@_Locinfo@std@@SAAEAV12@PEAV12@HPEBD@Z */
512 _Locinfo
* __cdecl
_Locinfo__Locinfo_Addcats(_Locinfo
*locinfo
, int category
, const char *locstr
)
514 const char *locale
= NULL
;
516 /* This function is probably modifying more global objects */
517 FIXME("(%p %d %s) semi-stub\n", locinfo
, category
, locstr
);
519 throw_exception(EXCEPTION_RUNTIME_ERROR
, "bad locale name");
521 MSVCP_basic_string_char_dtor(&locinfo
->newlocname
);
524 locale
= setlocale(LC_ALL
, locstr
);
526 locale
= setlocale(LC_ALL
, NULL
);
529 MSVCP_basic_string_char_ctor_cstr(&locinfo
->newlocname
, locale
);
531 MSVCP_basic_string_char_ctor_cstr(&locinfo
->newlocname
, "*");
536 /* ?_Addcats@_Locinfo@std@@QAEAAV12@HPBD@Z */
537 /* ?_Addcats@_Locinfo@std@@QEAAAEAV12@HPEBD@Z */
538 DEFINE_THISCALL_WRAPPER(_Locinfo__Addcats
, 12)
539 _Locinfo
* __thiscall
_Locinfo__Addcats(_Locinfo
*this, int category
, const char *locstr
)
541 return _Locinfo__Locinfo_Addcats(this, category
, locstr
);
545 ULONGLONG __cdecl
_Getcoll(void)
551 _locale_t locale
= _get_current_locale();
555 ret
.collvec
.page
= locale
->locinfo
->lc_collate_cp
;
556 ret
.collvec
.handle
= locale
->locinfo
->lc_handle
[LC_COLLATE
];
557 _free_locale(locale
);
561 /* ?_Getcoll@_Locinfo@std@@QBE?AU_Collvec@@XZ */
562 /* ?_Getcoll@_Locinfo@std@@QEBA?AU_Collvec@@XZ */
563 DEFINE_THISCALL_WRAPPER(_Locinfo__Getcoll
, 8)
564 _Collvec
* __thiscall
_Locinfo__Getcoll(const _Locinfo
*this, _Collvec
*ret
)
566 ULONGLONG ull
= _Getcoll();
567 memcpy(ret
, &ull
, sizeof(ull
));
572 _Ctypevec
* __cdecl
_Getctype(_Ctypevec
*ret
)
574 _locale_t locale
= _get_current_locale();
579 ret
->page
= locale
->locinfo
->lc_codepage
;
580 ret
->handle
= locale
->locinfo
->lc_handle
[LC_COLLATE
];
582 table
= malloc(sizeof(short[256]));
584 _free_locale(locale
);
585 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
587 memcpy(table
, locale
->locinfo
->pctype
, sizeof(short[256]));
589 _free_locale(locale
);
593 /* ?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ */
594 /* ?_Getctype@_Locinfo@std@@QEBA?AU_Ctypevec@@XZ */
595 DEFINE_THISCALL_WRAPPER(_Locinfo__Getctype
, 8)
596 _Ctypevec
* __thiscall
_Locinfo__Getctype(const _Locinfo
*this, _Ctypevec
*ret
)
598 return _Getctype(ret
);
602 ULONGLONG __cdecl
_Getcvt(void)
604 _locale_t locale
= _get_current_locale();
612 ret
.cvtvec
.page
= locale
->locinfo
->lc_codepage
;
613 ret
.cvtvec
.handle
= locale
->locinfo
->lc_handle
[LC_CTYPE
];
614 _free_locale(locale
);
618 /* ?_Getcvt@_Locinfo@std@@QBE?AU_Cvtvec@@XZ */
619 /* ?_Getcvt@_Locinfo@std@@QEBA?AU_Cvtvec@@XZ */
620 DEFINE_THISCALL_WRAPPER(_Locinfo__Getcvt
, 8)
621 _Cvtvec
* __thiscall
_Locinfo__Getcvt(const _Locinfo
*this, _Cvtvec
*ret
)
623 ULONGLONG ull
= _Getcvt();
624 memcpy(ret
, &ull
, sizeof(ull
));
628 /* ?_Getdateorder@_Locinfo@std@@QBEHXZ */
629 /* ?_Getdateorder@_Locinfo@std@@QEBAHXZ */
630 DEFINE_THISCALL_WRAPPER(_Locinfo__Getdateorder
, 4)
631 int __thiscall
_Locinfo__Getdateorder(const _Locinfo
*this)
633 FIXME("(%p) stub\n", this);
637 /* ?_Getdays@_Locinfo@std@@QBEPBDXZ */
638 /* ?_Getdays@_Locinfo@std@@QEBAPEBDXZ */
639 DEFINE_THISCALL_WRAPPER(_Locinfo__Getdays
, 4)
640 const char* __thiscall
_Locinfo__Getdays(_Locinfo
*this)
642 char *days
= _Getdays();
644 TRACE("(%p)\n", this);
647 MSVCP_basic_string_char_dtor(&this->days
);
648 MSVCP_basic_string_char_ctor_cstr(&this->days
, days
);
652 return this->days
.size
? MSVCP_basic_string_char_c_str(&this->days
) :
653 ":Sun:Sunday:Mon:Monday:Tue:Tuesday:Wed:Wednesday:Thu:Thursday:Fri:Friday:Sat:Saturday";
656 /* ?_Getmonths@_Locinfo@std@@QBEPBDXZ */
657 /* ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ */
658 DEFINE_THISCALL_WRAPPER(_Locinfo__Getmonths
, 4)
659 const char* __thiscall
_Locinfo__Getmonths(_Locinfo
*this)
661 char *months
= _Getmonths();
663 TRACE("(%p)\n", this);
666 MSVCP_basic_string_char_dtor(&this->months
);
667 MSVCP_basic_string_char_ctor_cstr(&this->months
, months
);
671 return this->months
.size
? MSVCP_basic_string_char_c_str(&this->months
) :
672 ":Jan:January:Feb:February:Mar:March:Apr:April:May:May:Jun:June:Jul:July"
673 ":Aug:August:Sep:September:Oct:October:Nov:November:Dec:December";
676 /* ?_Getfalse@_Locinfo@std@@QBEPBDXZ */
677 /* ?_Getfalse@_Locinfo@std@@QEBAPEBDXZ */
678 DEFINE_THISCALL_WRAPPER(_Locinfo__Getfalse
, 4)
679 const char* __thiscall
_Locinfo__Getfalse(const _Locinfo
*this)
681 TRACE("(%p)\n", this);
685 /* ?_Gettrue@_Locinfo@std@@QBEPBDXZ */
686 /* ?_Gettrue@_Locinfo@std@@QEBAPEBDXZ */
687 DEFINE_THISCALL_WRAPPER(_Locinfo__Gettrue
, 4)
688 const char* __thiscall
_Locinfo__Gettrue(const _Locinfo
*this)
690 TRACE("(%p)\n", this);
694 /* ?_Getlconv@_Locinfo@std@@QBEPBUlconv@@XZ */
695 /* ?_Getlconv@_Locinfo@std@@QEBAPEBUlconv@@XZ */
696 DEFINE_THISCALL_WRAPPER(_Locinfo__Getlconv
, 4)
697 const struct lconv
* __thiscall
_Locinfo__Getlconv(const _Locinfo
*this)
699 TRACE("(%p)\n", this);
703 /* ?_Getname@_Locinfo@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
704 /* ?_Getname@_Locinfo@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
705 DEFINE_THISCALL_WRAPPER(_Locinfo__Getname
, 8)
706 basic_string_char
* __thiscall
_Locinfo__Getname(const _Locinfo
*this, basic_string_char
*ret
)
708 TRACE("(%p)\n", this);
710 MSVCP_basic_string_char_copy_ctor(ret
, &this->newlocname
);
714 /* ?_Gettnames@_Locinfo@std@@QBE?AV_Timevec@2@XZ */
715 /* ?_Gettnames@_Locinfo@std@@QEBA?AV_Timevec@2@XZ */
716 DEFINE_THISCALL_WRAPPER(_Locinfo__Gettnames
, 8)
717 _Timevec
*__thiscall
_Locinfo__Gettnames(const _Locinfo
*this, _Timevec
*ret
)
719 TRACE("(%p)\n", this);
721 _Timevec_ctor_timeptr(ret
, _Gettnames());
725 /* ?id@?$collate@D@std@@2V0locale@2@A */
726 locale_id collate_char_id
= {0};
728 /* ??_7?$collate@D@std@@6B@ */
729 extern const vtable_ptr MSVCP_collate_char_vtable
;
731 /* ?_Init@?$collate@D@std@@IAEXABV_Locinfo@2@@Z */
732 /* ?_Init@?$collate@D@std@@IEAAXAEBV_Locinfo@2@@Z */
733 DEFINE_THISCALL_WRAPPER(collate_char__Init
, 8)
734 void __thiscall
collate_char__Init(collate
*this, const _Locinfo
*locinfo
)
736 TRACE("(%p %p)\n", this, locinfo
);
737 _Locinfo__Getcoll(locinfo
, &this->coll
);
740 /* ??0?$collate@D@std@@IAE@PBDI@Z */
741 /* ??0?$collate@D@std@@IEAA@PEBD_K@Z */
742 DEFINE_THISCALL_WRAPPER(collate_char_ctor_name
, 12)
743 collate
* __thiscall
collate_char_ctor_name(collate
*this, const char *name
, MSVCP_size_t refs
)
747 TRACE("(%p %s %lu)\n", this, name
, refs
);
749 locale_facet_ctor_refs(&this->facet
, refs
);
750 this->facet
.vtable
= &MSVCP_collate_char_vtable
;
752 _Locinfo_ctor_cstr(&locinfo
, name
);
753 collate_char__Init(this, &locinfo
);
754 _Locinfo_dtor(&locinfo
);
758 /* ??0?$collate@D@std@@QAE@ABV_Locinfo@1@I@Z */
759 /* ??0?$collate@D@std@@QEAA@AEBV_Locinfo@1@_K@Z */
760 DEFINE_THISCALL_WRAPPER(collate_char_ctor_locinfo
, 12)
761 collate
* __thiscall
collate_char_ctor_locinfo(collate
*this, _Locinfo
*locinfo
, MSVCP_size_t refs
)
763 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
765 locale_facet_ctor_refs(&this->facet
, refs
);
766 this->facet
.vtable
= &MSVCP_collate_char_vtable
;
767 collate_char__Init(this, locinfo
);
771 /* ??0?$collate@D@std@@QAE@I@Z */
772 /* ??0?$collate@D@std@@QEAA@_K@Z */
773 DEFINE_THISCALL_WRAPPER(collate_char_ctor_refs
, 8)
774 collate
* __thiscall
collate_char_ctor_refs(collate
*this, MSVCP_size_t refs
)
776 return collate_char_ctor_name(this, "C", refs
);
779 /* ??1?$collate@D@std@@MAE@XZ */
780 /* ??1?$collate@D@std@@MEAA@XZ */
781 DEFINE_THISCALL_WRAPPER(collate_char_dtor
, 4)
782 void __thiscall
collate_char_dtor(collate
*this)
784 TRACE("(%p)\n", this);
787 DEFINE_THISCALL_WRAPPER(MSVCP_collate_char_vector_dtor
, 8)
788 collate
* __thiscall
MSVCP_collate_char_vector_dtor(collate
*this, unsigned int flags
)
790 TRACE("(%p %x)\n", this, flags
);
792 /* we have an array, with the number of elements stored before the first object */
793 int i
, *ptr
= (int *)this-1;
795 for(i
=*ptr
-1; i
>=0; i
--)
796 collate_char_dtor(this+i
);
797 MSVCRT_operator_delete(ptr
);
799 collate_char_dtor(this);
801 MSVCRT_operator_delete(this);
807 /* ??_F?$collate@D@std@@QAEXXZ */
808 /* ??_F?$collate@D@std@@QEAAXXZ */
809 DEFINE_THISCALL_WRAPPER(collate_char_ctor
, 4)
810 collate
* __thiscall
collate_char_ctor(collate
*this)
812 return collate_char_ctor_name(this, "C", 0);
815 /* ?_Getcat@?$collate@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
816 /* ?_Getcat@?$collate@D@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
817 MSVCP_size_t __cdecl
collate_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
819 TRACE("(%p %p)\n", facet
, loc
);
821 if(facet
&& !*facet
) {
822 *facet
= MSVCRT_operator_new(sizeof(collate
));
824 ERR("Out of memory\n");
825 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
828 collate_char_ctor_name((collate
*)*facet
,
829 MSVCP_basic_string_char_c_str(&loc
->ptr
->name
), 0);
836 int __cdecl
_Strcoll(const char *first1
, const char *last1
, const char *first2
,
837 const char *last2
, const _Collvec
*coll
)
841 TRACE("(%s %s)\n", debugstr_an(first1
, last1
-first1
), debugstr_an(first2
, last2
-first2
));
846 lcid
= ___lc_handle_func()[LC_COLLATE
];
847 return CompareStringA(lcid
, 0, first1
, last1
-first1
, first2
, last2
-first2
)-CSTR_EQUAL
;
850 /* ?do_compare@?$collate@D@std@@MBEHPBD000@Z */
851 /* ?do_compare@?$collate@D@std@@MEBAHPEBD000@Z */
852 DEFINE_THISCALL_WRAPPER(collate_char_do_compare
, 20)
853 #define call_collate_char_do_compare(this, first1, last1, first2, last2) CALL_VTBL_FUNC(this, 4, int, \
854 (const collate*, const char*, const char*, const char*, const char*), \
855 (this, first1, last1, first2, last2))
856 int __thiscall
collate_char_do_compare(const collate
*this, const char *first1
,
857 const char *last1
, const char *first2
, const char *last2
)
859 TRACE("(%p %p %p %p %p)\n", this, first1
, last1
, first2
, last2
);
860 return _Strcoll(first1
, last1
, first2
, last2
, &this->coll
);
863 /* ?compare@?$collate@D@std@@QBEHPBD000@Z */
864 /* ?compare@?$collate@D@std@@QEBAHPEBD000@Z */
865 DEFINE_THISCALL_WRAPPER(collate_char_compare
, 20)
866 int __thiscall
collate_char_compare(const collate
*this, const char *first1
,
867 const char *last1
, const char *first2
, const char *last2
)
869 TRACE("(%p %p %p %p %p)\n", this, first1
, last1
, first2
, last2
);
870 return call_collate_char_do_compare(this, first1
, last1
, first2
, last2
);
873 /* ?do_hash@?$collate@D@std@@MBEJPBD0@Z */
874 /* ?do_hash@?$collate@D@std@@MEBAJPEBD0@Z */
875 DEFINE_THISCALL_WRAPPER(collate_char_do_hash
, 12)
876 #define call_collate_char_do_hash(this, first, last) CALL_VTBL_FUNC(this, 12, LONG, \
877 (const collate*, const char*, const char*), (this, first, last))
878 LONG __thiscall
collate_char_do_hash(const collate
*this,
879 const char *first
, const char *last
)
883 TRACE("(%p %p %p)\n", this, first
, last
);
885 for(; first
<last
; first
++)
886 ret
= (ret
<<8 | ret
>>24) + *first
;
890 /* ?hash@?$collate@D@std@@QBEJPBD0@Z */
891 /* ?hash@?$collate@D@std@@QEBAJPEBD0@Z */
892 DEFINE_THISCALL_WRAPPER(collate_char_hash
, 12)
893 LONG __thiscall
collate_char_hash(const collate
*this,
894 const char *first
, const char *last
)
896 TRACE("(%p %p %p)\n", this, first
, last
);
897 return call_collate_char_do_hash(this, first
, last
);
900 /* ?do_transform@?$collate@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@PBD0@Z */
901 /* ?do_transform@?$collate@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@PEBD0@Z */
902 DEFINE_THISCALL_WRAPPER(collate_char_do_transform
, 16)
903 basic_string_char
* __thiscall
collate_char_do_transform(const collate
*this,
904 basic_string_char
*ret
, const char *first
, const char *last
)
906 FIXME("(%p %p %p) stub\n", this, first
, last
);
910 /* ?transform@?$collate@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@PBD0@Z */
911 /* ?transform@?$collate@D@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@PEBD0@Z */
912 DEFINE_THISCALL_WRAPPER(collate_char_transform
, 16)
913 basic_string_char
* __thiscall
collate_char_transform(const collate
*this,
914 basic_string_char
*ret
, const char *first
, const char *last
)
916 FIXME("(%p %p %p) stub\n", this, first
, last
);
920 /* ?id@?$collate@_W@std@@2V0locale@2@A */
921 locale_id collate_wchar_id
= {0};
922 /* ?id@?$collate@G@std@@2V0locale@2@A */
923 locale_id collate_short_id
= {0};
925 /* ??_7?$collate@_W@std@@6B@ */
926 extern const vtable_ptr MSVCP_collate_wchar_vtable
;
927 /* ??_7?$collate@G@std@@6B@ */
928 extern const vtable_ptr MSVCP_collate_short_vtable
;
930 /* ?_Init@?$collate@_W@std@@IAEXABV_Locinfo@2@@Z */
931 /* ?_Init@?$collate@_W@std@@IEAAXAEBV_Locinfo@2@@Z */
932 /* ?_Init@?$collate@G@std@@IAEXABV_Locinfo@2@@Z */
933 /* ?_Init@?$collate@G@std@@IEAAXAEBV_Locinfo@2@@Z */
934 DEFINE_THISCALL_WRAPPER(collate_wchar__Init
, 8)
935 void __thiscall
collate_wchar__Init(collate
*this, const _Locinfo
*locinfo
)
937 TRACE("(%p %p)\n", this, locinfo
);
938 _Locinfo__Getcoll(locinfo
, &this->coll
);
941 /* ??0?$collate@_W@std@@IAE@PBDI@Z */
942 /* ??0?$collate@_W@std@@IEAA@PEBD_K@Z */
943 DEFINE_THISCALL_WRAPPER(collate_wchar_ctor_name
, 12)
944 collate
* __thiscall
collate_wchar_ctor_name(collate
*this, const char *name
, MSVCP_size_t refs
)
948 TRACE("(%p %s %lu)\n", this, name
, refs
);
950 locale_facet_ctor_refs(&this->facet
, refs
);
951 this->facet
.vtable
= &MSVCP_collate_wchar_vtable
;
953 _Locinfo_ctor_cstr(&locinfo
, name
);
954 collate_wchar__Init(this, &locinfo
);
955 _Locinfo_dtor(&locinfo
);
959 /* ??0?$collate@G@std@@IAE@PBDI@Z */
960 /* ??0?$collate@G@std@@IEAA@PEBD_K@Z */
961 DEFINE_THISCALL_WRAPPER(collate_short_ctor_name
, 12)
962 collate
* __thiscall
collate_short_ctor_name(collate
*this, const char *name
, MSVCP_size_t refs
)
964 collate
*ret
= collate_wchar_ctor_name(this, name
, refs
);
965 ret
->facet
.vtable
= &MSVCP_collate_short_vtable
;
969 /* ??0?$collate@_W@std@@QAE@ABV_Locinfo@1@I@Z */
970 /* ??0?$collate@_W@std@@QEAA@AEBV_Locinfo@1@_K@Z */
971 DEFINE_THISCALL_WRAPPER(collate_wchar_ctor_locinfo
, 12)
972 collate
* __thiscall
collate_wchar_ctor_locinfo(collate
*this, _Locinfo
*locinfo
, MSVCP_size_t refs
)
974 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
976 locale_facet_ctor_refs(&this->facet
, refs
);
977 this->facet
.vtable
= &MSVCP_collate_wchar_vtable
;
978 collate_wchar__Init(this, locinfo
);
982 /* ??0?$collate@G@std@@QAE@ABV_Locinfo@1@I@Z */
983 /* ??0?$collate@G@std@@QEAA@AEBV_Locinfo@1@_K@Z */
984 DEFINE_THISCALL_WRAPPER(collate_short_ctor_locinfo
, 12)
985 collate
* __thiscall
collate_short_ctor_locinfo(collate
*this, _Locinfo
*locinfo
, MSVCP_size_t refs
)
987 collate
*ret
= collate_wchar_ctor_locinfo(this, locinfo
, refs
);
988 ret
->facet
.vtable
= &MSVCP_collate_short_vtable
;
992 /* ??0?$collate@_W@std@@QAE@I@Z */
993 /* ??0?$collate@_W@std@@QEAA@_K@Z */
994 DEFINE_THISCALL_WRAPPER(collate_wchar_ctor_refs
, 8)
995 collate
* __thiscall
collate_wchar_ctor_refs(collate
*this, MSVCP_size_t refs
)
997 return collate_wchar_ctor_name(this, "C", refs
);
1000 /* ??0?$collate@G@std@@QAE@I@Z */
1001 /* ??0?$collate@G@std@@QEAA@_K@Z */
1002 DEFINE_THISCALL_WRAPPER(collate_short_ctor_refs
, 8)
1003 collate
* __thiscall
collate_short_ctor_refs(collate
*this, MSVCP_size_t refs
)
1005 collate
*ret
= collate_wchar_ctor_refs(this, refs
);
1006 ret
->facet
.vtable
= &MSVCP_collate_short_vtable
;
1010 /* ??1?$collate@_W@std@@MAE@XZ */
1011 /* ??1?$collate@_W@std@@MEAA@XZ */
1012 /* ??1?$collate@G@std@@MAE@XZ */
1013 /* ??1?$collate@G@std@@MEAA@XZ */
1014 DEFINE_THISCALL_WRAPPER(collate_wchar_dtor
, 4)
1015 void __thiscall
collate_wchar_dtor(collate
*this)
1017 TRACE("(%p)\n", this);
1020 DEFINE_THISCALL_WRAPPER(MSVCP_collate_wchar_vector_dtor
, 8)
1021 collate
* __thiscall
MSVCP_collate_wchar_vector_dtor(collate
*this, unsigned int flags
)
1023 TRACE("(%p %x)\n", this, flags
);
1025 /* we have an array, with the number of elements stored before the first object */
1026 int i
, *ptr
= (int *)this-1;
1028 for(i
=*ptr
-1; i
>=0; i
--)
1029 collate_wchar_dtor(this+i
);
1030 MSVCRT_operator_delete(ptr
);
1032 collate_wchar_dtor(this);
1034 MSVCRT_operator_delete(this);
1040 DEFINE_THISCALL_WRAPPER(MSVCP_collate_short_vector_dtor
, 8)
1041 collate
* __thiscall
MSVCP_collate_short_vector_dtor(collate
*this, unsigned int flags
)
1043 return MSVCP_collate_wchar_vector_dtor(this, flags
);
1046 /* ??_F?$collate@_W@std@@QAEXXZ */
1047 /* ??_F?$collate@_W@std@@QEAAXXZ */
1048 DEFINE_THISCALL_WRAPPER(collate_wchar_ctor
, 4)
1049 collate
* __thiscall
collate_wchar_ctor(collate
*this)
1051 return collate_wchar_ctor_name(this, "C", 0);
1054 /* ??_F?$collate@G@std@@QAEXXZ */
1055 /* ??_F?$collate@G@std@@QEAAXXZ */
1056 DEFINE_THISCALL_WRAPPER(collate_short_ctor
, 4)
1057 collate
* __thiscall
collate_short_ctor(collate
*this)
1059 collate
*ret
= collate_wchar_ctor(this);
1060 ret
->facet
.vtable
= &MSVCP_collate_short_vtable
;
1064 /* ?_Getcat@?$collate@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
1065 /* ?_Getcat@?$collate@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
1066 MSVCP_size_t __cdecl
collate_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
1068 TRACE("(%p %p)\n", facet
, loc
);
1070 if(facet
&& !*facet
) {
1071 *facet
= MSVCRT_operator_new(sizeof(collate
));
1073 ERR("Out of memory\n");
1074 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
1077 collate_wchar_ctor_name((collate
*)*facet
,
1078 MSVCP_basic_string_char_c_str(&loc
->ptr
->name
), 0);
1084 /* ?_Getcat@?$collate@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
1085 /* ?_Getcat@?$collate@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
1086 MSVCP_size_t __cdecl
collate_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
1088 if(facet
&& !*facet
) {
1089 collate_wchar__Getcat(facet
, loc
);
1090 (*(locale_facet
**)facet
)->vtable
= &MSVCP_collate_short_vtable
;
1097 int __cdecl
_Wcscoll(const wchar_t *first1
, const wchar_t *last1
, const wchar_t *first2
,
1098 const wchar_t *last2
, const _Collvec
*coll
)
1102 TRACE("(%s %s)\n", debugstr_wn(first1
, last1
-first1
), debugstr_wn(first2
, last2
-first2
));
1105 lcid
= coll
->handle
;
1107 lcid
= ___lc_handle_func()[LC_COLLATE
];
1108 return CompareStringW(lcid
, 0, first1
, last1
-first1
, first2
, last2
-first2
)-CSTR_EQUAL
;
1111 /* ?do_compare@?$collate@_W@std@@MBEHPB_W000@Z */
1112 /* ?do_compare@?$collate@_W@std@@MEBAHPEB_W000@Z */
1113 /* ?do_compare@?$collate@G@std@@MBEHPBG000@Z */
1114 /* ?do_compare@?$collate@G@std@@MEBAHPEBG000@Z */
1115 DEFINE_THISCALL_WRAPPER(collate_wchar_do_compare
, 20)
1116 #define call_collate_wchar_do_compare(this, first1, last1, first2, last2) CALL_VTBL_FUNC(this, 4, int, \
1117 (const collate*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*), \
1118 (this, first1, last1, first2, last2))
1119 int __thiscall
collate_wchar_do_compare(const collate
*this, const wchar_t *first1
,
1120 const wchar_t *last1
, const wchar_t *first2
, const wchar_t *last2
)
1122 TRACE("(%p %p %p %p %p)\n", this, first1
, last1
, first2
, last2
);
1123 return _Wcscoll(first1
, last1
, first2
, last2
, &this->coll
);
1126 /* ?compare@?$collate@_W@std@@QBEHPB_W000@Z */
1127 /* ?compare@?$collate@_W@std@@QEBAHPEB_W000@Z */
1128 /* ?compare@?$collate@G@std@@QBEHPBG000@Z */
1129 /* ?compare@?$collate@G@std@@QEBAHPEBG000@Z */
1130 DEFINE_THISCALL_WRAPPER(collate_wchar_compare
, 20)
1131 int __thiscall
collate_wchar_compare(const collate
*this, const wchar_t *first1
,
1132 const wchar_t *last1
, const wchar_t *first2
, const wchar_t *last2
)
1134 TRACE("(%p %p %p %p %p)\n", this, first1
, last1
, first2
, last2
);
1135 return call_collate_wchar_do_compare(this, first1
, last1
, first2
, last2
);
1138 /* ?do_hash@?$collate@_W@std@@MBEJPB_W0@Z */
1139 /* ?do_hash@?$collate@_W@std@@MEBAJPEB_W0@Z */
1140 /* ?do_hash@?$collate@G@std@@MBEJPBG0@Z */
1141 /* ?do_hash@?$collate@G@std@@MEBAJPEBG0@Z */
1142 DEFINE_THISCALL_WRAPPER(collate_wchar_do_hash
, 12)
1143 #define call_collate_wchar_do_hash(this, first, last) CALL_VTBL_FUNC(this, 12, LONG, \
1144 (const collate*, const wchar_t*, const wchar_t*), (this, first, last))
1145 LONG __thiscall
collate_wchar_do_hash(const collate
*this,
1146 const wchar_t *first
, const wchar_t *last
)
1150 TRACE("(%p %p %p)\n", this, first
, last
);
1152 for(; first
<last
; first
++)
1153 ret
= (ret
<<8 | ret
>>24) + *first
;
1157 /* ?hash@?$collate@_W@std@@QBEJPB_W0@Z */
1158 /* ?hash@?$collate@_W@std@@QEBAJPEB_W0@Z */
1159 /* ?hash@?$collate@G@std@@QBEJPBG0@Z */
1160 /* ?hash@?$collate@G@std@@QEBAJPEBG0@Z */
1161 DEFINE_THISCALL_WRAPPER(collate_wchar_hash
, 12)
1162 LONG __thiscall
collate_wchar_hash(const collate
*this,
1163 const wchar_t *first
, const wchar_t *last
)
1165 TRACE("(%p %p %p)\n", this, first
, last
);
1166 return call_collate_wchar_do_hash(this, first
, last
);
1169 /* ?do_transform@?$collate@_W@std@@MBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PB_W0@Z */
1170 /* ?do_transform@?$collate@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z */
1171 /* ?do_transform@?$collate@G@std@@MBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PBG0@Z */
1172 /* ?do_transform@?$collate@G@std@@MEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PEBG0@Z */
1173 DEFINE_THISCALL_WRAPPER(collate_wchar_do_transform
, 16)
1174 basic_string_wchar
* __thiscall
collate_wchar_do_transform(const collate
*this,
1175 basic_string_wchar
*ret
, const wchar_t *first
, const wchar_t *last
)
1177 FIXME("(%p %p %p) stub\n", this, first
, last
);
1181 /* ?transform@?$collate@_W@std@@QBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PB_W0@Z */
1182 /* ?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z */
1183 /* ?transform@?$collate@G@std@@QBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PBG0@Z */
1184 /* ?transform@?$collate@G@std@@QEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PEBG0@Z */
1185 DEFINE_THISCALL_WRAPPER(collate_wchar_transform
, 16)
1186 basic_string_wchar
* __thiscall
collate_wchar_transform(const collate
*this,
1187 basic_string_wchar
*ret
, const wchar_t *first
, const wchar_t *last
)
1189 FIXME("(%p %p %p) stub\n", this, first
, last
);
1193 /* ??_7ctype_base@std@@6B@ */
1194 extern const vtable_ptr MSVCP_ctype_base_vtable
;
1196 /* ??0ctype_base@std@@QAE@I@Z */
1197 /* ??0ctype_base@std@@QEAA@_K@Z */
1198 DEFINE_THISCALL_WRAPPER(ctype_base_ctor_refs
, 8)
1199 ctype_base
* __thiscall
ctype_base_ctor_refs(ctype_base
*this, MSVCP_size_t refs
)
1201 TRACE("(%p %lu)\n", this, refs
);
1202 locale_facet_ctor_refs(&this->facet
, refs
);
1203 this->facet
.vtable
= &MSVCP_ctype_base_vtable
;
1207 /* ??_Fctype_base@std@@QAEXXZ */
1208 /* ??_Fctype_base@std@@QEAAXXZ */
1209 DEFINE_THISCALL_WRAPPER(ctype_base_ctor
, 4)
1210 ctype_base
* __thiscall
ctype_base_ctor(ctype_base
*this)
1212 TRACE("(%p)\n", this);
1213 locale_facet_ctor_refs(&this->facet
, 0);
1214 this->facet
.vtable
= &MSVCP_ctype_base_vtable
;
1218 /* ??1ctype_base@std@@UAE@XZ */
1219 /* ??1ctype_base@std@@UEAA@XZ */
1220 DEFINE_THISCALL_WRAPPER(ctype_base_dtor
, 4)
1221 void __thiscall
ctype_base_dtor(ctype_base
*this)
1223 TRACE("(%p)\n", this);
1226 DEFINE_THISCALL_WRAPPER(MSVCP_ctype_base_vector_dtor
, 8)
1227 ctype_base
* __thiscall
MSVCP_ctype_base_vector_dtor(ctype_base
*this, unsigned int flags
)
1229 TRACE("(%p %x)\n", this, flags
);
1231 /* we have an array, with the number of elements stored before the first object */
1232 int i
, *ptr
= (int *)this-1;
1234 for(i
=*ptr
-1; i
>=0; i
--)
1235 ctype_base_dtor(this+i
);
1236 MSVCRT_operator_delete(ptr
);
1238 ctype_base_dtor(this);
1240 MSVCRT_operator_delete(this);
1246 /* ?_Xran@ctype_base@std@@KAXXZ */
1247 void __cdecl
ctype_base__Xran(void)
1249 throw_exception(EXCEPTION_OUT_OF_RANGE
, "out of range in ctype<T>");
1252 /* ?id@?$ctype@D@std@@2V0locale@2@A */
1253 locale_id ctype_char_id
= {0};
1254 /* ?table_size@?$ctype@D@std@@2IB */
1255 /* ?table_size@?$ctype@D@std@@2_KB */
1256 MSVCP_size_t ctype_char_table_size
= 256;
1258 /* ??_7?$ctype@D@std@@6B@ */
1259 extern const vtable_ptr MSVCP_ctype_char_vtable
;
1261 /* ?_Id_func@?$ctype@D@std@@SAAAVid@locale@2@XZ */
1262 /* ?_Id_func@?$ctype@D@std@@SAAEAVid@locale@2@XZ */
1263 locale_id
* __cdecl
ctype_char__Id_func(void)
1266 return &ctype_char_id
;
1269 /* ?_Init@?$ctype@D@std@@IAEXABV_Locinfo@2@@Z */
1270 /* ?_Init@?$ctype@D@std@@IEAAXAEBV_Locinfo@2@@Z */
1271 DEFINE_THISCALL_WRAPPER(ctype_char__Init
, 8)
1272 void __thiscall
ctype_char__Init(ctype_char
*this, const _Locinfo
*locinfo
)
1274 TRACE("(%p %p)\n", this, locinfo
);
1275 _Locinfo__Getctype(locinfo
, &this->ctype
);
1278 /* ?_Tidy@?$ctype@D@std@@IAEXXZ */
1279 /* ?_Tidy@?$ctype@D@std@@IEAAXXZ */
1280 DEFINE_THISCALL_WRAPPER(ctype_char__Tidy
, 4)
1281 void __thiscall
ctype_char__Tidy(ctype_char
*this)
1283 TRACE("(%p)\n", this);
1285 if(this->ctype
.delfl
)
1286 free((short*)this->ctype
.table
);
1289 /* ?classic_table@?$ctype@D@std@@KAPBFXZ */
1290 /* ?classic_table@?$ctype@D@std@@KAPEBFXZ */
1291 const short* __cdecl
ctype_char_classic_table(void)
1294 return &((short*)GetProcAddress(GetModuleHandleA("msvcrt.dll"), "_ctype"))[1];
1297 /* ??0?$ctype@D@std@@QAE@ABV_Locinfo@1@I@Z */
1298 /* ??0?$ctype@D@std@@QEAA@AEBV_Locinfo@1@_K@Z */
1299 DEFINE_THISCALL_WRAPPER(ctype_char_ctor_locinfo
, 12)
1300 ctype_char
* __thiscall
ctype_char_ctor_locinfo(ctype_char
*this,
1301 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
1303 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
1304 ctype_base_ctor_refs(&this->base
, refs
);
1305 this->base
.facet
.vtable
= &MSVCP_ctype_char_vtable
;
1306 ctype_char__Init(this, locinfo
);
1310 /* ??0?$ctype@D@std@@QAE@PBF_NI@Z */
1311 /* ??0?$ctype@D@std@@QEAA@PEBF_N_K@Z */
1312 DEFINE_THISCALL_WRAPPER(ctype_char_ctor_table
, 16)
1313 ctype_char
* __thiscall
ctype_char_ctor_table(ctype_char
*this,
1314 const short *table
, MSVCP_bool
delete, MSVCP_size_t refs
)
1318 TRACE("(%p %p %d %lu)\n", this, table
, delete, refs
);
1320 ctype_base_ctor_refs(&this->base
, refs
);
1321 this->base
.facet
.vtable
= &MSVCP_ctype_char_vtable
;
1323 _Locinfo_ctor(&locinfo
);
1324 ctype_char__Init(this, &locinfo
);
1325 _Locinfo_dtor(&locinfo
);
1328 ctype_char__Tidy(this);
1329 this->ctype
.table
= table
;
1330 this->ctype
.delfl
= delete;
1335 /* ??_F?$ctype@D@std@@QAEXXZ */
1336 /* ??_F?$ctype@D@std@@QEAAXXZ */
1337 DEFINE_THISCALL_WRAPPER(ctype_char_ctor
, 4)
1338 ctype_char
* __thiscall
ctype_char_ctor(ctype_char
*this)
1340 return ctype_char_ctor_table(this, NULL
, FALSE
, 0);
1343 /* ??1?$ctype@D@std@@MAE@XZ */
1344 /* ??1?$ctype@D@std@@MEAA@XZ */
1345 DEFINE_THISCALL_WRAPPER(ctype_char_dtor
, 4)
1346 void __thiscall
ctype_char_dtor(ctype_char
*this)
1348 TRACE("(%p)\n", this);
1349 ctype_char__Tidy(this);
1352 DEFINE_THISCALL_WRAPPER(MSVCP_ctype_char_vector_dtor
, 8)
1353 ctype_char
* __thiscall
MSVCP_ctype_char_vector_dtor(ctype_char
*this, unsigned int flags
)
1355 TRACE("(%p %x)\n", this, flags
);
1357 /* we have an array, with the number of elements stored before the first object */
1358 int i
, *ptr
= (int *)this-1;
1360 for(i
=*ptr
-1; i
>=0; i
--)
1361 ctype_char_dtor(this+i
);
1362 MSVCRT_operator_delete(ptr
);
1364 ctype_char_dtor(this);
1366 MSVCRT_operator_delete(this);
1372 /* ?do_narrow@?$ctype@D@std@@MBEDDD@Z */
1373 /* ?do_narrow@?$ctype@D@std@@MEBADDD@Z */
1374 DEFINE_THISCALL_WRAPPER(ctype_char_do_narrow_ch
, 12)
1375 #define call_ctype_char_do_narrow_ch(this, ch, unused) CALL_VTBL_FUNC(this, 32, \
1376 char, (const ctype_char*, char, char), (this, ch, unused))
1377 char __thiscall
ctype_char_do_narrow_ch(const ctype_char
*this, char ch
, char unused
)
1379 TRACE("(%p %c %c)\n", this, ch
, unused
);
1383 /* ?do_narrow@?$ctype@D@std@@MBEPBDPBD0DPAD@Z */
1384 /* ?do_narrow@?$ctype@D@std@@MEBAPEBDPEBD0DPEAD@Z */
1385 DEFINE_THISCALL_WRAPPER(ctype_char_do_narrow
, 20)
1386 #define call_ctype_char_do_narrow(this, first, last, unused, dest) CALL_VTBL_FUNC(this, 28, \
1387 const char*, (const ctype_char*, const char*, const char*, char, char*), \
1388 (this, first, last, unused, dest))
1389 const char* __thiscall
ctype_char_do_narrow(const ctype_char
*this,
1390 const char *first
, const char *last
, char unused
, char *dest
)
1392 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
1393 memcpy(dest
, first
, last
-first
);
1397 /* ?_Do_narrow_s@?$ctype@D@std@@MBEPBDPBD0DPADI@Z */
1398 /* ?_Do_narrow_s@?$ctype@D@std@@MEBAPEBDPEBD0DPEAD_K@Z */
1399 DEFINE_THISCALL_WRAPPER(ctype_char__Do_narrow_s
, 24)
1400 #define call_ctype_char__Do_narrow_s(this, first, last, unused, dest, size) CALL_VTBL_FUNC(this, 40, \
1401 const char*, (const ctype_char*, const char*, const char*, char, char*, MSVCP_size_t), \
1402 (this, first, last, unused, dest, size))
1403 const char* __thiscall
ctype_char__Do_narrow_s(const ctype_char
*this, const char *first
,
1404 const char *last
, char unused
, char *dest
, MSVCP_size_t size
)
1406 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
1407 memcpy_s(dest
, size
, first
, last
-first
);
1411 /* ?narrow@?$ctype@D@std@@QBEDDD@Z */
1412 /* ?narrow@?$ctype@D@std@@QEBADDD@Z */
1413 DEFINE_THISCALL_WRAPPER(ctype_char_narrow_ch
, 12)
1414 char __thiscall
ctype_char_narrow_ch(const ctype_char
*this, char ch
, char dflt
)
1416 TRACE("(%p %c %c)\n", this, ch
, dflt
);
1417 return call_ctype_char_do_narrow_ch(this, ch
, dflt
);
1420 /* ?narrow@?$ctype@D@std@@QBEPBDPBD0DPAD@Z */
1421 /* ?narrow@?$ctype@D@std@@QEBAPEBDPEBD0DPEAD@Z */
1422 DEFINE_THISCALL_WRAPPER(ctype_char_narrow
, 20)
1423 const char* __thiscall
ctype_char_narrow(const ctype_char
*this,
1424 const char *first
, const char *last
, char dflt
, char *dest
)
1426 TRACE("(%p %p %p %c %p)\n", this, first
, last
, dflt
, dest
);
1427 return call_ctype_char_do_narrow(this, first
, last
, dflt
, dest
);
1430 /* ?_Narrow_s@?$ctype@D@std@@QBEPBDPBD0DPADI@Z */
1431 /* ?_Narrow_s@?$ctype@D@std@@QEBAPEBDPEBD0DPEAD_K@Z */
1432 DEFINE_THISCALL_WRAPPER(ctype_char__Narrow_s
, 24)
1433 const char* __thiscall
ctype_char__Narrow_s(const ctype_char
*this, const char *first
,
1434 const char *last
, char dflt
, char *dest
, MSVCP_size_t size
)
1436 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
1437 return call_ctype_char__Do_narrow_s(this, first
, last
, dflt
, dest
, size
);
1440 /* ?do_widen@?$ctype@D@std@@MBEDD@Z */
1441 /* ?do_widen@?$ctype@D@std@@MEBADD@Z */
1442 DEFINE_THISCALL_WRAPPER(ctype_char_do_widen_ch
, 8)
1443 #define call_ctype_char_do_widen_ch(this, ch) CALL_VTBL_FUNC(this, 24, \
1444 char, (const ctype_char*, char), (this, ch))
1445 char __thiscall
ctype_char_do_widen_ch(const ctype_char
*this, char ch
)
1447 TRACE("(%p %c)\n", this, ch
);
1451 /* ?do_widen@?$ctype@D@std@@MBEPBDPBD0PAD@Z */
1452 /* ?do_widen@?$ctype@D@std@@MEBAPEBDPEBD0PEAD@Z */
1453 DEFINE_THISCALL_WRAPPER(ctype_char_do_widen
, 16)
1454 #define call_ctype_char_do_widen(this, first, last, dest) CALL_VTBL_FUNC(this, 20, \
1455 const char*, (const ctype_char*, const char*, const char*, char*), \
1456 (this, first, last, dest))
1457 const char* __thiscall
ctype_char_do_widen(const ctype_char
*this,
1458 const char *first
, const char *last
, char *dest
)
1460 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
1461 memcpy(dest
, first
, last
-first
);
1465 /* ?_Do_widen_s@?$ctype@D@std@@MBEPBDPBD0PADI@Z */
1466 /* ?_Do_widen_s@?$ctype@D@std@@MEBAPEBDPEBD0PEAD_K@Z */
1467 DEFINE_THISCALL_WRAPPER(ctype_char__Do_widen_s
, 20)
1468 #define call_ctype_char__Do_widen_s(this, first, last, dest, size) CALL_VTBL_FUNC(this, 28, \
1469 const char*, (const ctype_char*, const char*, const char*, char*, MSVCP_size_t), \
1470 (this, first, last, dest, size))
1471 const char* __thiscall
ctype_char__Do_widen_s(const ctype_char
*this,
1472 const char *first
, const char *last
, char *dest
, MSVCP_size_t size
)
1474 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
1475 memcpy_s(dest
, size
, first
, last
-first
);
1479 /* ?widen@?$ctype@D@std@@QBEDD@Z */
1480 /* ?widen@?$ctype@D@std@@QEBADD@Z */
1481 DEFINE_THISCALL_WRAPPER(ctype_char_widen_ch
, 8)
1482 char __thiscall
ctype_char_widen_ch(const ctype_char
*this, char ch
)
1484 TRACE("(%p %c)\n", this, ch
);
1485 return call_ctype_char_do_widen_ch(this, ch
);
1488 /* ?widen@?$ctype@D@std@@QBEPBDPBD0PAD@Z */
1489 /* ?widen@?$ctype@D@std@@QEBAPEBDPEBD0PEAD@Z */
1490 DEFINE_THISCALL_WRAPPER(ctype_char_widen
, 16)
1491 const char* __thiscall
ctype_char_widen(const ctype_char
*this,
1492 const char *first
, const char *last
, char *dest
)
1494 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
1495 return call_ctype_char_do_widen(this, first
, last
, dest
);
1498 /* ?_Widen_s@?$ctype@D@std@@QBEPBDPBD0PADI@Z */
1499 /* ?_Widen_s@?$ctype@D@std@@QEBAPEBDPEBD0PEAD_K@Z */
1500 DEFINE_THISCALL_WRAPPER(ctype_char__Widen_s
, 20)
1501 const char* __thiscall
ctype_char__Widen_s(const ctype_char
*this,
1502 const char *first
, const char *last
, char *dest
, MSVCP_size_t size
)
1504 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
1505 return call_ctype_char__Do_widen_s(this, first
, last
, dest
, size
);
1508 /* ?_Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
1509 /* ?_Getcat@?$ctype@D@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
1510 MSVCP_size_t __cdecl
ctype_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
1512 TRACE("(%p %p)\n", facet
, loc
);
1514 if(facet
&& !*facet
) {
1517 *facet
= MSVCRT_operator_new(sizeof(ctype_char
));
1519 ERR("Out of memory\n");
1520 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
1524 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
1525 ctype_char_ctor_locinfo((ctype_char
*)*facet
, &locinfo
, 0);
1526 _Locinfo_dtor(&locinfo
);
1532 ctype_char
* ctype_char_use_facet(const locale
*loc
)
1534 static ctype_char
*obj
= NULL
;
1537 const locale_facet
*fac
;
1539 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
1540 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&ctype_char_id
));
1542 _Lockit_dtor(&lock
);
1543 return (ctype_char
*)fac
;
1547 _Lockit_dtor(&lock
);
1551 ctype_char__Getcat(&fac
, loc
);
1552 obj
= (ctype_char
*)fac
;
1553 locale_facet__Incref(&obj
->base
.facet
);
1554 locale_facet_register(&obj
->base
.facet
);
1555 _Lockit_dtor(&lock
);
1561 int __cdecl
_Tolower(int ch
, const _Ctypevec
*ctype
)
1565 TRACE("%d %p\n", ch
, ctype
);
1570 cp
= ___lc_codepage_func();
1572 /* Don't convert to unicode in case of C locale */
1574 if(ch
>='A' && ch
<='Z')
1583 str
[0] = (ch
>>8) & 255;
1591 if(!MultiByteToWideChar(cp
, MB_ERR_INVALID_CHARS
, str
, size
, &wide
, 1))
1594 lower
= tolowerW(wide
);
1598 WideCharToMultiByte(cp
, 0, &lower
, 1, str
, 2, NULL
, NULL
);
1600 return str
[0] + (str
[1]<<8);
1604 /* ?do_tolower@?$ctype@D@std@@MBEDD@Z */
1605 /* ?do_tolower@?$ctype@D@std@@MEBADD@Z */
1606 #define call_ctype_char_do_tolower_ch(this, ch) CALL_VTBL_FUNC(this, 8, \
1607 char, (const ctype_char*, char), (this, ch))
1608 DEFINE_THISCALL_WRAPPER(ctype_char_do_tolower_ch
, 8)
1609 char __thiscall
ctype_char_do_tolower_ch(const ctype_char
*this, char ch
)
1611 TRACE("(%p %c)\n", this, ch
);
1612 return _Tolower(ch
, &this->ctype
);
1615 /* ?do_tolower@?$ctype@D@std@@MBEPBDPADPBD@Z */
1616 /* ?do_tolower@?$ctype@D@std@@MEBAPEBDPEADPEBD@Z */
1617 #define call_ctype_char_do_tolower(this, first, last) CALL_VTBL_FUNC(this, 4, \
1618 const char*, (const ctype_char*, char*, const char*), (this, first, last))
1619 DEFINE_THISCALL_WRAPPER(ctype_char_do_tolower
, 12)
1620 const char* __thiscall
ctype_char_do_tolower(const ctype_char
*this, char *first
, const char *last
)
1622 TRACE("(%p %p %p)\n", this, first
, last
);
1623 for(; first
<last
; first
++)
1624 *first
= _Tolower(*first
, &this->ctype
);
1628 /* ?tolower@?$ctype@D@std@@QBEDD@Z */
1629 /* ?tolower@?$ctype@D@std@@QEBADD@Z */
1630 DEFINE_THISCALL_WRAPPER(ctype_char_tolower_ch
, 8)
1631 char __thiscall
ctype_char_tolower_ch(const ctype_char
*this, char ch
)
1633 TRACE("(%p %c)\n", this, ch
);
1634 return call_ctype_char_do_tolower_ch(this, ch
);
1637 /* ?tolower@?$ctype@D@std@@QBEPBDPADPBD@Z */
1638 /* ?tolower@?$ctype@D@std@@QEBAPEBDPEADPEBD@Z */
1639 DEFINE_THISCALL_WRAPPER(ctype_char_tolower
, 12)
1640 const char* __thiscall
ctype_char_tolower(const ctype_char
*this, char *first
, const char *last
)
1642 TRACE("(%p %p %p)\n", this, first
, last
);
1643 return call_ctype_char_do_tolower(this, first
, last
);
1647 int __cdecl
_Toupper(int ch
, const _Ctypevec
*ctype
)
1651 TRACE("%d %p\n", ch
, ctype
);
1656 cp
= ___lc_codepage_func();
1658 /* Don't convert to unicode in case of C locale */
1660 if(ch
>='a' && ch
<='z')
1669 str
[0] = (ch
>>8) & 255;
1677 if(!MultiByteToWideChar(cp
, MB_ERR_INVALID_CHARS
, str
, size
, &wide
, 1))
1680 upper
= toupperW(wide
);
1684 WideCharToMultiByte(cp
, 0, &upper
, 1, str
, 2, NULL
, NULL
);
1686 return str
[0] + (str
[1]<<8);
1690 /* ?do_toupper@?$ctype@D@std@@MBEDD@Z */
1691 /* ?do_toupper@?$ctype@D@std@@MEBADD@Z */
1692 #define call_ctype_char_do_toupper_ch(this, ch) CALL_VTBL_FUNC(this, 16, \
1693 char, (const ctype_char*, char), (this, ch))
1694 DEFINE_THISCALL_WRAPPER(ctype_char_do_toupper_ch
, 8)
1695 char __thiscall
ctype_char_do_toupper_ch(const ctype_char
*this, char ch
)
1697 TRACE("(%p %c)\n", this, ch
);
1698 return _Toupper(ch
, &this->ctype
);
1701 /* ?do_toupper@?$ctype@D@std@@MBEPBDPADPBD@Z */
1702 /* ?do_toupper@?$ctype@D@std@@MEBAPEBDPEADPEBD@Z */
1703 #define call_ctype_char_do_toupper(this, first, last) CALL_VTBL_FUNC(this, 12, \
1704 const char*, (const ctype_char*, char*, const char*), (this, first, last))
1705 DEFINE_THISCALL_WRAPPER(ctype_char_do_toupper
, 12)
1706 const char* __thiscall
ctype_char_do_toupper(const ctype_char
*this,
1707 char *first
, const char *last
)
1709 TRACE("(%p %p %p)\n", this, first
, last
);
1710 for(; first
<last
; first
++)
1711 *first
= _Toupper(*first
, &this->ctype
);
1715 /* ?toupper@?$ctype@D@std@@QBEDD@Z */
1716 /* ?toupper@?$ctype@D@std@@QEBADD@Z */
1717 DEFINE_THISCALL_WRAPPER(ctype_char_toupper_ch
, 8)
1718 char __thiscall
ctype_char_toupper_ch(const ctype_char
*this, char ch
)
1720 TRACE("(%p %c)\n", this, ch
);
1721 return call_ctype_char_do_toupper_ch(this, ch
);
1724 /* ?toupper@?$ctype@D@std@@QBEPBDPADPBD@Z */
1725 /* ?toupper@?$ctype@D@std@@QEBAPEBDPEADPEBD@Z */
1726 DEFINE_THISCALL_WRAPPER(ctype_char_toupper
, 12)
1727 const char* __thiscall
ctype_char_toupper(const ctype_char
*this, char *first
, const char *last
)
1729 TRACE("(%p %p %p)\n", this, first
, last
);
1730 return call_ctype_char_do_toupper(this, first
, last
);
1733 /* ?is@?$ctype@D@std@@QBE_NFD@Z */
1734 /* ?is@?$ctype@D@std@@QEBA_NFD@Z */
1735 DEFINE_THISCALL_WRAPPER(ctype_char_is_ch
, 12)
1736 MSVCP_bool __thiscall
ctype_char_is_ch(const ctype_char
*this, short mask
, char ch
)
1738 TRACE("(%p %x %c)\n", this, mask
, ch
);
1739 return (this->ctype
.table
[(unsigned char)ch
] & mask
) != 0;
1742 /* ?is@?$ctype@D@std@@QBEPBDPBD0PAF@Z */
1743 /* ?is@?$ctype@D@std@@QEBAPEBDPEBD0PEAF@Z */
1744 DEFINE_THISCALL_WRAPPER(ctype_char_is
, 16)
1745 const char* __thiscall
ctype_char_is(const ctype_char
*this, const char *first
, const char *last
, short *dest
)
1747 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
1748 for(; first
<last
; first
++)
1749 *dest
++ = this->ctype
.table
[(unsigned char)*first
];
1753 /* ?scan_is@?$ctype@D@std@@QBEPBDFPBD0@Z */
1754 /* ?scan_is@?$ctype@D@std@@QEBAPEBDFPEBD0@Z */
1755 DEFINE_THISCALL_WRAPPER(ctype_char_scan_is
, 16)
1756 const char* __thiscall
ctype_char_scan_is(const ctype_char
*this, short mask
, const char *first
, const char *last
)
1758 TRACE("(%p %x %p %p)\n", this, mask
, first
, last
);
1759 for(; first
<last
; first
++)
1760 if(!ctype_char_is_ch(this, mask
, *first
))
1765 /* ?scan_not@?$ctype@D@std@@QBEPBDFPBD0@Z */
1766 /* ?scan_not@?$ctype@D@std@@QEBAPEBDFPEBD0@Z */
1767 DEFINE_THISCALL_WRAPPER(ctype_char_scan_not
, 16)
1768 const char* __thiscall
ctype_char_scan_not(const ctype_char
*this, short mask
, const char *first
, const char *last
)
1770 TRACE("(%p %x %p %p)\n", this, mask
, first
, last
);
1771 for(; first
<last
; first
++)
1772 if(ctype_char_is_ch(this, mask
, *first
))
1777 /* ?table@?$ctype@D@std@@IBEPBFXZ */
1778 /* ?table@?$ctype@D@std@@IEBAPEBFXZ */
1779 DEFINE_THISCALL_WRAPPER(ctype_char_table
, 4)
1780 const short* __thiscall
ctype_char_table(const ctype_char
*this)
1782 TRACE("(%p)\n", this);
1783 return this->ctype
.table
;
1786 /* ?id@?$ctype@_W@std@@2V0locale@2@A */
1787 locale_id ctype_wchar_id
= {0};
1788 /* ?id@?$ctype@G@std@@2V0locale@2@A */
1789 locale_id ctype_short_id
= {0};
1791 /* ??_7?$ctype@_W@std@@6B@ */
1792 extern const vtable_ptr MSVCP_ctype_wchar_vtable
;
1793 /* ??_7?$ctype@G@std@@6B@ */
1794 extern const vtable_ptr MSVCP_ctype_short_vtable
;
1796 /* ?_Id_func@?$ctype@_W@std@@SAAAVid@locale@2@XZ */
1797 /* ?_Id_func@?$ctype@_W@std@@SAAEAVid@locale@2@XZ */
1798 locale_id
* __cdecl
ctype_wchar__Id_func(void)
1801 return &ctype_wchar_id
;
1804 /* ?_Id_func@?$ctype@G@std@@SAAAVid@locale@2@XZ */
1805 /* ?_Id_func@?$ctype@G@std@@SAAEAVid@locale@2@XZ */
1806 locale_id
* __cdecl
ctype_short__Id_func(void)
1809 return &ctype_short_id
;
1812 /* ?_Init@?$ctype@_W@std@@IAEXABV_Locinfo@2@@Z */
1813 /* ?_Init@?$ctype@_W@std@@IEAAXAEBV_Locinfo@2@@Z */
1814 /* ?_Init@?$ctype@G@std@@IAEXABV_Locinfo@2@@Z */
1815 /* ?_Init@?$ctype@G@std@@IEAAXAEBV_Locinfo@2@@Z */
1816 DEFINE_THISCALL_WRAPPER(ctype_wchar__Init
, 8)
1817 void __thiscall
ctype_wchar__Init(ctype_wchar
*this, const _Locinfo
*locinfo
)
1819 TRACE("(%p %p)\n", this, locinfo
);
1820 _Locinfo__Getctype(locinfo
, &this->ctype
);
1821 _Locinfo__Getcvt(locinfo
, &this->cvt
);
1824 /* ??0?$ctype@_W@std@@QAE@ABV_Locinfo@1@I@Z */
1825 /* ??0?$ctype@_W@std@@QEAA@AEBV_Locinfo@1@_K@Z */
1826 DEFINE_THISCALL_WRAPPER(ctype_wchar_ctor_locinfo
, 12)
1827 ctype_wchar
* __thiscall
ctype_wchar_ctor_locinfo(ctype_wchar
*this,
1828 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
1830 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
1831 ctype_base_ctor_refs(&this->base
, refs
);
1832 this->base
.facet
.vtable
= &MSVCP_ctype_wchar_vtable
;
1833 ctype_wchar__Init(this, locinfo
);
1837 /* ??0?$ctype@G@std@@QAE@ABV_Locinfo@1@I@Z */
1838 /* ??0?$ctype@G@std@@QEAA@AEBV_Locinfo@1@_K@Z */
1839 DEFINE_THISCALL_WRAPPER(ctype_short_ctor_locinfo
, 12)
1840 ctype_wchar
* __thiscall
ctype_short_ctor_locinfo(ctype_wchar
*this,
1841 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
1843 ctype_wchar
*ret
= ctype_wchar_ctor_locinfo(this, locinfo
, refs
);
1844 this->base
.facet
.vtable
= &MSVCP_ctype_short_vtable
;
1848 /* ??0?$ctype@_W@std@@QAE@I@Z */
1849 /* ??0?$ctype@_W@std@@QEAA@_K@Z */
1850 DEFINE_THISCALL_WRAPPER(ctype_wchar_ctor_refs
, 8)
1851 ctype_wchar
* __thiscall
ctype_wchar_ctor_refs(ctype_wchar
*this, MSVCP_size_t refs
)
1855 TRACE("(%p %lu)\n", this, refs
);
1857 ctype_base_ctor_refs(&this->base
, refs
);
1858 this->base
.facet
.vtable
= &MSVCP_ctype_wchar_vtable
;
1860 _Locinfo_ctor(&locinfo
);
1861 ctype_wchar__Init(this, &locinfo
);
1862 _Locinfo_dtor(&locinfo
);
1866 /* ??0?$ctype@G@std@@QAE@I@Z */
1867 /* ??0?$ctype@G@std@@QEAA@_K@Z */
1868 DEFINE_THISCALL_WRAPPER(ctype_short_ctor_refs
, 8)
1869 ctype_wchar
* __thiscall
ctype_short_ctor_refs(ctype_wchar
*this, MSVCP_size_t refs
)
1871 ctype_wchar
*ret
= ctype_wchar_ctor_refs(this, refs
);
1872 this->base
.facet
.vtable
= &MSVCP_ctype_short_vtable
;
1876 /* ??0?$ctype@G@std@@IAE@PBDI@Z */
1877 /* ??0?$ctype@G@std@@IEAA@PEBD_K@Z */
1878 DEFINE_THISCALL_WRAPPER(ctype_short_ctor_name
, 12)
1879 ctype_wchar
* __thiscall
ctype_short_ctor_name(ctype_wchar
*this,
1880 const char *name
, MSVCP_size_t refs
)
1884 TRACE("(%p %s %lu)\n", this, debugstr_a(name
), refs
);
1886 ctype_base_ctor_refs(&this->base
, refs
);
1887 this->base
.facet
.vtable
= &MSVCP_ctype_short_vtable
;
1889 _Locinfo_ctor_cstr(&locinfo
, name
);
1890 ctype_wchar__Init(this, &locinfo
);
1891 _Locinfo_dtor(&locinfo
);
1895 /* ??_F?$ctype@_W@std@@QAEXXZ */
1896 /* ??_F?$ctype@_W@std@@QEAAXXZ */
1897 DEFINE_THISCALL_WRAPPER(ctype_wchar_ctor
, 4)
1898 ctype_wchar
* __thiscall
ctype_wchar_ctor(ctype_wchar
*this)
1900 TRACE("(%p)\n", this);
1901 return ctype_short_ctor_refs(this, 0);
1904 /* ??_F?$ctype@G@std@@QAEXXZ */
1905 /* ??_F?$ctype@G@std@@QEAAXXZ */
1906 DEFINE_THISCALL_WRAPPER(ctype_short_ctor
, 4)
1907 ctype_wchar
* __thiscall
ctype_short_ctor(ctype_wchar
*this)
1909 ctype_wchar
*ret
= ctype_wchar_ctor(this);
1910 this->base
.facet
.vtable
= &MSVCP_ctype_short_vtable
;
1914 /* ??1?$ctype@_W@std@@MAE@XZ */
1915 /* ??1?$ctype@_W@std@@MEAA@XZ */
1916 /* ??1?$ctype@G@std@@MAE@XZ */
1917 /* ??1?$ctype@G@std@@MEAA@XZ */
1918 DEFINE_THISCALL_WRAPPER(ctype_wchar_dtor
, 4)
1919 void __thiscall
ctype_wchar_dtor(ctype_wchar
*this)
1921 TRACE("(%p)\n", this);
1922 if(this->ctype
.delfl
)
1923 free((void*)this->ctype
.table
);
1926 DEFINE_THISCALL_WRAPPER(MSVCP_ctype_wchar_vector_dtor
, 8)
1927 ctype_wchar
* __thiscall
MSVCP_ctype_wchar_vector_dtor(ctype_wchar
*this, unsigned int flags
)
1929 TRACE("(%p %x)\n", this, flags
);
1931 /* we have an array, with the number of elements stored before the first object */
1932 int i
, *ptr
= (int *)this-1;
1934 for(i
=*ptr
-1; i
>=0; i
--)
1935 ctype_wchar_dtor(this+i
);
1936 MSVCRT_operator_delete(ptr
);
1938 ctype_wchar_dtor(this);
1940 MSVCRT_operator_delete(this);
1946 DEFINE_THISCALL_WRAPPER(MSVCP_ctype_short_vector_dtor
, 8)
1947 ctype_wchar
* __thiscall
MSVCP_ctype_short_vector_dtor(ctype_wchar
*this, unsigned int flags
)
1949 return MSVCP_ctype_wchar_vector_dtor(this, flags
);
1953 int __cdecl
_Wcrtomb(char *s
, wchar_t wch
, int *state
, const _Cvtvec
*cvt
)
1958 TRACE("%p %d %p %p\n", s
, wch
, state
, cvt
);
1963 cp
= ___lc_codepage_func();
1975 size
= WideCharToMultiByte(cp
, 0, &wch
, 1, s
, MB_LEN_MAX
, NULL
, &def
);
1984 /* ?_Donarrow@?$ctype@_W@std@@IBED_WD@Z */
1985 /* ?_Donarrow@?$ctype@_W@std@@IEBAD_WD@Z */
1986 /* ?_Donarrow@?$ctype@G@std@@IBEDGD@Z */
1987 /* ?_Donarrow@?$ctype@G@std@@IEBADGD@Z */
1988 DEFINE_THISCALL_WRAPPER(ctype_wchar__Donarrow
, 12)
1989 char __thiscall
ctype_wchar__Donarrow(const ctype_wchar
*this, wchar_t ch
, char dflt
)
1991 char buf
[MB_LEN_MAX
];
1993 TRACE("(%p %d %d)\n", this, ch
, dflt
);
1995 return _Wcrtomb(buf
, ch
, NULL
, &this->cvt
)==1 ? buf
[0] : dflt
;
1998 /* ?do_narrow@?$ctype@_W@std@@MBED_WD@Z */
1999 /* ?do_narrow@?$ctype@_W@std@@MEBAD_WD@Z */
2000 /* ?do_narrow@?$ctype@G@std@@MBEDGD@Z */
2001 /* ?do_narrow@?$ctype@G@std@@MEBADGD@Z */
2002 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_narrow_ch
, 12)
2003 #define call_ctype_wchar_do_narrow_ch(this, ch, dflt) CALL_VTBL_FUNC(this, 48, \
2004 char, (const ctype_wchar*, wchar_t, char), (this, ch, dflt))
2005 char __thiscall
ctype_wchar_do_narrow_ch(const ctype_wchar
*this, wchar_t ch
, char dflt
)
2007 return ctype_wchar__Donarrow(this, ch
, dflt
);
2010 /* ?do_narrow@?$ctype@_W@std@@MBEPB_WPB_W0DPAD@Z */
2011 /* ?do_narrow@?$ctype@_W@std@@MEBAPEB_WPEB_W0DPEAD@Z */
2012 /* ?do_narrow@?$ctype@G@std@@MBEPBGPBG0DPAD@Z */
2013 /* ?do_narrow@?$ctype@G@std@@MEBAPEBGPEBG0DPEAD@Z */
2014 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_narrow
, 20)
2015 #define call_ctype_wchar_do_narrow(this, first, last, dflt, dest) CALL_VTBL_FUNC(this, 44, \
2016 const wchar_t*, (const ctype_wchar*, const wchar_t*, const wchar_t*, char, char*), \
2017 (this, first, last, dflt, dest))
2018 const wchar_t* __thiscall
ctype_wchar_do_narrow(const ctype_wchar
*this,
2019 const wchar_t *first
, const wchar_t *last
, char dflt
, char *dest
)
2021 TRACE("(%p %p %p %d %p)\n", this, first
, last
, dflt
, dest
);
2022 for(; first
<last
; first
++)
2023 *dest
++ = ctype_wchar__Donarrow(this, *first
, dflt
);
2027 /* ?_Do_narrow_s@?$ctype@_W@std@@MBEPB_WPB_W0DPADI@Z */
2028 /* ?_Do_narrow_s@?$ctype@_W@std@@MEBAPEB_WPEB_W0DPEAD_K@Z */
2029 /* ?_Do_narrow_s@?$ctype@G@std@@MBEPBGPBG0DPADI@Z */
2030 /* ?_Do_narrow_s@?$ctype@G@std@@MEBAPEBGPEBG0DPEAD_K@Z */
2031 DEFINE_THISCALL_WRAPPER(ctype_wchar__Do_narrow_s
, 24)
2032 #define call_ctype_wchar__Do_narrow_s(this, first, last, dflt, dest, size) CALL_VTBL_FUNC(this, 56, \
2033 const wchar_t*, (const ctype_wchar*, const wchar_t*, const wchar_t*, char, char*, MSVCP_size_t), \
2034 (this, first, last, dflt, dest, size))
2035 const wchar_t* __thiscall
ctype_wchar__Do_narrow_s(const ctype_wchar
*this,
2036 const wchar_t *first
, const wchar_t *last
, char dflt
, char *dest
, MSVCP_size_t size
)
2038 TRACE("(%p %p %p %d %p %lu)\n", this, first
, last
, dflt
, dest
, size
);
2039 /* This function converts all multi-byte characters to dflt,
2040 * thanks to it result size is known before converting */
2041 if(last
-first
> size
)
2043 return ctype_wchar_do_narrow(this, first
, last
, dflt
, dest
);
2046 /* ?narrow@?$ctype@_W@std@@QBED_WD@Z */
2047 /* ?narrow@?$ctype@_W@std@@QEBAD_WD@Z */
2048 /* ?narrow@?$ctype@G@std@@QBEDGD@Z */
2049 /* ?narrow@?$ctype@G@std@@QEBADGD@Z */
2050 DEFINE_THISCALL_WRAPPER(ctype_wchar_narrow_ch
, 12)
2051 char __thiscall
ctype_wchar_narrow_ch(const ctype_wchar
*this, wchar_t ch
, char dflt
)
2053 TRACE("(%p %d %d)\n", this, ch
, dflt
);
2054 return call_ctype_wchar_do_narrow_ch(this, ch
, dflt
);
2057 /* ?narrow@?$ctype@_W@std@@QBEPB_WPB_W0DPAD@Z */
2058 /* ?narrow@?$ctype@_W@std@@QEBAPEB_WPEB_W0DPEAD@Z */
2059 /* ?narrow@?$ctype@G@std@@QBEPBGPBG0DPAD@Z */
2060 /* ?narrow@?$ctype@G@std@@QEBAPEBGPEBG0DPEAD@Z */
2061 DEFINE_THISCALL_WRAPPER(ctype_wchar_narrow
, 20)
2062 const wchar_t* __thiscall
ctype_wchar_narrow(const ctype_wchar
*this,
2063 const wchar_t *first
, const wchar_t *last
, char dflt
, char *dest
)
2065 TRACE("(%p %p %p %d %p)\n", this, first
, last
, dflt
, dest
);
2066 return call_ctype_wchar_do_narrow(this, first
, last
, dflt
, dest
);
2069 /* ?_Narrow_s@?$ctype@_W@std@@QBEPB_WPB_W0DPADI@Z */
2070 /* ?_Narrow_s@?$ctype@_W@std@@QEBAPEB_WPEB_W0DPEAD_K@Z */
2071 /* ?_Narrow_s@?$ctype@G@std@@QBEPBGPBG0DPADI@Z */
2072 /* ?_Narrow_s@?$ctype@G@std@@QEBAPEBGPEBG0DPEAD_K@Z */
2073 DEFINE_THISCALL_WRAPPER(ctype_wchar__Narrow_s
, 24)
2074 const wchar_t* __thiscall
ctype_wchar__Narrow_s(const ctype_wchar
*this, const wchar_t *first
,
2075 const wchar_t *last
, char dflt
, char *dest
, MSVCP_size_t size
)
2077 TRACE("(%p %p %p %d %p %lu)\n", this, first
, last
, dflt
, dest
, size
);
2078 return call_ctype_wchar__Do_narrow_s(this, first
, last
, dflt
, dest
, size
);
2082 int __cdecl
_Mbrtowc(wchar_t *out
, const char *in
, MSVCP_size_t len
, int *state
, const _Cvtvec
*cvt
)
2088 TRACE("(%p %p %lu %p %p)\n", out
, in
, len
, state
, cvt
);
2096 cp
= ___lc_codepage_func();
2100 *out
= (unsigned char)*in
;
2107 ((char*)state
)[1] = *in
;
2109 if(!MultiByteToWideChar(cp
, MB_ERR_INVALID_CHARS
, (char*)state
, 2, out
, out
? 1 : 0)) {
2119 GetCPInfo(cp
, &cp_info
);
2121 for(i
=0; i
<MAX_LEADBYTES
; i
+=2) {
2122 if(!cp_info
.LeadByte
[i
+1])
2124 if((unsigned char)*in
>=cp_info
.LeadByte
[i
] && (unsigned char)*in
<=cp_info
.LeadByte
[i
+1]) {
2132 *state
= (unsigned char)*in
;
2136 if(!MultiByteToWideChar(cp
, MB_ERR_INVALID_CHARS
, in
, 2, out
, out
? 1 : 0)) {
2143 if(!MultiByteToWideChar(cp
, MB_ERR_INVALID_CHARS
, in
, 1, out
, out
? 1 : 0)) {
2150 /* ?_Dowiden@?$ctype@_W@std@@IBE_WD@Z */
2151 /* ?_Dowiden@?$ctype@_W@std@@IEBA_WD@Z */
2152 /* ?_Dowiden@?$ctype@G@std@@IBEGD@Z */
2153 /* ?_Dowiden@?$ctype@G@std@@IEBAGD@Z */
2154 DEFINE_THISCALL_WRAPPER(ctype_wchar__Dowiden
, 8)
2155 wchar_t __thiscall
ctype_wchar__Dowiden(const ctype_wchar
*this, char ch
)
2159 TRACE("(%p %d)\n", this, ch
);
2160 return _Mbrtowc(&ret
, &ch
, 1, &state
, &this->cvt
)<0 ? WEOF
: ret
;
2163 /* ?do_widen@?$ctype@_W@std@@MBE_WD@Z */
2164 /* ?do_widen@?$ctype@_W@std@@MEBA_WD@Z */
2165 /* ?do_widen@?$ctype@G@std@@MBEGD@Z */
2166 /* ?do_widen@?$ctype@G@std@@MEBAGD@Z */
2167 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_widen_ch
, 8)
2168 #define call_ctype_wchar_do_widen_ch(this, ch) CALL_VTBL_FUNC(this, 40, \
2169 wchar_t, (const ctype_wchar*, char), (this, ch))
2170 wchar_t __thiscall
ctype_wchar_do_widen_ch(const ctype_wchar
*this, char ch
)
2172 return ctype_wchar__Dowiden(this, ch
);
2175 /* ?do_widen@?$ctype@_W@std@@MBEPBDPBD0PA_W@Z */
2176 /* ?do_widen@?$ctype@_W@std@@MEBAPEBDPEBD0PEA_W@Z */
2177 /* ?do_widen@?$ctype@G@std@@MBEPBDPBD0PAG@Z */
2178 /* ?do_widen@?$ctype@G@std@@MEBAPEBDPEBD0PEAG@Z */
2179 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_widen
, 16)
2180 #define call_ctype_wchar_do_widen(this, first, last, dest) CALL_VTBL_FUNC(this, 36, \
2181 const char*, (const ctype_wchar*, const char*, const char*, wchar_t*), \
2182 (this, first, last, dest))
2183 const char* __thiscall
ctype_wchar_do_widen(const ctype_wchar
*this,
2184 const char *first
, const char *last
, wchar_t *dest
)
2186 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
2187 for(; first
<last
; first
++)
2188 *dest
++ = ctype_wchar__Dowiden(this, *first
);
2192 /* ?_Do_widen_s@?$ctype@_W@std@@MBEPBDPBD0PA_WI@Z */
2193 /* ?_Do_widen_s@?$ctype@_W@std@@MEBAPEBDPEBD0PEA_W_K@Z */
2194 /* ?_Do_widen_s@?$ctype@G@std@@MBEPBDPBD0PAGI@Z */
2195 /* ?_Do_widen_s@?$ctype@G@std@@MEBAPEBDPEBD0PEAG_K@Z */
2196 DEFINE_THISCALL_WRAPPER(ctype_wchar__Do_widen_s
, 20)
2197 #define call_ctype_wchar__Do_widen_s(this, first, last, dest, size) CALL_VTBL_FUNC(this, 44, \
2198 const char*, (const ctype_wchar*, const char*, const char*, wchar_t*, MSVCP_size_t), \
2199 (this, first, last, dest, size))
2200 const char* __thiscall
ctype_wchar__Do_widen_s(const ctype_wchar
*this,
2201 const char *first
, const char *last
, wchar_t *dest
, MSVCP_size_t size
)
2203 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
2204 /* This function converts all multi-byte characters to WEOF,
2205 * thanks to it result size is known before converting */
2206 if(size
< last
-first
)
2208 return ctype_wchar_do_widen(this, first
, last
, dest
);
2211 /* ?widen@?$ctype@_W@std@@QBE_WD@Z */
2212 /* ?widen@?$ctype@_W@std@@QEBA_WD@Z */
2213 /* ?widen@?$ctype@G@std@@QBEGD@Z */
2214 /* ?widen@?$ctype@G@std@@QEBAGD@Z */
2215 DEFINE_THISCALL_WRAPPER(ctype_wchar_widen_ch
, 8)
2216 wchar_t __thiscall
ctype_wchar_widen_ch(const ctype_wchar
*this, char ch
)
2218 TRACE("(%p %d)\n", this, ch
);
2219 return call_ctype_wchar_do_widen_ch(this, ch
);
2222 /* ?widen@?$ctype@_W@std@@QBEPBDPBD0PA_W@Z */
2223 /* ?widen@?$ctype@_W@std@@QEBAPEBDPEBD0PEA_W@Z */
2224 /* ?widen@?$ctype@G@std@@QBEPBDPBD0PAG@Z */
2225 /* ?widen@?$ctype@G@std@@QEBAPEBDPEBD0PEAG@Z */
2226 DEFINE_THISCALL_WRAPPER(ctype_wchar_widen
, 16)
2227 const char* __thiscall
ctype_wchar_widen(const ctype_wchar
*this,
2228 const char *first
, const char *last
, wchar_t *dest
)
2230 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
2231 return call_ctype_wchar_do_widen(this, first
, last
, dest
);
2234 /* ?_Widen_s@?$ctype@_W@std@@QBEPBDPBD0PA_WI@Z */
2235 /* ?_Widen_s@?$ctype@_W@std@@QEBAPEBDPEBD0PEA_W_K@Z */
2236 /* ?_Widen_s@?$ctype@G@std@@QBEPBDPBD0PAGI@Z */
2237 /* ?_Widen_s@?$ctype@G@std@@QEBAPEBDPEBD0PEAG_K@Z */
2238 DEFINE_THISCALL_WRAPPER(ctype_wchar__Widen_s
, 20)
2239 const char* __thiscall
ctype_wchar__Widen_s(const ctype_wchar
*this,
2240 const char *first
, const char *last
, wchar_t *dest
, MSVCP_size_t size
)
2242 TRACE("(%p %p %p %p %lu)\n", this, first
, last
, dest
, size
);
2243 return call_ctype_wchar__Do_widen_s(this, first
, last
, dest
, size
);
2246 /* ?_Getcat@?$ctype@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
2247 /* ?_Getcat@?$ctype@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
2248 MSVCP_size_t __cdecl
ctype_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
2250 TRACE("(%p %p)\n", facet
, loc
);
2252 if(facet
&& !*facet
) {
2255 *facet
= MSVCRT_operator_new(sizeof(ctype_wchar
));
2257 ERR("Out of memory\n");
2258 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
2262 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
2263 ctype_wchar_ctor_locinfo((ctype_wchar
*)*facet
, &locinfo
, 0);
2264 _Locinfo_dtor(&locinfo
);
2270 /* ?_Getcat@?$ctype@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
2271 /* ?_Getcat@?$ctype@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
2272 MSVCP_size_t __cdecl
ctype_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
2274 if(facet
&& !*facet
) {
2275 ctype_wchar__Getcat(facet
, loc
);
2276 (*(locale_facet
**)facet
)->vtable
= &MSVCP_ctype_short_vtable
;
2283 wchar_t __cdecl
_Towlower(wchar_t ch
, const _Ctypevec
*ctype
)
2285 TRACE("(%d %p)\n", ch
, ctype
);
2286 return tolowerW(ch
);
2289 ctype_wchar
* ctype_wchar_use_facet(const locale
*loc
)
2291 static ctype_wchar
*obj
= NULL
;
2294 const locale_facet
*fac
;
2296 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
2297 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&ctype_wchar_id
));
2299 _Lockit_dtor(&lock
);
2300 return (ctype_wchar
*)fac
;
2304 _Lockit_dtor(&lock
);
2308 ctype_wchar__Getcat(&fac
, loc
);
2309 obj
= (ctype_wchar
*)fac
;
2310 locale_facet__Incref(&obj
->base
.facet
);
2311 locale_facet_register(&obj
->base
.facet
);
2312 _Lockit_dtor(&lock
);
2317 ctype_wchar
* ctype_short_use_facet(const locale
*loc
)
2319 static ctype_wchar
*obj
= NULL
;
2322 const locale_facet
*fac
;
2324 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
2325 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&ctype_short_id
));
2327 _Lockit_dtor(&lock
);
2328 return (ctype_wchar
*)fac
;
2332 _Lockit_dtor(&lock
);
2336 ctype_short__Getcat(&fac
, loc
);
2337 obj
= (ctype_wchar
*)fac
;
2338 locale_facet__Incref(&obj
->base
.facet
);
2339 locale_facet_register(&obj
->base
.facet
);
2340 _Lockit_dtor(&lock
);
2345 /* ?do_tolower@?$ctype@_W@std@@MBE_W_W@Z */
2346 /* ?do_tolower@?$ctype@_W@std@@MEBA_W_W@Z */
2347 /* ?do_tolower@?$ctype@G@std@@MBEGG@Z */
2348 /* ?do_tolower@?$ctype@G@std@@MEBAGG@Z */
2349 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_tolower_ch
, 8)
2350 #define call_ctype_wchar_do_tolower_ch(this, ch) CALL_VTBL_FUNC(this, 24, \
2351 wchar_t, (const ctype_wchar*, wchar_t), (this, ch))
2352 wchar_t __thiscall
ctype_wchar_do_tolower_ch(const ctype_wchar
*this, wchar_t ch
)
2354 return _Towlower(ch
, &this->ctype
);
2357 /* ?do_tolower@?$ctype@_W@std@@MBEPB_WPA_WPB_W@Z */
2358 /* ?do_tolower@?$ctype@_W@std@@MEBAPEB_WPEA_WPEB_W@Z */
2359 /* ?do_tolower@?$ctype@G@std@@MBEPBGPAGPBG@Z */
2360 /* ?do_tolower@?$ctype@G@std@@MEBAPEBGPEAGPEBG@Z */
2361 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_tolower
, 12)
2362 #define call_ctype_wchar_do_tolower(this, first, last) CALL_VTBL_FUNC(this, 20, \
2363 const wchar_t*, (const ctype_wchar*, wchar_t*, const wchar_t*), \
2364 (this, first, last))
2365 const wchar_t* __thiscall
ctype_wchar_do_tolower(const ctype_wchar
*this,
2366 wchar_t *first
, const wchar_t *last
)
2368 TRACE("(%p %p %p)\n", this, first
, last
);
2369 for(; first
<last
; first
++)
2370 *first
= _Towlower(*first
, &this->ctype
);
2374 /* ?tolower@?$ctype@_W@std@@QBE_W_W@Z */
2375 /* ?tolower@?$ctype@_W@std@@QEBA_W_W@Z */
2376 /* ?tolower@?$ctype@G@std@@QBEGG@Z */
2377 /* ?tolower@?$ctype@G@std@@QEBAGG@Z */
2378 DEFINE_THISCALL_WRAPPER(ctype_wchar_tolower_ch
, 8)
2379 wchar_t __thiscall
ctype_wchar_tolower_ch(const ctype_wchar
*this, wchar_t ch
)
2381 TRACE("(%p %d)\n", this, ch
);
2382 return call_ctype_wchar_do_tolower_ch(this, ch
);
2385 /* ?tolower@?$ctype@_W@std@@QBEPB_WPA_WPB_W@Z */
2386 /* ?tolower@?$ctype@_W@std@@QEBAPEB_WPEA_WPEB_W@Z */
2387 /* ?tolower@?$ctype@G@std@@QBEPBGPAGPBG@Z */
2388 /* ?tolower@?$ctype@G@std@@QEBAPEBGPEAGPEBG@Z */
2389 DEFINE_THISCALL_WRAPPER(ctype_wchar_tolower
, 12)
2390 const wchar_t* __thiscall
ctype_wchar_tolower(const ctype_wchar
*this,
2391 wchar_t *first
, const wchar_t *last
)
2393 TRACE("(%p %p %p)\n", this, first
, last
);
2394 return call_ctype_wchar_do_tolower(this, first
, last
);
2398 wchar_t __cdecl
_Towupper(wchar_t ch
, const _Ctypevec
*ctype
)
2400 TRACE("(%d %p)\n", ch
, ctype
);
2401 return toupperW(ch
);
2404 /* ?do_toupper@?$ctype@_W@std@@MBE_W_W@Z */
2405 /* ?do_toupper@?$ctype@_W@std@@MEBA_W_W@Z */
2406 /* ?do_toupper@?$ctype@G@std@@MBEGG@Z */
2407 /* ?do_toupper@?$ctype@G@std@@MEBAGG@Z */
2408 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_toupper_ch
, 8)
2409 #define call_ctype_wchar_do_toupper_ch(this, ch) CALL_VTBL_FUNC(this, 32, \
2410 wchar_t, (const ctype_wchar*, wchar_t), (this, ch))
2411 wchar_t __thiscall
ctype_wchar_do_toupper_ch(const ctype_wchar
*this, wchar_t ch
)
2413 return _Towupper(ch
, &this->ctype
);
2416 /* ?do_toupper@?$ctype@_W@std@@MBEPB_WPA_WPB_W@Z */
2417 /* ?do_toupper@?$ctype@_W@std@@MEBAPEB_WPEA_WPEB_W@Z */
2418 /* ?do_toupper@?$ctype@G@std@@MBEPBGPAGPBG@Z */
2419 /* ?do_toupper@?$ctype@G@std@@MEBAPEBGPEAGPEBG@Z */
2420 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_toupper
, 12)
2421 #define call_ctype_wchar_do_toupper(this, first, last) CALL_VTBL_FUNC(this, 28, \
2422 const wchar_t*, (const ctype_wchar*, wchar_t*, const wchar_t*), \
2423 (this, first, last))
2424 const wchar_t* __thiscall
ctype_wchar_do_toupper(const ctype_wchar
*this,
2425 wchar_t *first
, const wchar_t *last
)
2427 TRACE("(%p %p %p)\n", this, first
, last
);
2428 for(; first
<last
; first
++)
2429 *first
= _Towupper(*first
, &this->ctype
);
2433 /* ?toupper@?$ctype@_W@std@@QBE_W_W@Z */
2434 /* ?toupper@?$ctype@_W@std@@QEBA_W_W@Z */
2435 /* ?toupper@?$ctype@G@std@@QBEGG@Z */
2436 /* ?toupper@?$ctype@G@std@@QEBAGG@Z */
2437 DEFINE_THISCALL_WRAPPER(ctype_wchar_toupper_ch
, 8)
2438 wchar_t __thiscall
ctype_wchar_toupper_ch(const ctype_wchar
*this, wchar_t ch
)
2440 TRACE("(%p %d)\n", this, ch
);
2441 return call_ctype_wchar_do_toupper_ch(this, ch
);
2444 /* ?toupper@?$ctype@_W@std@@QBEPB_WPA_WPB_W@Z */
2445 /* ?toupper@?$ctype@_W@std@@QEBAPEB_WPEA_WPEB_W@Z */
2446 /* ?toupper@?$ctype@G@std@@QBEPBGPAGPBG@Z */
2447 /* ?toupper@?$ctype@G@std@@QEBAPEBGPEAGPEBG@Z */
2448 DEFINE_THISCALL_WRAPPER(ctype_wchar_toupper
, 12)
2449 const wchar_t* __thiscall
ctype_wchar_toupper(const ctype_wchar
*this,
2450 wchar_t *first
, const wchar_t *last
)
2452 TRACE("(%p %p %p)\n", this, first
, last
);
2453 return call_ctype_wchar_do_toupper(this, first
, last
);
2457 const wchar_t* __cdecl
_Getwctypes(const wchar_t *first
, const wchar_t *last
,
2458 short *mask
, const _Ctypevec
*ctype
)
2460 TRACE("(%p %p %p %p)\n", first
, last
, mask
, ctype
);
2461 GetStringTypeW(CT_CTYPE1
, first
, last
-first
, (WORD
*)mask
);
2466 short __cdecl
_Getwctype(wchar_t ch
, const _Ctypevec
*ctype
)
2469 _Getwctypes(&ch
, &ch
+1, &mask
, ctype
);
2473 /* ?do_is@?$ctype@_W@std@@MBE_NF_W@Z */
2474 /* ?do_is@?$ctype@_W@std@@MEBA_NF_W@Z */
2475 /* ?do_is@?$ctype@G@std@@MBE_NFG@Z */
2476 /* ?do_is@?$ctype@G@std@@MEBA_NFG@Z */
2477 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_is_ch
, 12)
2478 #define call_ctype_wchar_do_is_ch(this, mask, ch) CALL_VTBL_FUNC(this, 8, \
2479 MSVCP_bool, (const ctype_wchar*, short, wchar_t), (this, mask, ch))
2480 MSVCP_bool __thiscall
ctype_wchar_do_is_ch(const ctype_wchar
*this, short mask
, wchar_t ch
)
2482 TRACE("(%p %x %d)\n", this, mask
, ch
);
2483 return (_Getwctype(ch
, &this->ctype
) & mask
) != 0;
2486 /* ?do_is@?$ctype@_W@std@@MBEPB_WPB_W0PAF@Z */
2487 /* ?do_is@?$ctype@_W@std@@MEBAPEB_WPEB_W0PEAF@Z */
2488 /* ?do_is@?$ctype@G@std@@MBEPBGPBG0PAF@Z */
2489 /* ?do_is@?$ctype@G@std@@MEBAPEBGPEBG0PEAF@Z */
2490 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_is
, 16)
2491 #define call_ctype_wchar_do_is(this, first, last, dest) CALL_VTBL_FUNC(this, 4, \
2492 const wchar_t*, (const ctype_wchar*, const wchar_t*, const wchar_t*, short*), \
2493 (this, first, last, dest))
2494 const wchar_t* __thiscall
ctype_wchar_do_is(const ctype_wchar
*this,
2495 const wchar_t *first
, const wchar_t *last
, short *dest
)
2497 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
2498 return _Getwctypes(first
, last
, dest
, &this->ctype
);
2501 /* ?is@?$ctype@_W@std@@QBE_NF_W@Z */
2502 /* ?is@?$ctype@_W@std@@QEBA_NF_W@Z */
2503 /* ?is@?$ctype@G@std@@QBE_NFG@Z */
2504 /* ?is@?$ctype@G@std@@QEBA_NFG@Z */
2505 DEFINE_THISCALL_WRAPPER(ctype_wchar_is_ch
, 12)
2506 MSVCP_bool __thiscall
ctype_wchar_is_ch(const ctype_wchar
*this, short mask
, wchar_t ch
)
2508 TRACE("(%p %x %d)\n", this, mask
, ch
);
2509 return call_ctype_wchar_do_is_ch(this, mask
, ch
);
2512 /* ?is@?$ctype@_W@std@@QBEPB_WPB_W0PAF@Z */
2513 /* ?is@?$ctype@_W@std@@QEBAPEB_WPEB_W0PEAF@Z */
2514 /* ?is@?$ctype@G@std@@QBEPBGPBG0PAF@Z */
2515 /* ?is@?$ctype@G@std@@QEBAPEBGPEBG0PEAF@Z */
2516 DEFINE_THISCALL_WRAPPER(ctype_wchar_is
, 16)
2517 const wchar_t* __thiscall
ctype_wchar_is(const ctype_wchar
*this,
2518 const wchar_t *first
, const wchar_t *last
, short *dest
)
2520 TRACE("(%p %p %p %p)\n", this, first
, last
, dest
);
2521 return call_ctype_wchar_do_is(this, first
, last
, dest
);
2524 /* ?do_scan_is@?$ctype@_W@std@@MBEPB_WFPB_W0@Z */
2525 /* ?do_scan_is@?$ctype@_W@std@@MEBAPEB_WFPEB_W0@Z */
2526 /* ?do_scan_is@?$ctype@G@std@@MBEPBGFPBG0@Z */
2527 /* ?do_scan_is@?$ctype@G@std@@MEBAPEBGFPEBG0@Z */
2528 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_scan_is
, 16)
2529 #define call_ctype_wchar_do_scan_is(this, mask, first, last) CALL_VTBL_FUNC(this, 12, \
2530 const wchar_t*, (const ctype_wchar*, short, const wchar_t*, const wchar_t*), \
2531 (this, mask, first, last))
2532 const wchar_t* __thiscall
ctype_wchar_do_scan_is(const ctype_wchar
*this,
2533 short mask
, const wchar_t *first
, const wchar_t *last
)
2535 TRACE("(%p %d %p %p)\n", this, mask
, first
, last
);
2536 for(; first
<last
; first
++)
2537 if(!ctype_wchar_is_ch(this, mask
, *first
))
2542 /* ?scan_is@?$ctype@_W@std@@QBEPB_WFPB_W0@Z */
2543 /* ?scan_is@?$ctype@_W@std@@QEBAPEB_WFPEB_W0@Z */
2544 /* ?scan_is@?$ctype@G@std@@QBEPBGFPBG0@Z */
2545 /* ?scan_is@?$ctype@G@std@@QEBAPEBGFPEBG0@Z */
2546 DEFINE_THISCALL_WRAPPER(ctype_wchar_scan_is
, 16)
2547 const wchar_t* __thiscall
ctype_wchar_scan_is(const ctype_wchar
*this,
2548 short mask
, const wchar_t *first
, const wchar_t *last
)
2550 TRACE("(%p %x %p %p)\n", this, mask
, first
, last
);
2551 return call_ctype_wchar_do_scan_is(this, mask
, first
, last
);
2554 /* ?do_scan_not@?$ctype@_W@std@@MBEPB_WFPB_W0@Z */
2555 /* ?do_scan_not@?$ctype@_W@std@@MEBAPEB_WFPEB_W0@Z */
2556 /* ?do_scan_not@?$ctype@G@std@@MBEPBGFPBG0@Z */
2557 /* ?do_scan_not@?$ctype@G@std@@MEBAPEBGFPEBG0@Z */
2558 DEFINE_THISCALL_WRAPPER(ctype_wchar_do_scan_not
, 16)
2559 #define call_ctype_wchar_do_scan_not(this, mask, first, last) CALL_VTBL_FUNC(this, 16, \
2560 const wchar_t*, (const ctype_wchar*, short, const wchar_t*, const wchar_t*), \
2561 (this, mask, first, last))
2562 const wchar_t* __thiscall
ctype_wchar_do_scan_not(const ctype_wchar
*this,
2563 short mask
, const wchar_t *first
, const wchar_t *last
)
2565 TRACE("(%p %x %p %p)\n", this, mask
, first
, last
);
2566 for(; first
<last
; first
++)
2567 if(ctype_wchar_is_ch(this, mask
, *first
))
2572 /* ?scan_not@?$ctype@_W@std@@QBEPB_WFPB_W0@Z */
2573 /* ?scan_not@?$ctype@_W@std@@QEBAPEB_WFPEB_W0@Z */
2574 /* ?scan_not@?$ctype@G@std@@QBEPBGFPBG0@Z */
2575 /* ?scan_not@?$ctype@G@std@@QEBAPEBGFPEBG0@Z */
2576 DEFINE_THISCALL_WRAPPER(ctype_wchar_scan_not
, 16)
2577 const wchar_t* __thiscall
ctype_wchar_scan_not(const ctype_wchar
*this,
2578 short mask
, const wchar_t *first
, const wchar_t *last
)
2580 TRACE("(%p %x %p %p)\n", this, mask
, first
, last
);
2581 return call_ctype_wchar_do_scan_not(this, mask
, first
, last
);
2584 /* ??_7codecvt_base@std@@6B@ */
2585 extern const vtable_ptr MSVCP_codecvt_base_vtable
;
2587 /* ??0codecvt_base@std@@QAE@I@Z */
2588 /* ??0codecvt_base@std@@QEAA@_K@Z */
2589 DEFINE_THISCALL_WRAPPER(codecvt_base_ctor_refs
, 8)
2590 codecvt_base
* __thiscall
codecvt_base_ctor_refs(codecvt_base
*this, MSVCP_size_t refs
)
2592 TRACE("(%p %lu)\n", this, refs
);
2593 locale_facet_ctor_refs(&this->facet
, refs
);
2594 this->facet
.vtable
= &MSVCP_codecvt_base_vtable
;
2598 /* ??_Fcodecvt_base@std@@QAEXXZ */
2599 /* ??_Fcodecvt_base@std@@QEAAXXZ */
2600 DEFINE_THISCALL_WRAPPER(codecvt_base_ctor
, 4)
2601 codecvt_base
* __thiscall
codecvt_base_ctor(codecvt_base
*this)
2603 return codecvt_base_ctor_refs(this, 0);
2606 /* ??1codecvt_base@std@@UAE@XZ */
2607 /* ??1codecvt_base@std@@UEAA@XZ */
2608 DEFINE_THISCALL_WRAPPER(codecvt_base_dtor
, 4)
2609 void __thiscall
codecvt_base_dtor(codecvt_base
*this)
2611 TRACE("(%p)\n", this);
2612 locale_facet_dtor(&this->facet
);
2615 DEFINE_THISCALL_WRAPPER(MSVCP_codecvt_base_vector_dtor
, 8)
2616 codecvt_base
* __thiscall
MSVCP_codecvt_base_vector_dtor(codecvt_base
*this, unsigned int flags
)
2618 TRACE("(%p %x)\n", this, flags
);
2620 /* we have an array, with the number of elements stored before the first object */
2621 int i
, *ptr
= (int *)this-1;
2623 for(i
=*ptr
-1; i
>=0; i
--)
2624 codecvt_base_dtor(this+i
);
2625 MSVCRT_operator_delete(ptr
);
2627 codecvt_base_dtor(this);
2629 MSVCRT_operator_delete(this);
2635 /* ?do_always_noconv@codecvt_base@std@@MBE_NXZ */
2636 /* ?do_always_noconv@codecvt_base@std@@MEBA_NXZ */
2637 #define call_codecvt_base_do_always_noconv(this) CALL_VTBL_FUNC(this, 4, \
2638 MSVCP_bool, (const codecvt_base*), (this))
2639 DEFINE_THISCALL_WRAPPER(codecvt_base_do_always_noconv
, 4)
2640 MSVCP_bool __thiscall
codecvt_base_do_always_noconv(const codecvt_base
*this)
2642 TRACE("(%p)\n", this);
2646 /* ?always_noconv@codecvt_base@std@@QBE_NXZ */
2647 /* ?always_noconv@codecvt_base@std@@QEBA_NXZ */
2648 DEFINE_THISCALL_WRAPPER(codecvt_base_always_noconv
, 4)
2649 MSVCP_bool __thiscall
codecvt_base_always_noconv(const codecvt_base
*this)
2651 TRACE("(%p)\n", this);
2652 return call_codecvt_base_do_always_noconv(this);
2655 /* ?do_max_length@codecvt_base@std@@MBEHXZ */
2656 /* ?do_max_length@codecvt_base@std@@MEBAHXZ */
2657 #define call_codecvt_base_do_max_length(this) CALL_VTBL_FUNC(this, 8, \
2658 int, (const codecvt_base*), (this))
2659 DEFINE_THISCALL_WRAPPER(codecvt_base_do_max_length
, 4)
2660 int __thiscall
codecvt_base_do_max_length(const codecvt_base
*this)
2662 TRACE("(%p)\n", this);
2666 /* ?max_length@codecvt_base@std@@QBEHXZ */
2667 /* ?max_length@codecvt_base@std@@QEBAHXZ */
2668 DEFINE_THISCALL_WRAPPER(codecvt_base_max_length
, 4)
2669 int __thiscall
codecvt_base_max_length(const codecvt_base
*this)
2671 TRACE("(%p)\n", this);
2672 return call_codecvt_base_do_max_length(this);
2675 /* ?do_encoding@codecvt_base@std@@MBEHXZ */
2676 /* ?do_encoding@codecvt_base@std@@MEBAHXZ */
2677 #define call_codecvt_base_do_encoding(this) CALL_VTBL_FUNC(this, 12, \
2678 int, (const codecvt_base*), (this))
2679 DEFINE_THISCALL_WRAPPER(codecvt_base_do_encoding
, 4)
2680 int __thiscall
codecvt_base_do_encoding(const codecvt_base
*this)
2682 TRACE("(%p)\n", this);
2686 /* ?encoding@codecvt_base@std@@QBEHXZ */
2687 /* ?encoding@codecvt_base@std@@QEBAHXZ */
2688 DEFINE_THISCALL_WRAPPER(codecvt_base_encoding
, 4)
2689 int __thiscall
codecvt_base_encoding(const codecvt_base
*this)
2691 TRACE("(%p)\n", this);
2692 return call_codecvt_base_do_encoding(this);
2695 /* ?id@?$codecvt@DDH@std@@2V0locale@2@A */
2696 locale_id codecvt_char_id
= {0};
2698 /* ??_7?$codecvt@DDH@std@@6B@ */
2699 extern const vtable_ptr MSVCP_codecvt_char_vtable
;
2701 /* ?_Init@?$codecvt@DDH@std@@IAEXABV_Locinfo@2@@Z */
2702 /* ?_Init@?$codecvt@DDH@std@@IEAAXAEBV_Locinfo@2@@Z */
2703 DEFINE_THISCALL_WRAPPER(codecvt_char__Init
, 8)
2704 void __thiscall
codecvt_char__Init(codecvt_char
*this, const _Locinfo
*locinfo
)
2706 TRACE("(%p %p)\n", this, locinfo
);
2709 /* ??0?$codecvt@DDH@std@@QAE@ABV_Locinfo@1@I@Z */
2710 /* ??0?$codecvt@DDH@std@@QEAA@AEBV_Locinfo@1@_K@Z */
2711 DEFINE_THISCALL_WRAPPER(codecvt_char_ctor_locinfo
, 12)
2712 codecvt_char
* __thiscall
codecvt_char_ctor_locinfo(codecvt_char
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
2714 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
2715 codecvt_base_ctor_refs(&this->base
, refs
);
2716 this->base
.facet
.vtable
= &MSVCP_codecvt_char_vtable
;
2720 /* ??0?$codecvt@DDH@std@@QAE@I@Z */
2721 /* ??0?$codecvt@DDH@std@@QEAA@_K@Z */
2722 DEFINE_THISCALL_WRAPPER(codecvt_char_ctor_refs
, 8)
2723 codecvt_char
* __thiscall
codecvt_char_ctor_refs(codecvt_char
*this, MSVCP_size_t refs
)
2725 return codecvt_char_ctor_locinfo(this, NULL
, refs
);
2728 /* ??_F?$codecvt@DDH@std@@QAEXXZ */
2729 /* ??_F?$codecvt@DDH@std@@QEAAXXZ */
2730 DEFINE_THISCALL_WRAPPER(codecvt_char_ctor
, 4)
2731 codecvt_char
* __thiscall
codecvt_char_ctor(codecvt_char
*this)
2733 return codecvt_char_ctor_locinfo(this, NULL
, 0);
2736 /* ??1?$codecvt@DDH@std@@MAE@XZ */
2737 /* ??1?$codecvt@DDH@std@@MEAA@XZ */
2738 DEFINE_THISCALL_WRAPPER(codecvt_char_dtor
, 4)
2739 void __thiscall
codecvt_char_dtor(codecvt_char
*this)
2741 TRACE("(%p)\n", this);
2742 codecvt_base_dtor(&this->base
);
2745 DEFINE_THISCALL_WRAPPER(MSVCP_codecvt_char_vector_dtor
, 8)
2746 codecvt_char
* __thiscall
MSVCP_codecvt_char_vector_dtor(codecvt_char
*this, unsigned int flags
)
2748 TRACE("(%p %x)\n", this, flags
);
2750 /* we have an array, with the number of elements stored before the first object */
2751 int i
, *ptr
= (int *)this-1;
2753 for(i
=*ptr
-1; i
>=0; i
--)
2754 codecvt_char_dtor(this+i
);
2755 MSVCRT_operator_delete(ptr
);
2757 codecvt_char_dtor(this);
2759 MSVCRT_operator_delete(this);
2765 /* ?_Getcat@?$codecvt@DDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
2766 /* ?_Getcat@?$codecvt@DDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
2767 MSVCP_size_t __cdecl
codecvt_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
2769 TRACE("(%p %p)\n", facet
, loc
);
2771 if(facet
&& !*facet
) {
2772 *facet
= MSVCRT_operator_new(sizeof(codecvt_char
));
2774 ERR("Out of memory\n");
2775 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
2778 codecvt_char_ctor((codecvt_char
*)*facet
);
2784 codecvt_char
* codecvt_char_use_facet(const locale
*loc
)
2786 static codecvt_char
*obj
= NULL
;
2789 const locale_facet
*fac
;
2791 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
2792 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&codecvt_char_id
));
2794 _Lockit_dtor(&lock
);
2795 return (codecvt_char
*)fac
;
2799 _Lockit_dtor(&lock
);
2803 codecvt_char__Getcat(&fac
, loc
);
2804 obj
= (codecvt_char
*)fac
;
2805 locale_facet__Incref(&obj
->base
.facet
);
2806 locale_facet_register(&obj
->base
.facet
);
2807 _Lockit_dtor(&lock
);
2812 /* ?do_in@?$codecvt@DDH@std@@MBEHAAHPBD1AAPBDPAD3AAPAD@Z */
2813 /* ?do_in@?$codecvt@DDH@std@@MEBAHAEAHPEBD1AEAPEBDPEAD3AEAPEAD@Z */
2814 #define call_codecvt_char_do_in(this, state, from, from_end, from_next, to, to_end, to_next) \
2815 CALL_VTBL_FUNC(this, 16, int, \
2816 (const codecvt_char*, int*, const char*, const char*, const char**, char*, char*, char**), \
2817 (this, state, from, from_end, from_next, to, to_end, to_next))
2818 DEFINE_THISCALL_WRAPPER(codecvt_char_do_in
, 32)
2819 int __thiscall
codecvt_char_do_in(const codecvt_char
*this, int *state
,
2820 const char *from
, const char *from_end
, const char **from_next
,
2821 char *to
, char *to_end
, char **to_next
)
2823 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
, from_end
,
2824 from_next
, to
, to_end
, to_next
);
2827 return CODECVT_noconv
;
2830 /* ?in@?$codecvt@DDH@std@@QBEHAAHPBD1AAPBDPAD3AAPAD@Z */
2831 /* ?in@?$codecvt@DDH@std@@QEBAHAEAHPEBD1AEAPEBDPEAD3AEAPEAD@Z */
2832 DEFINE_THISCALL_WRAPPER(codecvt_char_in
, 32)
2833 int __thiscall
codecvt_char_in(const codecvt_char
*this, int *state
,
2834 const char *from
, const char *from_end
, const char **from_next
,
2835 char *to
, char *to_end
, char **to_next
)
2837 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
, from_end
,
2838 from_next
, to
, to_end
, to_next
);
2839 return call_codecvt_char_do_in(this, state
, from
, from_end
, from_next
,
2840 to
, to_end
, to_next
);
2843 /* ?do_out@?$codecvt@DDH@std@@MBEHAAHPBD1AAPBDPAD3AAPAD@Z */
2844 /* ?do_out@?$codecvt@DDH@std@@MEBAHAEAHPEBD1AEAPEBDPEAD3AEAPEAD@Z */
2845 #define call_codecvt_char_do_out(this, state, from, from_end, from_next, to, to_end, to_next) \
2846 CALL_VTBL_FUNC(this, 20, int, \
2847 (const codecvt_char*, int*, const char*, const char*, const char**, char*, char*, char**), \
2848 (this, state, from, from_end, from_next, to, to_end, to_next))
2849 DEFINE_THISCALL_WRAPPER(codecvt_char_do_out
, 32)
2850 int __thiscall
codecvt_char_do_out(const codecvt_char
*this, int *state
,
2851 const char *from
, const char *from_end
, const char **from_next
,
2852 char *to
, char *to_end
, char **to_next
)
2854 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
,
2855 from_end
, from_next
, to
, to_end
, to_next
);
2858 return CODECVT_noconv
;
2861 /* ?out@?$codecvt@DDH@std@@QBEHAAHPBD1AAPBDPAD3AAPAD@Z */
2862 /* ?out@?$codecvt@DDH@std@@QEBAHAEAHPEBD1AEAPEBDPEAD3AEAPEAD@Z */
2863 DEFINE_THISCALL_WRAPPER(codecvt_char_out
, 32)
2864 int __thiscall
codecvt_char_out(const codecvt_char
*this, int *state
,
2865 const char *from
, const char *from_end
, const char **from_next
,
2866 char *to
, char *to_end
, char **to_next
)
2868 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
, from_end
,
2869 from_next
, to
, to_end
, to_next
);
2870 return call_codecvt_char_do_out(this, state
, from
, from_end
, from_next
,
2871 to
, to_end
, to_next
);
2874 /* ?do_unshift@?$codecvt@DDH@std@@MBEHAAHPAD1AAPAD@Z */
2875 /* ?do_unshift@?$codecvt@DDH@std@@MEBAHAEAHPEAD1AEAPEAD@Z */
2876 #define call_codecvt_char_do_unshift(this, state, to, to_end, to_next) CALL_VTBL_FUNC(this, 24, \
2877 int, (const codecvt_char*, int*, char*, char*, char**), (this, state, to, to_end, to_next))
2878 DEFINE_THISCALL_WRAPPER(codecvt_char_do_unshift
, 20)
2879 int __thiscall
codecvt_char_do_unshift(const codecvt_char
*this,
2880 int *state
, char *to
, char *to_end
, char **to_next
)
2882 TRACE("(%p %p %p %p %p)\n", this, state
, to
, to_end
, to_next
);
2884 return CODECVT_noconv
;
2887 /* ?unshift@?$codecvt@DDH@std@@QBEHAAHPAD1AAPAD@Z */
2888 /* ?unshift@?$codecvt@DDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
2889 DEFINE_THISCALL_WRAPPER(codecvt_char_unshift
, 20)
2890 int __thiscall
codecvt_char_unshift(const codecvt_char
*this,
2891 int *state
, char *to
, char *to_end
, char **to_next
)
2893 TRACE("(%p %p %p %p %p)\n", this, state
, to
, to_end
, to_next
);
2894 return call_codecvt_char_do_unshift(this, state
, to
, to_end
, to_next
);
2897 /* ?do_length@?$codecvt@DDH@std@@MBEHABHPBD1I@Z */
2898 /* ?do_length@?$codecvt@DDH@std@@MEBAHAEBHPEBD1_K@Z */
2899 #define call_codecvt_char_do_length(this, state, from, from_end, max) CALL_VTBL_FUNC(this, 28, \
2900 int, (const codecvt_char*, const int*, const char*, const char*, MSVCP_size_t), \
2901 (this, state, from, from_end, max))
2902 DEFINE_THISCALL_WRAPPER(codecvt_char_do_length
, 20)
2903 int __thiscall
codecvt_char_do_length(const codecvt_char
*this, const int *state
,
2904 const char *from
, const char *from_end
, MSVCP_size_t max
)
2906 TRACE("(%p %p %p %p %lu)\n", this, state
, from
, from_end
, max
);
2907 return (from_end
-from
> max
? max
: from_end
-from
);
2910 /* ?length@?$codecvt@DDH@std@@QBEHABHPBD1I@Z */
2911 /* ?length@?$codecvt@DDH@std@@QEBAHAEBHPEBD1_K@Z */
2912 DEFINE_THISCALL_WRAPPER(codecvt_char_length
, 20)
2913 int __thiscall
codecvt_char_length(const codecvt_char
*this, const int *state
,
2914 const char *from
, const char *from_end
, MSVCP_size_t max
)
2916 TRACE("(%p %p %p %p %lu)\n", this, state
, from
, from_end
, max
);
2917 return call_codecvt_char_do_length(this, state
, from
, from_end
, max
);
2920 /* ?id@?$codecvt@_WDH@std@@2V0locale@2@A */
2921 locale_id codecvt_wchar_id
= {0};
2922 /* ?id@?$codecvt@GDH@std@@2V0locale@2@A */
2923 locale_id codecvt_short_id
= {0};
2925 /* ??_7?$codecvt@_WDH@std@@6B@ */
2926 extern const vtable_ptr MSVCP_codecvt_wchar_vtable
;
2927 /* ??_7?$codecvt@GDH@std@@6B@ */
2928 extern const vtable_ptr MSVCP_codecvt_short_vtable
;
2930 /* ?_Init@?$codecvt@GDH@std@@IAEXABV_Locinfo@2@@Z */
2931 /* ?_Init@?$codecvt@GDH@std@@IEAAXAEBV_Locinfo@2@@Z */
2932 /* ?_Init@?$codecvt@_WDH@std@@IAEXABV_Locinfo@2@@Z */
2933 /* ?_Init@?$codecvt@_WDH@std@@IEAAXAEBV_Locinfo@2@@Z */
2934 DEFINE_THISCALL_WRAPPER(codecvt_wchar__Init
, 8)
2935 void __thiscall
codecvt_wchar__Init(codecvt_wchar
*this, const _Locinfo
*locinfo
)
2937 TRACE("(%p %p)\n", this, locinfo
);
2938 _Locinfo__Getcvt(locinfo
, &this->cvt
);
2941 /* ??0?$codecvt@_WDH@std@@QAE@ABV_Locinfo@1@I@Z */
2942 /* ??0?$codecvt@_WDH@std@@QEAA@AEBV_Locinfo@1@_K@Z */
2943 DEFINE_THISCALL_WRAPPER(codecvt_wchar_ctor_locinfo
, 12)
2944 codecvt_wchar
* __thiscall
codecvt_wchar_ctor_locinfo(codecvt_wchar
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
2946 TRACE("(%p %p %ld)\n", this, locinfo
, refs
);
2948 codecvt_base_ctor_refs(&this->base
, refs
);
2949 this->base
.facet
.vtable
= &MSVCP_codecvt_wchar_vtable
;
2951 codecvt_wchar__Init(this, locinfo
);
2955 /* ??0?$codecvt@GDH@std@@QAE@ABV_Locinfo@1@I@Z */
2956 /* ??0?$codecvt@GDH@std@@QEAA@AEBV_Locinfo@1@_K@Z */
2957 DEFINE_THISCALL_WRAPPER(codecvt_short_ctor_locinfo
, 12)
2958 codecvt_wchar
* __thiscall
codecvt_short_ctor_locinfo(codecvt_wchar
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
2960 TRACE("(%p %p %ld)\n", this, locinfo
, refs
);
2962 codecvt_wchar_ctor_locinfo(this, locinfo
, refs
);
2963 this->base
.facet
.vtable
= &MSVCP_codecvt_short_vtable
;
2967 /* ??0?$codecvt@_WDH@std@@QAE@I@Z */
2968 /* ??0?$codecvt@_WDH@std@@QEAA@_K@Z */
2969 DEFINE_THISCALL_WRAPPER(codecvt_wchar_ctor_refs
, 8)
2970 codecvt_wchar
* __thiscall
codecvt_wchar_ctor_refs(codecvt_wchar
*this, MSVCP_size_t refs
)
2974 TRACE("(%p %ld)\n", this, refs
);
2976 _Locinfo_ctor(&locinfo
);
2977 codecvt_wchar_ctor_locinfo(this, &locinfo
, refs
);
2978 _Locinfo_dtor(&locinfo
);
2982 /* ??0?$codecvt@GDH@std@@QAE@I@Z */
2983 /* ??0?$codecvt@GDH@std@@QEAA@_K@Z */
2984 DEFINE_THISCALL_WRAPPER(codecvt_short_ctor_refs
, 8)
2985 codecvt_wchar
* __thiscall
codecvt_short_ctor_refs(codecvt_wchar
*this, MSVCP_size_t refs
)
2989 TRACE("(%p %ld)\n", this, refs
);
2991 _Locinfo_ctor(&locinfo
);
2992 codecvt_short_ctor_locinfo(this, &locinfo
, refs
);
2993 _Locinfo_dtor(&locinfo
);
2997 /* ??0?$codecvt@GDH@std@@IAE@PBDI@Z */
2998 /* ??0?$codecvt@GDH@std@@IEAA@PEBD_K@Z */
2999 DEFINE_THISCALL_WRAPPER(codecvt_short_ctor_name
, 12)
3000 codecvt_wchar
* __thiscall
codecvt_short_ctor_name(codecvt_wchar
*this, const char *name
, MSVCP_size_t refs
)
3004 TRACE("(%p %s %ld)\n", this, name
, refs
);
3006 _Locinfo_ctor_cstr(&locinfo
, name
);
3007 codecvt_short_ctor_locinfo(this, &locinfo
, refs
);
3008 _Locinfo_dtor(&locinfo
);
3012 /* ??_F?$codecvt@_WDH@std@@QAEXXZ */
3013 /* ??_F?$codecvt@_WDH@std@@QEAAXXZ */
3014 DEFINE_THISCALL_WRAPPER(codecvt_wchar_ctor
, 4)
3015 codecvt_wchar
* __thiscall
codecvt_wchar_ctor(codecvt_wchar
*this)
3017 return codecvt_wchar_ctor_refs(this, 0);
3020 /* ??_F?$codecvt@GDH@std@@QAEXXZ */
3021 /* ??_F?$codecvt@GDH@std@@QEAAXXZ */
3022 DEFINE_THISCALL_WRAPPER(codecvt_short_ctor
, 4)
3023 codecvt_wchar
* __thiscall
codecvt_short_ctor(codecvt_wchar
*this)
3025 return codecvt_short_ctor_refs(this, 0);
3028 /* ??1?$codecvt@GDH@std@@MAE@XZ */
3029 /* ??1?$codecvt@GDH@std@@MEAA@XZ */
3030 /* ??1?$codecvt@_WDH@std@@MAE@XZ */
3031 /* ??1?$codecvt@_WDH@std@@MEAA@XZ */
3032 DEFINE_THISCALL_WRAPPER(codecvt_wchar_dtor
, 4)
3033 void __thiscall
codecvt_wchar_dtor(codecvt_wchar
*this)
3035 TRACE("(%p)\n", this);
3036 codecvt_base_dtor(&this->base
);
3039 DEFINE_THISCALL_WRAPPER(MSVCP_codecvt_wchar_vector_dtor
, 8)
3040 codecvt_wchar
* __thiscall
MSVCP_codecvt_wchar_vector_dtor(codecvt_wchar
*this, unsigned int flags
)
3042 TRACE("(%p %x)\n", this, flags
);
3044 /* we have an array, with the number of elements stored before the first object */
3045 int i
, *ptr
= (int *)this-1;
3047 for(i
=*ptr
-1; i
>=0; i
--)
3048 codecvt_wchar_dtor(this+i
);
3049 MSVCRT_operator_delete(ptr
);
3051 codecvt_wchar_dtor(this);
3053 MSVCRT_operator_delete(this);
3059 DEFINE_THISCALL_WRAPPER(MSVCP_codecvt_short_vector_dtor
, 8)
3060 codecvt_wchar
* __thiscall
MSVCP_codecvt_short_vector_dtor(codecvt_wchar
*this, unsigned int flags
)
3062 return MSVCP_codecvt_wchar_vector_dtor(this, flags
);
3065 /* ?_Getcat@?$codecvt@_WDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
3066 /* ?_Getcat@?$codecvt@_WDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
3067 unsigned int __cdecl
codecvt_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
3069 TRACE("(%p %p)\n", facet
, loc
);
3071 if(facet
&& !*facet
) {
3074 *facet
= MSVCRT_operator_new(sizeof(codecvt_wchar
));
3076 ERR("Out of memory\n");
3077 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3081 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
3082 codecvt_wchar_ctor_locinfo((codecvt_wchar
*)*facet
, &locinfo
, 0);
3083 _Locinfo_dtor(&locinfo
);
3089 codecvt_wchar
* codecvt_wchar_use_facet(const locale
*loc
)
3091 static codecvt_wchar
*obj
= NULL
;
3094 const locale_facet
*fac
;
3096 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
3097 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&codecvt_wchar_id
));
3099 _Lockit_dtor(&lock
);
3100 return (codecvt_wchar
*)fac
;
3104 _Lockit_dtor(&lock
);
3108 codecvt_wchar__Getcat(&fac
, loc
);
3109 obj
= (codecvt_wchar
*)fac
;
3110 locale_facet__Incref(&obj
->base
.facet
);
3111 locale_facet_register(&obj
->base
.facet
);
3112 _Lockit_dtor(&lock
);
3117 /* ?_Getcat@?$codecvt@GDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
3118 /* ?_Getcat@?$codecvt@GDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
3119 unsigned int __cdecl
codecvt_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
3121 TRACE("(%p %p)\n", facet
, loc
);
3123 if(facet
&& !*facet
) {
3126 *facet
= MSVCRT_operator_new(sizeof(codecvt_wchar
));
3128 ERR("Out of memory\n");
3129 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3133 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
3134 codecvt_short_ctor((codecvt_wchar
*)*facet
);
3135 _Locinfo_dtor(&locinfo
);
3141 codecvt_wchar
* codecvt_short_use_facet(const locale
*loc
)
3143 static codecvt_wchar
*obj
= NULL
;
3146 const locale_facet
*fac
;
3148 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
3149 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&codecvt_short_id
));
3151 _Lockit_dtor(&lock
);
3152 return (codecvt_wchar
*)fac
;
3156 _Lockit_dtor(&lock
);
3160 codecvt_short__Getcat(&fac
, loc
);
3161 obj
= (codecvt_wchar
*)fac
;
3162 locale_facet__Incref(&obj
->base
.facet
);
3163 locale_facet_register(&obj
->base
.facet
);
3164 _Lockit_dtor(&lock
);
3169 /* ?_Id_func@?$codecvt@_WDH@std@@SAAAVid@locale@2@XZ */
3170 /* ?_Id_func@?$codecvt@_WDH@std@@SAAEAVid@locale@2@XZ */
3171 locale_id
* __cdecl
codecvt_wchar__Id_func(void)
3174 return &codecvt_wchar_id
;
3177 /* ?_Id_func@?$codecvt@GDH@std@@SAAAVid@locale@2@XZ */
3178 /* ?_Id_func@?$codecvt@GDH@std@@SAAEAVid@locale@2@XZ */
3179 locale_id
* __cdecl
codecvt_short__Id_func(void)
3182 return &codecvt_short_id
;
3185 /* ?do_always_noconv@?$codecvt@GDH@std@@MBE_NXZ */
3186 /* ?do_always_noconv@?$codecvt@GDH@std@@MEBA_NXZ */
3187 /* ?do_always_noconv@?$codecvt@_WDH@std@@MBE_NXZ */
3188 /* ?do_always_noconv@?$codecvt@_WDH@std@@MEBA_NXZ */
3189 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_always_noconv
, 4)
3190 MSVCP_bool __thiscall
codecvt_wchar_do_always_noconv(const codecvt_wchar
*this)
3192 TRACE("(%p)\n", this);
3196 /* ?do_max_length@?$codecvt@GDH@std@@MBEHXZ */
3197 /* ?do_max_length@?$codecvt@GDH@std@@MEBAHXZ */
3198 /* ?do_max_length@?$codecvt@_WDH@std@@MBEHXZ */
3199 /* ?do_max_length@?$codecvt@_WDH@std@@MEBAHXZ */
3200 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_max_length
, 4)
3201 int __thiscall
codecvt_wchar_do_max_length(const codecvt_wchar
*this)
3203 TRACE("(%p)\n", this);
3207 /* ?do_in@?$codecvt@GDH@std@@MBEHAAHPBD1AAPBDPAG3AAPAG@Z */
3208 /* ?do_in@?$codecvt@GDH@std@@MEBAHAEAHPEBD1AEAPEBDPEAG3AEAPEAG@Z */
3209 /* ?do_in@?$codecvt@_WDH@std@@MBEHAAHPBD1AAPBDPA_W3AAPA_W@Z */
3210 /* ?do_in@?$codecvt@_WDH@std@@MEBAHAEAHPEBD1AEAPEBDPEA_W3AEAPEA_W@Z */
3211 #define call_codecvt_wchar_do_in(this, state, from, from_end, from_next, to, to_end, to_next) \
3212 CALL_VTBL_FUNC(this, 16, int, \
3213 (const codecvt_wchar*, int*, const char*, const char*, const char**, wchar_t*, wchar_t*, wchar_t**), \
3214 (this, state, from, from_end, from_next, to, to_end, to_next))
3215 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_in
, 32)
3216 int __thiscall
codecvt_wchar_do_in(const codecvt_wchar
*this, int *state
,
3217 const char *from
, const char *from_end
, const char **from_next
,
3218 wchar_t *to
, wchar_t *to_end
, wchar_t **to_next
)
3220 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
,
3221 from_end
, from_next
, to
, to_end
, to_next
);
3226 while(*from_next
!=from_end
&& *to_next
!=to_end
) {
3227 switch(_Mbrtowc(*to_next
, *from_next
, from_end
-*from_next
, state
, &this->cvt
)) {
3229 *from_next
= from_end
;
3230 return CODECVT_partial
;
3232 return CODECVT_error
;
3246 /* ?in@?$codecvt@GDH@std@@QBEHAAHPBD1AAPBDPAG3AAPAG@Z */
3247 /* ?in@?$codecvt@GDH@std@@QEBAHAEAHPEBD1AEAPEBDPEAG3AEAPEAG@Z */
3248 /* ?in@?$codecvt@_WDH@std@@QBEHAAHPBD1AAPBDPA_W3AAPA_W@Z */
3249 /* ?in@?$codecvt@_WDH@std@@QEBAHAEAHPEBD1AEAPEBDPEA_W3AEAPEA_W@Z */
3250 DEFINE_THISCALL_WRAPPER(codecvt_wchar_in
, 32)
3251 int __thiscall
codecvt_wchar_in(const codecvt_wchar
*this, int *state
,
3252 const char *from
, const char *from_end
, const char **from_next
,
3253 wchar_t *to
, wchar_t *to_end
, wchar_t **to_next
)
3255 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
,
3256 from_end
, from_next
, to
, to_end
, to_next
);
3257 return call_codecvt_wchar_do_in(this, state
, from
,
3258 from_end
, from_next
, to
, to_end
, to_next
);
3261 /* ?do_out@?$codecvt@GDH@std@@MBEHAAHPBG1AAPBGPAD3AAPAD@Z */
3262 /* ?do_out@?$codecvt@GDH@std@@MEBAHAEAHPEBG1AEAPEBGPEAD3AEAPEAD@Z */
3263 /* ?do_out@?$codecvt@_WDH@std@@MBEHAAHPB_W1AAPB_WPAD3AAPAD@Z */
3264 /* ?do_out@?$codecvt@_WDH@std@@MEBAHAEAHPEB_W1AEAPEB_WPEAD3AEAPEAD@Z */
3265 #define call_codecvt_wchar_do_out(this, state, from, from_end, from_next, to, to_end, to_next) \
3266 CALL_VTBL_FUNC(this, 20, int, \
3267 (const codecvt_wchar*, int*, const wchar_t*, const wchar_t*, const wchar_t**, char*, char*, char**), \
3268 (this, state, from, from_end, from_next, to, to_end, to_next))
3269 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_out
, 32)
3270 int __thiscall
codecvt_wchar_do_out(const codecvt_wchar
*this, int *state
,
3271 const wchar_t *from
, const wchar_t *from_end
, const wchar_t **from_next
,
3272 char *to
, char *to_end
, char **to_next
)
3274 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
,
3275 from_end
, from_next
, to
, to_end
, to_next
);
3280 while(*from_next
!=from_end
&& *to_next
!=to_end
) {
3281 int old_state
= *state
, size
;
3282 char buf
[MB_LEN_MAX
];
3284 switch((size
= _Wcrtomb(buf
, **from_next
, state
, &this->cvt
))) {
3286 return CODECVT_error
;
3288 if(size
> from_end
-*from_next
) {
3290 return CODECVT_partial
;
3301 /* ?out@?$codecvt@GDH@std@@QBEHAAHPBG1AAPBGPAD3AAPAD@Z */
3302 /* ?out@?$codecvt@GDH@std@@QEBAHAEAHPEBG1AEAPEBGPEAD3AEAPEAD@Z */
3303 /* ?out@?$codecvt@_WDH@std@@QBEHAAHPB_W1AAPB_WPAD3AAPAD@Z */
3304 /* ?out@?$codecvt@_WDH@std@@QEBAHAEAHPEB_W1AEAPEB_WPEAD3AEAPEAD@Z */
3305 DEFINE_THISCALL_WRAPPER(codecvt_wchar_out
, 32)
3306 int __thiscall
codecvt_wchar_out(const codecvt_wchar
*this, int *state
,
3307 const wchar_t *from
, const wchar_t *from_end
, const wchar_t **from_next
,
3308 char *to
, char *to_end
, char **to_next
)
3310 TRACE("(%p %p %p %p %p %p %p %p)\n", this, state
, from
,
3311 from_end
, from_next
, to
, to_end
, to_next
);
3312 return call_codecvt_wchar_do_out(this, state
, from
,
3313 from_end
, from_next
, to
, to_end
, to_next
);
3316 /* ?do_unshift@?$codecvt@GDH@std@@MBEHAAHPAD1AAPAD@Z */
3317 /* ?do_unshift@?$codecvt@GDH@std@@MEBAHAEAHPEAD1AEAPEAD@Z */
3318 /* ?do_unshift@?$codecvt@_WDH@std@@MBEHAAHPAD1AAPAD@Z */
3319 /* ?do_unshift@?$codecvt@_WDH@std@@MEBAHAEAHPEAD1AEAPEAD@Z */
3320 #define call_codecvt_wchar_do_unshift(this, state, to, to_end, to_next) CALL_VTBL_FUNC(this, 24, \
3321 int, (const codecvt_wchar*, int*, char*, char*, char**), (this, state, to, to_end, to_next))
3322 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_unshift
, 20)
3323 int __thiscall
codecvt_wchar_do_unshift(const codecvt_wchar
*this,
3324 int *state
, char *to
, char *to_end
, char **to_next
)
3326 TRACE("(%p %p %p %p %p)\n", this, state
, to
, to_end
, to_next
);
3328 WARN("unexpected state: %x\n", *state
);
3334 /* ?unshift@?$codecvt@GDH@std@@QBEHAAHPAD1AAPAD@Z */
3335 /* ?unshift@?$codecvt@GDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
3336 /* ?unshift@?$codecvt@_WDH@std@@QBEHAAHPAD1AAPAD@Z */
3337 /* ?unshift@?$codecvt@_WDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
3338 DEFINE_THISCALL_WRAPPER(codecvt_wchar_unshift
, 20)
3339 int __thiscall
codecvt_wchar_unshift(const codecvt_wchar
*this,
3340 int *state
, char *to
, char *to_end
, char **to_next
)
3342 TRACE("(%p %p %p %p %p)\n", this, state
, to
, to_end
, to_next
);
3343 return call_codecvt_wchar_do_unshift(this, state
, to
, to_end
, to_next
);
3346 /* ?do_length@?$codecvt@GDH@std@@MBEHABHPBD1I@Z */
3347 /* ?do_length@?$codecvt@GDH@std@@MEBAHAEBHPEBD1_K@Z */
3348 /* ?do_length@?$codecvt@_WDH@std@@MBEHABHPBD1I@Z */
3349 /* ?do_length@?$codecvt@_WDH@std@@MEBAHAEBHPEBD1_K@Z */
3350 #define call_codecvt_wchar_do_length(this, state, from, from_end, max) CALL_VTBL_FUNC(this, 28, \
3351 int, (const codecvt_wchar*, const int*, const char*, const char*, MSVCP_size_t), \
3352 (this, state, from, from_end, max))
3353 DEFINE_THISCALL_WRAPPER(codecvt_wchar_do_length
, 20)
3354 int __thiscall
codecvt_wchar_do_length(const codecvt_wchar
*this, const int *state
,
3355 const char *from
, const char *from_end
, MSVCP_size_t max
)
3357 int tmp_state
= *state
, ret
=0;
3359 TRACE("(%p %p %p %p %ld)\n", this, state
, from
, from_end
, max
);
3361 while(ret
<max
&& from
!=from_end
) {
3362 switch(_Mbrtowc(NULL
, from
, from_end
-from
, &tmp_state
, &this->cvt
)) {
3379 /* ?length@?$codecvt@GDH@std@@QBEHABHPBD1I@Z */
3380 /* ?length@?$codecvt@GDH@std@@QEBAHAEBHPEBD1_K@Z */
3381 /* ?length@?$codecvt@_WDH@std@@QBEHABHPBD1I@Z */
3382 /* ?length@?$codecvt@_WDH@std@@QEBAHAEBHPEBD1_K@Z */
3383 DEFINE_THISCALL_WRAPPER(codecvt_wchar_length
, 20)
3384 int __thiscall
codecvt_wchar_length(const codecvt_wchar
*this, const int *state
,
3385 const char *from
, const char *from_end
, MSVCP_size_t max
)
3387 TRACE("(%p %p %p %p %ld)\n", this, state
, from
, from_end
, max
);
3388 return call_codecvt_wchar_do_length(this, state
, from
, from_end
, max
);
3391 /* ?id@?$numpunct@D@std@@2V0locale@2@A */
3392 locale_id numpunct_char_id
= {0};
3394 /* ??_7?$numpunct@D@std@@6B@ */
3395 extern const vtable_ptr MSVCP_numpunct_char_vtable
;
3397 /* ?_Init@?$numpunct@D@std@@IAEXABV_Locinfo@2@_N@Z */
3398 /* ?_Init@?$numpunct@D@std@@IEAAXAEBV_Locinfo@2@_N@Z */
3399 DEFINE_THISCALL_WRAPPER(numpunct_char__Init
, 12)
3400 void __thiscall
numpunct_char__Init(numpunct_char
*this, const _Locinfo
*locinfo
, MSVCP_bool isdef
)
3404 TRACE("(%p %p %d)\n", this, locinfo
, isdef
);
3406 len
= strlen(_Locinfo__Getfalse(locinfo
))+1;
3407 this->false_name
= MSVCRT_operator_new(len
);
3408 if(this->false_name
)
3409 memcpy((char*)this->false_name
, _Locinfo__Getfalse(locinfo
), len
);
3411 len
= strlen(_Locinfo__Gettrue(locinfo
))+1;
3412 this->true_name
= MSVCRT_operator_new(len
);
3414 memcpy((char*)this->true_name
, _Locinfo__Gettrue(locinfo
), len
);
3417 this->grouping
= MSVCRT_operator_new(1);
3419 *(char*)this->grouping
= 0;
3424 const struct lconv
*lc
= _Locinfo__Getlconv(locinfo
);
3426 len
= strlen(lc
->grouping
)+1;
3427 this->grouping
= MSVCRT_operator_new(len
);
3429 memcpy((char*)this->grouping
, lc
->grouping
, len
);
3431 this->dp
= lc
->decimal_point
[0];
3432 this->sep
= lc
->thousands_sep
[0];
3435 if(!this->false_name
|| !this->true_name
|| !this->grouping
) {
3436 MSVCRT_operator_delete((char*)this->grouping
);
3437 MSVCRT_operator_delete((char*)this->false_name
);
3438 MSVCRT_operator_delete((char*)this->true_name
);
3440 ERR("Out of memory\n");
3441 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3445 /* ?_Tidy@?$numpunct@D@std@@AAEXXZ */
3446 /* ?_Tidy@?$numpunct@D@std@@AEAAXXZ */
3447 DEFINE_THISCALL_WRAPPER(numpunct_char__Tidy
, 4)
3448 void __thiscall
numpunct_char__Tidy(numpunct_char
*this)
3450 TRACE("(%p)\n", this);
3452 MSVCRT_operator_delete((char*)this->grouping
);
3453 MSVCRT_operator_delete((char*)this->false_name
);
3454 MSVCRT_operator_delete((char*)this->true_name
);
3457 /* ??0?$numpunct@D@std@@QAE@ABV_Locinfo@1@I_N@Z */
3458 /* ??0?$numpunct@D@std@@QEAA@AEBV_Locinfo@1@_K_N@Z */
3459 DEFINE_THISCALL_WRAPPER(numpunct_char_ctor_locinfo
, 16)
3460 numpunct_char
* __thiscall
numpunct_char_ctor_locinfo(numpunct_char
*this,
3461 const _Locinfo
*locinfo
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3463 TRACE("(%p %p %lu %d)\n", this, locinfo
, refs
, usedef
);
3464 locale_facet_ctor_refs(&this->facet
, refs
);
3465 this->facet
.vtable
= &MSVCP_numpunct_char_vtable
;
3466 numpunct_char__Init(this, locinfo
, usedef
);
3470 /* ??0?$numpunct@D@std@@IAE@PBDI_N@Z */
3471 /* ??0?$numpunct@D@std@@IEAA@PEBD_K_N@Z */
3472 DEFINE_THISCALL_WRAPPER(numpunct_char_ctor_name
, 16)
3473 numpunct_char
* __thiscall
numpunct_char_ctor_name(numpunct_char
*this,
3474 const char *name
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3478 TRACE("(%p %s %lu %d)\n", this, debugstr_a(name
), refs
, usedef
);
3479 locale_facet_ctor_refs(&this->facet
, refs
);
3480 this->facet
.vtable
= &MSVCP_numpunct_char_vtable
;
3482 _Locinfo_ctor_cstr(&locinfo
, name
);
3483 numpunct_char__Init(this, &locinfo
, usedef
);
3484 _Locinfo_dtor(&locinfo
);
3488 /* ??0?$numpunct@D@std@@QAE@I@Z */
3489 /* ??0?$numpunct@D@std@@QEAA@_K@Z */
3490 DEFINE_THISCALL_WRAPPER(numpunct_char_ctor_refs
, 8)
3491 numpunct_char
* __thiscall
numpunct_char_ctor_refs(numpunct_char
*this, MSVCP_size_t refs
)
3493 TRACE("(%p %lu)\n", this, refs
);
3494 return numpunct_char_ctor_name(this, "C", refs
, FALSE
);
3497 /* ??_F?$numpunct@D@std@@QAEXXZ */
3498 /* ??_F?$numpunct@D@std@@QEAAXXZ */
3499 DEFINE_THISCALL_WRAPPER(numpunct_char_ctor
, 4)
3500 numpunct_char
* __thiscall
numpunct_char_ctor(numpunct_char
*this)
3502 return numpunct_char_ctor_refs(this, 0);
3505 /* ??1?$numpunct@D@std@@MAE@XZ */
3506 /* ??1?$numpunct@D@std@@MEAA@XZ */
3507 DEFINE_THISCALL_WRAPPER(numpunct_char_dtor
, 4)
3508 void __thiscall
numpunct_char_dtor(numpunct_char
*this)
3510 TRACE("(%p)\n", this);
3511 numpunct_char__Tidy(this);
3514 DEFINE_THISCALL_WRAPPER(MSVCP_numpunct_char_vector_dtor
, 8)
3515 numpunct_char
* __thiscall
MSVCP_numpunct_char_vector_dtor(numpunct_char
*this, unsigned int flags
)
3517 TRACE("(%p %x)\n", this, flags
);
3519 /* we have an array, with the number of elements stored before the first object */
3520 int i
, *ptr
= (int *)this-1;
3522 for(i
=*ptr
-1; i
>=0; i
--)
3523 numpunct_char_dtor(this+i
);
3524 MSVCRT_operator_delete(ptr
);
3526 numpunct_char_dtor(this);
3528 MSVCRT_operator_delete(this);
3534 /* ?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
3535 /* ?_Getcat@?$numpunct@D@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
3536 MSVCP_size_t __cdecl
numpunct_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
3538 TRACE("(%p %p)\n", facet
, loc
);
3540 if(facet
&& !*facet
) {
3541 *facet
= MSVCRT_operator_new(sizeof(numpunct_char
));
3543 ERR("Out of memory\n");
3544 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3547 numpunct_char_ctor_name((numpunct_char
*)*facet
,
3548 MSVCP_basic_string_char_c_str(&loc
->ptr
->name
), 0, TRUE
);
3554 static numpunct_char
* numpunct_char_use_facet(const locale
*loc
)
3556 static numpunct_char
*obj
= NULL
;
3559 const locale_facet
*fac
;
3561 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
3562 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&numpunct_char_id
));
3564 _Lockit_dtor(&lock
);
3565 return (numpunct_char
*)fac
;
3569 _Lockit_dtor(&lock
);
3573 numpunct_char__Getcat(&fac
, loc
);
3574 obj
= (numpunct_char
*)fac
;
3575 locale_facet__Incref(&obj
->facet
);
3576 locale_facet_register(&obj
->facet
);
3577 _Lockit_dtor(&lock
);
3582 /* ?do_decimal_point@?$numpunct@D@std@@MBEDXZ */
3583 /* ?do_decimal_point@?$numpunct@D@std@@MEBADXZ */
3584 DEFINE_THISCALL_WRAPPER(numpunct_char_do_decimal_point
, 4)
3585 #define call_numpunct_char_do_decimal_point(this) CALL_VTBL_FUNC(this, 4, \
3586 char, (const numpunct_char *this), (this))
3587 char __thiscall
numpunct_char_do_decimal_point(const numpunct_char
*this)
3589 TRACE("(%p)\n", this);
3593 /* ?decimal_point@?$numpunct@D@std@@QBEDXZ */
3594 /* ?decimal_point@?$numpunct@D@std@@QEBADXZ */
3595 DEFINE_THISCALL_WRAPPER(numpunct_char_decimal_point
, 4)
3596 char __thiscall
numpunct_char_decimal_point(const numpunct_char
*this)
3598 TRACE("(%p)\n", this);
3599 return call_numpunct_char_do_decimal_point(this);
3602 /* ?do_thousands_sep@?$numpunct@D@std@@MBEDXZ */
3603 /* ?do_thousands_sep@?$numpunct@D@std@@MEBADXZ */
3604 DEFINE_THISCALL_WRAPPER(numpunct_char_do_thousands_sep
, 4)
3605 #define call_numpunct_char_do_thousands_sep(this) CALL_VTBL_FUNC(this, 8, \
3606 char, (const numpunct_char*), (this))
3607 char __thiscall
numpunct_char_do_thousands_sep(const numpunct_char
*this)
3609 TRACE("(%p)\n", this);
3613 /* ?thousands_sep@?$numpunct@D@std@@QBEDXZ */
3614 /* ?thousands_sep@?$numpunct@D@std@@QEBADXZ */
3615 DEFINE_THISCALL_WRAPPER(numpunct_char_thousands_sep
, 4)
3616 char __thiscall
numpunct_char_thousands_sep(const numpunct_char
*this)
3618 TRACE("(%p)\n", this);
3619 return call_numpunct_char_do_thousands_sep(this);
3622 /* ?do_grouping@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3623 /* ?do_grouping@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3624 DEFINE_THISCALL_WRAPPER(numpunct_char_do_grouping
, 8)
3625 #define call_numpunct_char_do_grouping(this, ret) CALL_VTBL_FUNC(this, 12, \
3626 basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
3627 basic_string_char
* __thiscall
numpunct_char_do_grouping(
3628 const numpunct_char
*this, basic_string_char
*ret
)
3630 TRACE("(%p)\n", this);
3631 return MSVCP_basic_string_char_ctor_cstr(ret
, this->grouping
);
3634 /* ?grouping@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3635 /* ?grouping@?$numpunct@D@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3636 DEFINE_THISCALL_WRAPPER(numpunct_char_grouping
, 8)
3637 basic_string_char
* __thiscall
numpunct_char_grouping(const numpunct_char
*this, basic_string_char
*ret
)
3639 TRACE("(%p)\n", this);
3640 return call_numpunct_char_do_grouping(this, ret
);
3643 /* ?do_falsename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3644 /* ?do_falsename@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3645 DEFINE_THISCALL_WRAPPER(numpunct_char_do_falsename
, 8)
3646 #define call_numpunct_char_do_falsename(this, ret) CALL_VTBL_FUNC(this, 16, \
3647 basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
3648 basic_string_char
* __thiscall
numpunct_char_do_falsename(
3649 const numpunct_char
*this, basic_string_char
*ret
)
3651 TRACE("(%p)\n", this);
3652 return MSVCP_basic_string_char_ctor_cstr(ret
, this->false_name
);
3655 /* ?falsename@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3656 /* ?falsename@?$numpunct@D@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3657 DEFINE_THISCALL_WRAPPER(numpunct_char_falsename
, 8)
3658 basic_string_char
* __thiscall
numpunct_char_falsename(const numpunct_char
*this, basic_string_char
*ret
)
3660 TRACE("(%p)\n", this);
3661 return call_numpunct_char_do_falsename(this, ret
);
3664 /* ?do_truename@?$numpunct@D@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3665 /* ?do_truename@?$numpunct@D@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3666 DEFINE_THISCALL_WRAPPER(numpunct_char_do_truename
, 8)
3667 #define call_numpunct_char_do_truename(this, ret) CALL_VTBL_FUNC(this, 20, \
3668 basic_string_char*, (const numpunct_char*, basic_string_char*), (this, ret))
3669 basic_string_char
* __thiscall
numpunct_char_do_truename(
3670 const numpunct_char
*this, basic_string_char
*ret
)
3672 TRACE("(%p)\n", this);
3673 return MSVCP_basic_string_char_ctor_cstr(ret
, this->true_name
);
3676 /* ?truename@?$numpunct@D@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3677 /* ?truename@?$numpunct@D@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
3678 DEFINE_THISCALL_WRAPPER(numpunct_char_truename
, 8)
3679 basic_string_char
* __thiscall
numpunct_char_truename(const numpunct_char
*this, basic_string_char
*ret
)
3681 TRACE("(%p)\n", this);
3682 return call_numpunct_char_do_truename(this, ret
);
3685 /* ?id@?$numpunct@_W@std@@2V0locale@2@A */
3686 locale_id numpunct_wchar_id
= {0};
3687 /* ?id@?$numpunct@G@std@@2V0locale@2@A */
3688 locale_id numpunct_short_id
= {0};
3690 /* ??_7?$numpunct@_W@std@@6B@ */
3691 extern const vtable_ptr MSVCP_numpunct_wchar_vtable
;
3692 /* ??_7?$numpunct@G@std@@6B@ */
3693 extern const vtable_ptr MSVCP_numpunct_short_vtable
;
3695 /* ?_Init@?$numpunct@_W@std@@IAEXABV_Locinfo@2@_N@Z */
3696 /* ?_Init@?$numpunct@_W@std@@IEAAXAEBV_Locinfo@2@_N@Z */
3697 /* ?_Init@?$numpunct@G@std@@IAEXABV_Locinfo@2@_N@Z */
3698 /* ?_Init@?$numpunct@G@std@@IEAAXAEBV_Locinfo@2@_N@Z */
3699 DEFINE_THISCALL_WRAPPER(numpunct_wchar__Init
, 12)
3700 void __thiscall
numpunct_wchar__Init(numpunct_wchar
*this,
3701 const _Locinfo
*locinfo
, MSVCP_bool isdef
)
3703 const char *to_convert
;
3707 TRACE("(%p %p %d)\n", this, locinfo
, isdef
);
3709 _Locinfo__Getcvt(locinfo
, &cvt
);
3711 to_convert
= _Locinfo__Getfalse(locinfo
);
3712 len
= MultiByteToWideChar(cvt
.page
, 0, to_convert
, -1, NULL
, 0);
3713 this->false_name
= MSVCRT_operator_new(len
*sizeof(WCHAR
));
3714 if(this->false_name
)
3715 MultiByteToWideChar(cvt
.page
, 0, to_convert
, -1,
3716 (wchar_t*)this->false_name
, len
);
3718 to_convert
= _Locinfo__Gettrue(locinfo
);
3719 len
= MultiByteToWideChar(cvt
.page
, 0, to_convert
, -1, NULL
, 0);
3720 this->true_name
= MSVCRT_operator_new(len
*sizeof(WCHAR
));
3722 MultiByteToWideChar(cvt
.page
, 0, to_convert
, -1,
3723 (wchar_t*)this->true_name
, len
);
3726 this->grouping
= MSVCRT_operator_new(1);
3728 *(char*)this->grouping
= 0;
3733 const struct lconv
*lc
= _Locinfo__Getlconv(locinfo
);
3735 len
= strlen(lc
->grouping
)+1;
3736 this->grouping
= MSVCRT_operator_new(len
);
3738 memcpy((char*)this->grouping
, lc
->grouping
, len
);
3740 this->dp
= lc
->decimal_point
[0];
3741 this->sep
= lc
->thousands_sep
[0];
3744 if(!this->false_name
|| !this->true_name
|| !this->grouping
) {
3745 MSVCRT_operator_delete((char*)this->grouping
);
3746 MSVCRT_operator_delete((wchar_t*)this->false_name
);
3747 MSVCRT_operator_delete((wchar_t*)this->true_name
);
3749 ERR("Out of memory\n");
3750 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3754 /* ?_Tidy@?$numpunct@_W@std@@AAEXXZ */
3755 /* ?_Tidy@?$numpunct@_W@std@@AEAAXXZ */
3756 /* ?_Tidy@?$numpunct@G@std@@AAEXXZ */
3757 /* ?_Tidy@?$numpunct@G@std@@AEAAXXZ */
3758 DEFINE_THISCALL_WRAPPER(numpunct_wchar__Tidy
, 4)
3759 void __thiscall
numpunct_wchar__Tidy(numpunct_wchar
*this)
3761 TRACE("(%p)\n", this);
3763 MSVCRT_operator_delete((char*)this->grouping
);
3764 MSVCRT_operator_delete((wchar_t*)this->false_name
);
3765 MSVCRT_operator_delete((wchar_t*)this->true_name
);
3768 /* ??0?$numpunct@_W@std@@QAE@ABV_Locinfo@1@I_N@Z */
3769 /* ??0?$numpunct@_W@std@@QEAA@AEBV_Locinfo@1@_K_N@Z */
3770 DEFINE_THISCALL_WRAPPER(numpunct_wchar_ctor_locinfo
, 16)
3771 numpunct_wchar
* __thiscall
numpunct_wchar_ctor_locinfo(numpunct_wchar
*this,
3772 const _Locinfo
*locinfo
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3774 TRACE("(%p %p %lu %d)\n", this, locinfo
, refs
, usedef
);
3775 locale_facet_ctor_refs(&this->facet
, refs
);
3776 this->facet
.vtable
= &MSVCP_numpunct_wchar_vtable
;
3777 numpunct_wchar__Init(this, locinfo
, usedef
);
3781 /* ??0?$numpunct@G@std@@QAE@ABV_Locinfo@1@I_N@Z */
3782 /* ??0?$numpunct@G@std@@QEAA@AEBV_Locinfo@1@_K_N@Z */
3783 DEFINE_THISCALL_WRAPPER(numpunct_short_ctor_locinfo
, 16)
3784 numpunct_wchar
* __thiscall
numpunct_short_ctor_locinfo(numpunct_wchar
*this,
3785 const _Locinfo
*locinfo
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3787 numpunct_wchar_ctor_locinfo(this, locinfo
, refs
, usedef
);
3788 this->facet
.vtable
= &MSVCP_numpunct_short_vtable
;
3792 /* ??0?$numpunct@_W@std@@IAE@PBDI_N@Z */
3793 /* ??0?$numpunct@_W@std@@IEAA@PEBD_K_N@Z */
3794 DEFINE_THISCALL_WRAPPER(numpunct_wchar_ctor_name
, 16)
3795 numpunct_wchar
* __thiscall
numpunct_wchar_ctor_name(numpunct_wchar
*this,
3796 const char *name
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3800 TRACE("(%p %s %lu %d)\n", this, debugstr_a(name
), refs
, usedef
);
3801 locale_facet_ctor_refs(&this->facet
, refs
);
3802 this->facet
.vtable
= &MSVCP_numpunct_wchar_vtable
;
3804 _Locinfo_ctor_cstr(&locinfo
, name
);
3805 numpunct_wchar__Init(this, &locinfo
, usedef
);
3806 _Locinfo_dtor(&locinfo
);
3810 /* ??0?$numpunct@G@std@@IAE@PBDI_N@Z */
3811 /* ??0?$numpunct@G@std@@IEAA@PEBD_K_N@Z */
3812 DEFINE_THISCALL_WRAPPER(numpunct_short_ctor_name
, 16)
3813 numpunct_wchar
* __thiscall
numpunct_short_ctor_name(numpunct_wchar
*this,
3814 const char *name
, MSVCP_size_t refs
, MSVCP_bool usedef
)
3816 numpunct_wchar_ctor_name(this, name
, refs
, usedef
);
3817 this->facet
.vtable
= &MSVCP_numpunct_short_vtable
;
3821 /* ??0?$numpunct@_W@std@@QAE@I@Z */
3822 /* ??0?$numpunct@_W@std@@QEAA@_K@Z */
3823 DEFINE_THISCALL_WRAPPER(numpunct_wchar_ctor_refs
, 8)
3824 numpunct_wchar
* __thiscall
numpunct_wchar_ctor_refs(numpunct_wchar
*this, MSVCP_size_t refs
)
3826 TRACE("(%p %lu)\n", this, refs
);
3827 return numpunct_wchar_ctor_name(this, "C", refs
, FALSE
);
3830 /* ??0?$numpunct@G@std@@QAE@I@Z */
3831 /* ??0?$numpunct@G@std@@QEAA@_K@Z */
3832 DEFINE_THISCALL_WRAPPER(numpunct_short_ctor_refs
, 8)
3833 numpunct_wchar
* __thiscall
numpunct_short_ctor_refs(numpunct_wchar
*this, MSVCP_size_t refs
)
3835 numpunct_wchar_ctor_refs(this, refs
);
3836 this->facet
.vtable
= &MSVCP_numpunct_short_vtable
;
3840 /* ??_F?$numpunct@_W@std@@QAEXXZ */
3841 /* ??_F?$numpunct@_W@std@@QEAAXXZ */
3842 DEFINE_THISCALL_WRAPPER(numpunct_wchar_ctor
, 4)
3843 numpunct_wchar
* __thiscall
numpunct_wchar_ctor(numpunct_wchar
*this)
3845 return numpunct_wchar_ctor_refs(this, 0);
3848 /* ??_F?$numpunct@G@std@@QAEXXZ */
3849 /* ??_F?$numpunct@G@std@@QEAAXXZ */
3850 DEFINE_THISCALL_WRAPPER(numpunct_short_ctor
, 4)
3851 numpunct_wchar
* __thiscall
numpunct_short_ctor(numpunct_wchar
*this)
3853 return numpunct_short_ctor_refs(this, 0);
3856 /* ??1?$numpunct@_W@std@@MAE@XZ */
3857 /* ??1?$numpunct@_W@std@@MEAA@XZ */
3858 /* ??1?$numpunct@G@std@@MAE@XZ */
3859 /* ??1?$numpunct@G@std@@MEAA@XZ */
3860 DEFINE_THISCALL_WRAPPER(numpunct_wchar_dtor
, 4)
3861 void __thiscall
numpunct_wchar_dtor(numpunct_wchar
*this)
3863 TRACE("(%p)\n", this);
3864 numpunct_wchar__Tidy(this);
3867 DEFINE_THISCALL_WRAPPER(MSVCP_numpunct_wchar_vector_dtor
, 8)
3868 numpunct_wchar
* __thiscall
MSVCP_numpunct_wchar_vector_dtor(numpunct_wchar
*this, unsigned int flags
)
3870 TRACE("(%p %x)\n", this, flags
);
3872 /* we have an array, with the number of elements stored before the first object */
3873 int i
, *ptr
= (int *)this-1;
3875 for(i
=*ptr
-1; i
>=0; i
--)
3876 numpunct_wchar_dtor(this+i
);
3877 MSVCRT_operator_delete(ptr
);
3879 numpunct_wchar_dtor(this);
3881 MSVCRT_operator_delete(this);
3887 DEFINE_THISCALL_WRAPPER(MSVCP_numpunct_short_vector_dtor
, 8)
3888 numpunct_wchar
* __thiscall
MSVCP_numpunct_short_vector_dtor(numpunct_wchar
*this, unsigned int flags
)
3890 return MSVCP_numpunct_wchar_vector_dtor(this, flags
);
3893 /* ?_Getcat@?$numpunct@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
3894 /* ?_Getcat@?$numpunct@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
3895 MSVCP_size_t __cdecl
numpunct_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
3897 TRACE("(%p %p)\n", facet
, loc
);
3899 if(facet
&& !*facet
) {
3900 *facet
= MSVCRT_operator_new(sizeof(numpunct_wchar
));
3902 ERR("Out of memory\n");
3903 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3906 numpunct_wchar_ctor_name((numpunct_wchar
*)*facet
,
3907 MSVCP_basic_string_char_c_str(&loc
->ptr
->name
), 0, TRUE
);
3913 static numpunct_wchar
* numpunct_wchar_use_facet(const locale
*loc
)
3915 static numpunct_wchar
*obj
= NULL
;
3918 const locale_facet
*fac
;
3920 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
3921 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&numpunct_wchar_id
));
3923 _Lockit_dtor(&lock
);
3924 return (numpunct_wchar
*)fac
;
3928 _Lockit_dtor(&lock
);
3932 numpunct_wchar__Getcat(&fac
, loc
);
3933 obj
= (numpunct_wchar
*)fac
;
3934 locale_facet__Incref(&obj
->facet
);
3935 locale_facet_register(&obj
->facet
);
3936 _Lockit_dtor(&lock
);
3941 /* ?_Getcat@?$numpunct@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
3942 /* ?_Getcat@?$numpunct@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
3943 MSVCP_size_t __cdecl
numpunct_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
3945 TRACE("(%p %p)\n", facet
, loc
);
3947 if(facet
&& !*facet
) {
3948 *facet
= MSVCRT_operator_new(sizeof(numpunct_wchar
));
3950 ERR("Out of memory\n");
3951 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
3954 numpunct_short_ctor_name((numpunct_wchar
*)*facet
,
3955 MSVCP_basic_string_char_c_str(&loc
->ptr
->name
), 0, TRUE
);
3961 static numpunct_wchar
* numpunct_short_use_facet(const locale
*loc
)
3963 static numpunct_wchar
*obj
= NULL
;
3966 const locale_facet
*fac
;
3968 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
3969 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&numpunct_short_id
));
3971 _Lockit_dtor(&lock
);
3972 return (numpunct_wchar
*)fac
;
3976 _Lockit_dtor(&lock
);
3980 numpunct_short__Getcat(&fac
, loc
);
3981 obj
= (numpunct_wchar
*)fac
;
3982 locale_facet__Incref(&obj
->facet
);
3983 locale_facet_register(&obj
->facet
);
3984 _Lockit_dtor(&lock
);
3989 /* ?do_decimal_point@?$numpunct@_W@std@@MBE_WXZ */
3990 /* ?do_decimal_point@?$numpunct@_W@std@@MEBA_WXZ */
3991 /* ?do_decimal_point@?$numpunct@G@std@@MBEGXZ */
3992 /* ?do_decimal_point@?$numpunct@G@std@@MEBAGXZ */
3993 DEFINE_THISCALL_WRAPPER(numpunct_wchar_do_decimal_point
, 4)
3994 #define call_numpunct_wchar_do_decimal_point(this) CALL_VTBL_FUNC(this, 4, \
3995 wchar_t, (const numpunct_wchar *this), (this))
3996 wchar_t __thiscall
numpunct_wchar_do_decimal_point(const numpunct_wchar
*this)
3998 TRACE("(%p)\n", this);
4002 /* ?decimal_point@?$numpunct@_W@std@@QBE_WXZ */
4003 /* ?decimal_point@?$numpunct@_W@std@@QEBA_WXZ */
4004 /* ?decimal_point@?$numpunct@G@std@@QBEGXZ */
4005 /* ?decimal_point@?$numpunct@G@std@@QEBAGXZ */
4006 DEFINE_THISCALL_WRAPPER(numpunct_wchar_decimal_point
, 4)
4007 wchar_t __thiscall
numpunct_wchar_decimal_point(const numpunct_wchar
*this)
4009 TRACE("(%p)\n", this);
4010 return call_numpunct_wchar_do_decimal_point(this);
4013 /* ?do_thousands_sep@?$numpunct@_W@std@@MBE_WXZ */
4014 /* ?do_thousands_sep@?$numpunct@_W@std@@MEBA_WXZ */
4015 /* ?do_thousands_sep@?$numpunct@G@std@@MBEGXZ */
4016 /* ?do_thousands_sep@?$numpunct@G@std@@MEBAGXZ */
4017 DEFINE_THISCALL_WRAPPER(numpunct_wchar_do_thousands_sep
, 4)
4018 #define call_numpunct_wchar_do_thousands_sep(this) CALL_VTBL_FUNC(this, 8, \
4019 wchar_t, (const numpunct_wchar *this), (this))
4020 wchar_t __thiscall
numpunct_wchar_do_thousands_sep(const numpunct_wchar
*this)
4022 TRACE("(%p)\n", this);
4026 /* ?thousands_sep@?$numpunct@_W@std@@QBE_WXZ */
4027 /* ?thousands_sep@?$numpunct@_W@std@@QEBA_WXZ */
4028 /* ?thousands_sep@?$numpunct@G@std@@QBEGXZ */
4029 /* ?thousands_sep@?$numpunct@G@std@@QEBAGXZ */
4030 DEFINE_THISCALL_WRAPPER(numpunct_wchar_thousands_sep
, 4)
4031 wchar_t __thiscall
numpunct_wchar_thousands_sep(const numpunct_wchar
*this)
4033 TRACE("(%p)\n", this);
4034 return call_numpunct_wchar_do_thousands_sep(this);
4037 /* ?do_grouping@?$numpunct@_W@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4038 /* ?do_grouping@?$numpunct@_W@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4039 /* ?do_grouping@?$numpunct@G@std@@MBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4040 /* ?do_grouping@?$numpunct@G@std@@MEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4041 DEFINE_THISCALL_WRAPPER(numpunct_wchar_do_grouping
, 8)
4042 #define call_numpunct_wchar_do_grouping(this, ret) CALL_VTBL_FUNC(this, 12, \
4043 basic_string_char*, (const numpunct_wchar*, basic_string_char*), (this, ret))
4044 basic_string_char
* __thiscall
numpunct_wchar_do_grouping(const numpunct_wchar
*this, basic_string_char
*ret
)
4046 TRACE("(%p)\n", this);
4047 return MSVCP_basic_string_char_ctor_cstr(ret
, this->grouping
);
4050 /* ?grouping@?$numpunct@_W@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4051 /* ?grouping@?$numpunct@_W@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4052 /* ?grouping@?$numpunct@G@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4053 /* ?grouping@?$numpunct@G@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
4054 DEFINE_THISCALL_WRAPPER(numpunct_wchar_grouping
, 8)
4055 basic_string_char
* __thiscall
numpunct_wchar_grouping(const numpunct_wchar
*this, basic_string_char
*ret
)
4057 TRACE("(%p)\n", this);
4058 return call_numpunct_wchar_do_grouping(this, ret
);
4061 /* ?do_falsename@?$numpunct@_W@std@@MBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4062 /* ?do_falsename@?$numpunct@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4063 /* ?do_falsename@?$numpunct@G@std@@MBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4064 /* ?do_falsename@?$numpunct@G@std@@MEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4065 DEFINE_THISCALL_WRAPPER(numpunct_wchar_do_falsename
, 8)
4066 #define call_numpunct_wchar_do_falsename(this, ret) CALL_VTBL_FUNC(this, 16, \
4067 basic_string_wchar*, (const numpunct_wchar*, basic_string_wchar*), (this, ret))
4068 basic_string_wchar
* __thiscall
numpunct_wchar_do_falsename(const numpunct_wchar
*this, basic_string_wchar
*ret
)
4070 TRACE("(%p)\n", this);
4071 return MSVCP_basic_string_wchar_ctor_cstr(ret
, this->false_name
);
4074 /* ?falsename@?$numpunct@_W@std@@QBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4075 /* ?falsename@?$numpunct@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4076 /* ?falsename@?$numpunct@G@std@@QBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4077 /* ?falsename@?$numpunct@G@std@@QEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4078 DEFINE_THISCALL_WRAPPER(numpunct_wchar_falsename
, 8)
4079 basic_string_wchar
* __thiscall
numpunct_wchar_falsename(const numpunct_wchar
*this, basic_string_wchar
*ret
)
4081 TRACE("(%p)\n", this);
4082 return call_numpunct_wchar_do_falsename(this, ret
);
4085 /* ?do_truename@?$numpunct@_W@std@@MBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4086 /* ?do_truename@?$numpunct@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4087 /* ?do_truename@?$numpunct@G@std@@MBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4088 /* ?do_truename@?$numpunct@G@std@@MEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4089 DEFINE_THISCALL_WRAPPER(numpunct_wchar_do_truename
, 8)
4090 #define call_numpunct_wchar_do_truename(this, ret) CALL_VTBL_FUNC(this, 20, \
4091 basic_string_wchar*, (const numpunct_wchar*, basic_string_wchar*), (this, ret))
4092 basic_string_wchar
* __thiscall
numpunct_wchar_do_truename(const numpunct_wchar
*this, basic_string_wchar
*ret
)
4094 TRACE("(%p)\n", this);
4095 return MSVCP_basic_string_wchar_ctor_cstr(ret
, this->true_name
);
4098 /* ?truename@?$numpunct@_W@std@@QBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4099 /* ?truename@?$numpunct@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@XZ */
4100 /* ?truename@?$numpunct@G@std@@QBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4101 /* ?truename@?$numpunct@G@std@@QEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@XZ */
4102 DEFINE_THISCALL_WRAPPER(numpunct_wchar_truename
, 8)
4103 basic_string_wchar
* __thiscall
numpunct_wchar_truename(const numpunct_wchar
*this, basic_string_wchar
*ret
)
4105 TRACE("(%p)\n", this);
4106 return call_numpunct_wchar_do_truename(this, ret
);
4109 double __cdecl
_Stod(const char *buf
, char **buf_end
, LONG exp
)
4111 double ret
= strtod(buf
, buf_end
);
4114 ret
*= pow(10, exp
);
4118 double __cdecl
_Stodx(const char *buf
, char **buf_end
, LONG exp
, int *err
)
4124 ret
= _Stod(buf
, buf_end
, exp
);
4134 float __cdecl
_Stof(const char *buf
, char **buf_end
, LONG exp
)
4136 return _Stod(buf
, buf_end
, exp
);
4139 float __cdecl
_Stofx(const char *buf
, char **buf_end
, LONG exp
, int *err
)
4141 return _Stodx(buf
, buf_end
, exp
, err
);
4144 __int64 __cdecl
_Stoll(const char *buf
, char **buf_end
, int base
)
4146 return _strtoi64(buf
, buf_end
, base
);
4149 __int64 __cdecl
_Stollx(const char *buf
, char **buf_end
, int base
, int *err
)
4155 ret
= _strtoi64(buf
, buf_end
, base
);
4165 LONG __cdecl
_Stolx(const char *buf
, char **buf_end
, int base
, int *err
)
4167 __int64 i
= _Stollx(buf
, buf_end
, base
, err
);
4168 if(!*err
&& i
!=(__int64
)((LONG
)i
))
4173 unsigned __int64 __cdecl
_Stoull(const char *buf
, char **buf_end
, int base
)
4175 return _strtoui64(buf
, buf_end
, base
);
4178 unsigned __int64 __cdecl
_Stoullx(const char *buf
, char **buf_end
, int base
, int *err
)
4180 unsigned __int64 ret
;
4184 ret
= _strtoui64(buf
, buf_end
, base
);
4194 ULONG __cdecl
_Stoul(const char *buf
, char **buf_end
, int base
)
4197 unsigned __int64 i
= _Stoullx(buf
[0]=='-' ? buf
+1 : buf
, buf_end
, base
, &err
);
4198 if(!err
&& i
!=(unsigned __int64
)((ULONG
)i
))
4200 return buf
[0]=='-' ? -i
: i
;
4203 ULONG __cdecl
_Stoulx(const char *buf
, char **buf_end
, int base
, int *err
)
4205 unsigned __int64 i
= _Stoullx(buf
[0]=='-' ? buf
+1 : buf
, buf_end
, base
, err
);
4206 if(!*err
&& i
!=(unsigned __int64
)((ULONG
)i
))
4208 return buf
[0]=='-' ? -i
: i
;
4211 /* ?id@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A */
4212 locale_id num_get_wchar_id
= {0};
4213 /* ?id@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A */
4214 locale_id num_get_short_id
= {0};
4216 /* ??_7?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@6B@ */
4217 extern const vtable_ptr MSVCP_num_get_wchar_vtable
;
4218 /* ??_7?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@6B@ */
4219 extern const vtable_ptr MSVCP_num_get_short_vtable
;
4221 /* ?_Init@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@IAEXABV_Locinfo@2@@Z */
4222 /* ?_Init@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@IEAAXAEBV_Locinfo@2@@Z */
4223 /* ?_Init@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@IAEXABV_Locinfo@2@@Z */
4224 /* ?_Init@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@IEAAXAEBV_Locinfo@2@@Z */
4225 DEFINE_THISCALL_WRAPPER(num_get_wchar__Init
, 8)
4226 void __thiscall
num_get_wchar__Init(num_get
*this, const _Locinfo
*locinfo
)
4228 TRACE("(%p %p)\n", this, locinfo
);
4229 _Locinfo__Getcvt(locinfo
, &this->cvt
);
4232 /* ??0?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
4233 /* ??0?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
4234 DEFINE_THISCALL_WRAPPER(num_get_wchar_ctor_locinfo
, 12)
4235 num_get
* __thiscall
num_get_wchar_ctor_locinfo(num_get
*this,
4236 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
4238 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
4240 locale_facet_ctor_refs(&this->facet
, refs
);
4241 this->facet
.vtable
= &MSVCP_num_get_wchar_vtable
;
4243 num_get_wchar__Init(this, locinfo
);
4247 /* ??0?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
4248 /* ??0?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
4249 DEFINE_THISCALL_WRAPPER(num_get_short_ctor_locinfo
, 12)
4250 num_get
* __thiscall
num_get_short_ctor_locinfo(num_get
*this,
4251 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
4253 num_get_wchar_ctor_locinfo(this, locinfo
, refs
);
4254 this->facet
.vtable
= &MSVCP_num_get_short_vtable
;
4258 /* ??0?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAE@I@Z */
4259 /* ??0?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAA@_K@Z */
4260 DEFINE_THISCALL_WRAPPER(num_get_wchar_ctor_refs
, 8)
4261 num_get
* __thiscall
num_get_wchar_ctor_refs(num_get
*this, MSVCP_size_t refs
)
4265 TRACE("(%p %lu)\n", this, refs
);
4267 _Locinfo_ctor(&locinfo
);
4268 num_get_wchar_ctor_locinfo(this, &locinfo
, refs
);
4269 _Locinfo_dtor(&locinfo
);
4273 /* ??0?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QAE@I@Z */
4274 /* ??0?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEAA@_K@Z */
4275 DEFINE_THISCALL_WRAPPER(num_get_short_ctor_refs
, 8)
4276 num_get
* __thiscall
num_get_short_ctor_refs(num_get
*this, MSVCP_size_t refs
)
4278 num_get_wchar_ctor_refs(this, refs
);
4279 this->facet
.vtable
= &MSVCP_num_get_short_vtable
;
4283 /* ??_F?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAEXXZ */
4284 /* ??_F?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAAXXZ */
4285 DEFINE_THISCALL_WRAPPER(num_get_wchar_ctor
, 4)
4286 num_get
* __thiscall
num_get_wchar_ctor(num_get
*this)
4288 return num_get_wchar_ctor_refs(this, 0);
4291 /* ??_F?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAEXXZ */
4292 /* ??_F?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAAXXZ */
4293 DEFINE_THISCALL_WRAPPER(num_get_short_ctor
, 4)
4294 num_get
* __thiscall
num_get_short_ctor(num_get
*this)
4296 return num_get_short_ctor_refs(this, 0);
4299 /* ??1?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MAE@XZ */
4300 /* ??1?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEAA@XZ */
4301 /* ??1?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MAE@XZ */
4302 /* ??1?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEAA@XZ */
4303 DEFINE_THISCALL_WRAPPER(num_get_wchar_dtor
, 4)
4304 void __thiscall
num_get_wchar_dtor(num_get
*this)
4306 TRACE("(%p)\n", this);
4307 locale_facet_dtor(&this->facet
);
4310 DEFINE_THISCALL_WRAPPER(MSVCP_num_get_wchar_vector_dtor
, 8)
4311 num_get
* __thiscall
MSVCP_num_get_wchar_vector_dtor(num_get
*this, unsigned int flags
)
4313 TRACE("(%p %x)\n", this, flags
);
4315 /* we have an array, with the number of elements stored before the first object */
4316 int i
, *ptr
= (int *)this-1;
4318 for(i
=*ptr
-1; i
>=0; i
--)
4319 num_get_wchar_dtor(this+i
);
4320 MSVCRT_operator_delete(ptr
);
4322 num_get_wchar_dtor(this);
4324 MSVCRT_operator_delete(this);
4330 DEFINE_THISCALL_WRAPPER(MSVCP_num_get_short_vector_dtor
, 8)
4331 num_get
* __thiscall
MSVCP_num_get_short_vector_dtor(num_get
*this, unsigned int flags
)
4333 return MSVCP_num_get_wchar_vector_dtor(this, flags
);
4336 /* ?_Getcat@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
4337 /* ?_Getcat@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
4338 MSVCP_size_t __cdecl
num_get_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
4340 TRACE("(%p %p)\n", facet
, loc
);
4342 if(facet
&& !*facet
) {
4345 *facet
= MSVCRT_operator_new(sizeof(num_get
));
4347 ERR("Out of memory\n");
4348 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
4352 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
4353 num_get_wchar_ctor_locinfo((num_get
*)*facet
, &locinfo
, 0);
4354 _Locinfo_dtor(&locinfo
);
4360 num_get
* num_get_wchar_use_facet(const locale
*loc
)
4362 static num_get
*obj
= NULL
;
4365 const locale_facet
*fac
;
4367 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
4368 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_get_wchar_id
));
4370 _Lockit_dtor(&lock
);
4371 return (num_get
*)fac
;
4375 _Lockit_dtor(&lock
);
4379 num_get_wchar__Getcat(&fac
, loc
);
4380 obj
= (num_get
*)fac
;
4381 locale_facet__Incref(&obj
->facet
);
4382 locale_facet_register(&obj
->facet
);
4383 _Lockit_dtor(&lock
);
4388 /* ?_Getcat@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
4389 /* ?_Getcat@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
4390 MSVCP_size_t __cdecl
num_get_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
4392 if(facet
&& !*facet
) {
4393 num_get_wchar__Getcat(facet
, loc
);
4394 (*(locale_facet
**)facet
)->vtable
= &MSVCP_num_get_short_vtable
;
4400 num_get
* num_get_short_use_facet(const locale
*loc
)
4402 static num_get
*obj
= NULL
;
4405 const locale_facet
*fac
;
4407 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
4408 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_get_short_id
));
4410 _Lockit_dtor(&lock
);
4411 return (num_get
*)fac
;
4415 _Lockit_dtor(&lock
);
4419 num_get_short__Getcat(&fac
, loc
);
4420 obj
= (num_get
*)fac
;
4421 locale_facet__Incref(&obj
->facet
);
4422 locale_facet_register(&obj
->facet
);
4423 _Lockit_dtor(&lock
);
4428 static inline wchar_t mb_to_wc(char ch
, const _Cvtvec
*cvt
)
4433 return _Mbrtowc(&ret
, &ch
, 1, &state
, cvt
) == 1 ? ret
: 0;
4436 static int num_get__Getffld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4437 istreambuf_iterator_wchar
*last
, const locale
*loc
, numpunct_wchar
*numpunct
)
4439 basic_string_char grouping_bstr
;
4440 int i
, groups_no
= 0, cur_group
= 0, exp
= 0;
4441 char *dest_beg
= dest
, *num_end
= dest
+25, *exp_end
= dest
+31, *groups
= NULL
;
4442 wchar_t sep
, digits
[11], *digits_pos
;
4443 const char *grouping
;
4444 BOOL error
= FALSE
, got_digit
= FALSE
, dest_empty
= TRUE
;
4446 TRACE("(%p %p %p %p)\n", dest
, first
, last
, loc
);
4449 digits
[i
] = mb_to_wc('0'+i
, &this->cvt
);
4452 numpunct_wchar_grouping(numpunct
, &grouping_bstr
);
4453 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
4454 sep
= grouping
[0] ? numpunct_wchar_thousands_sep(numpunct
) : (wchar_t)0;
4456 istreambuf_iterator_wchar_val(first
);
4457 if(first
->strbuf
&& first
->val
==mb_to_wc('-', &this->cvt
)) {
4459 istreambuf_iterator_wchar_inc(first
);
4460 }else if(first
->strbuf
&& first
->val
==mb_to_wc('+', &this->cvt
)) {
4462 istreambuf_iterator_wchar_inc(first
);
4466 groups_no
= strlen(grouping
)+2;
4467 groups
= calloc(groups_no
, sizeof(char));
4470 for(; first
->strbuf
; istreambuf_iterator_wchar_inc(first
)) {
4471 if(!(digits_pos
= wcschr(digits
, first
->val
))) {
4472 if(sep
&& first
->val
==sep
) {
4473 if(cur_group
== groups_no
+1) {
4474 if(groups
[1] != groups
[2]) {
4478 memmove(groups
+1, groups
+2, groups_no
);
4479 groups
[cur_group
] = 0;
4489 if(dest_empty
&& first
->val
== digits
[0])
4493 *dest
++ = '0'+digits_pos
-digits
;
4496 if(sep
&& groups
[cur_group
]<CHAR_MAX
)
4497 groups
[cur_group
]++;
4501 if(cur_group
&& !groups
[cur_group
])
4506 for(; cur_group
>=0 && !error
; cur_group
--) {
4507 if(*grouping
== CHAR_MAX
) {
4511 }else if((cur_group
&& *grouping
!=groups
[cur_group
])
4512 || (!cur_group
&& *grouping
<groups
[cur_group
])) {
4515 }else if(grouping
[1]) {
4519 MSVCP_basic_string_char_dtor(&grouping_bstr
);
4525 }else if(dest_empty
) {
4529 if(first
->strbuf
&& first
->val
==numpunct_wchar_decimal_point(numpunct
)) {
4531 *dest
++ = *localeconv()->decimal_point
;
4532 istreambuf_iterator_wchar_inc(first
);
4535 for(; first
->strbuf
&& first
->val
==digits
[0]; istreambuf_iterator_wchar_inc(first
)) {
4540 if(!first
->strbuf
|| !wcschr(digits
, first
->val
))
4545 for(; first
->strbuf
; istreambuf_iterator_wchar_inc(first
)) {
4546 if(!(digits_pos
= wcschr(digits
, first
->val
)))
4548 else if(dest
<num_end
) {
4550 *dest
++ = '0'+digits_pos
-digits
;
4559 if(first
->strbuf
&& (first
->val
==mb_to_wc('e', &this->cvt
) || first
->val
==mb_to_wc('E', &this->cvt
))) {
4561 istreambuf_iterator_wchar_inc(first
);
4563 if(first
->strbuf
&& first
->val
==mb_to_wc('-', &this->cvt
)) {
4565 istreambuf_iterator_wchar_inc(first
);
4566 }else if(first
->strbuf
&& first
->val
==mb_to_wc('+', &this->cvt
)) {
4568 istreambuf_iterator_wchar_inc(first
);
4571 error
= dest_empty
= TRUE
;
4572 for(; first
->strbuf
&& first
->val
==digits
[0]; istreambuf_iterator_wchar_inc(first
))
4575 for(; first
->strbuf
&& (digits_pos
= wcschr(digits
, first
->val
)); istreambuf_iterator_wchar_inc(first
)) {
4576 error
= dest_empty
= FALSE
;
4578 *dest
++ = '0'+digits_pos
-digits
;
4584 }else if(dest_empty
) {
4593 /* ?_Getffld@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1ABVlocale@2@@Z */
4594 /* ?_Getffld@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1AEBVlocale@2@@Z */
4595 int __cdecl
num_get_wchar__Getffld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4596 istreambuf_iterator_wchar
*last
, const locale
*loc
)
4598 return num_get__Getffld(this, dest
, first
, last
, loc
, numpunct_wchar_use_facet(loc
));
4601 /* ?_Getffld@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1ABVlocale@2@@Z */
4602 /* ?_Getffld@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1AEBVlocale@2@@Z */
4603 int __cdecl
num_get_short__Getffld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4604 istreambuf_iterator_wchar
*last
, const locale
*loc
)
4606 return num_get__Getffld(this, dest
, first
, last
, loc
, numpunct_short_use_facet(loc
));
4609 /* ?_Getffldx@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1AAVios_base@2@PAH@Z */
4610 /* ?_Getffldx@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1AEAVios_base@2@PEAH@Z */
4611 /* ?_Getffldx@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1AAVios_base@2@PAH@Z */
4612 /* ?_Getffldx@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1AEAVios_base@2@PEAH@Z */
4613 int __cdecl
num_get_wchar__Getffldx(num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4614 istreambuf_iterator_wchar
*last
, ios_base
*ios
, int *phexexp
)
4616 FIXME("(%p %p %p %p %p) stub\n", dest
, first
, last
, ios
, phexexp
);
4620 static int num_get__Getifld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4621 istreambuf_iterator_wchar
*last
, int fmtflags
, const locale
*loc
, numpunct_wchar
*numpunct
)
4623 wchar_t digits
[23], *digits_pos
, sep
;
4624 basic_string_char grouping_bstr
;
4625 int i
, basefield
, base
, groups_no
= 0, cur_group
= 0;
4626 char *dest_beg
= dest
, *dest_end
= dest
+24, *groups
= NULL
;
4627 const char *grouping
;
4628 BOOL error
= TRUE
, dest_empty
= TRUE
;
4630 TRACE("(%p %p %p %04x %p)\n", dest
, first
, last
, fmtflags
, loc
);
4633 digits
[i
] = mb_to_wc('0'+i
, &this->cvt
);
4634 for(i
=0; i
<6; i
++) {
4635 digits
[10+i
] = mb_to_wc('a'+i
, &this->cvt
);
4636 digits
[16+i
] = mb_to_wc('A'+i
, &this->cvt
);
4639 numpunct_wchar_grouping(numpunct
, &grouping_bstr
);
4640 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
4641 sep
= grouping
[0] ? numpunct_wchar_thousands_sep(numpunct
) : '\0';
4643 basefield
= fmtflags
& FMTFLAG_basefield
;
4644 if(basefield
== FMTFLAG_oct
)
4646 else if(basefield
== FMTFLAG_hex
)
4647 base
= 22; /* equal to the size of digits buffer */
4653 istreambuf_iterator_wchar_val(first
);
4654 if(first
->strbuf
&& first
->val
==mb_to_wc('-', &this->cvt
)) {
4656 istreambuf_iterator_wchar_inc(first
);
4657 }else if(first
->strbuf
&& first
->val
==mb_to_wc('+', &this->cvt
)) {
4659 istreambuf_iterator_wchar_inc(first
);
4662 if(!base
&& first
->strbuf
&& first
->val
==digits
[0]) {
4663 istreambuf_iterator_wchar_inc(first
);
4664 if(first
->strbuf
&& (first
->val
==mb_to_wc('x', &this->cvt
) || first
->val
==mb_to_wc('x', &this->cvt
))) {
4665 istreambuf_iterator_wchar_inc(first
);
4677 groups_no
= strlen(grouping
)+2;
4678 groups
= calloc(groups_no
, sizeof(char));
4681 for(; first
->strbuf
; istreambuf_iterator_wchar_inc(first
)) {
4682 if(!(digits_pos
= wcschr(digits
, first
->val
))) {
4683 if(sep
&& first
->val
==sep
) {
4684 if(cur_group
== groups_no
+1) {
4685 if(groups
[1] != groups
[2]) {
4689 memmove(groups
+1, groups
+2, groups_no
);
4690 groups
[cur_group
] = 0;
4700 if(dest_empty
&& first
->val
== digits
[0])
4703 /* skip digits that can't be copied to dest buffer, other
4704 * functions are responsible for detecting overflows */
4706 *dest
++ = (digits_pos
-digits
<10 ? '0'+digits_pos
-digits
:
4707 (digits_pos
-digits
<16 ? 'a'+digits_pos
-digits
-10 :
4708 'A'+digits_pos
-digits
-16));
4709 if(sep
&& groups
[cur_group
]<CHAR_MAX
)
4710 groups
[cur_group
]++;
4714 if(cur_group
&& !groups
[cur_group
])
4719 for(; cur_group
>=0 && !error
; cur_group
--) {
4720 if(*grouping
== CHAR_MAX
) {
4724 }else if((cur_group
&& *grouping
!=groups
[cur_group
])
4725 || (!cur_group
&& *grouping
<groups
[cur_group
])) {
4728 }else if(grouping
[1]) {
4732 MSVCP_basic_string_char_dtor(&grouping_bstr
);
4741 return (base
==22 ? 16 : base
);
4744 /* ?_Getifld@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1HABVlocale@2@@Z */
4745 /* ?_Getifld@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@1HAEBVlocale@2@@Z */
4746 int __cdecl
num_get_wchar__Getifld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4747 istreambuf_iterator_wchar
*last
, int fmtflags
, const locale
*loc
)
4749 return num_get__Getifld(this, dest
, first
, last
,
4750 fmtflags
, loc
, numpunct_wchar_use_facet(loc
));
4753 /* ?_Getifld@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1HABVlocale@2@@Z */
4754 /* ?_Getifld@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@1HAEBVlocale@2@@Z */
4755 int __cdecl
num_get_short__Getifld(const num_get
*this, char *dest
, istreambuf_iterator_wchar
*first
,
4756 istreambuf_iterator_wchar
*last
, int fmtflags
, const locale
*loc
)
4758 return num_get__Getifld(this, dest
, first
, last
,
4759 fmtflags
, loc
, numpunct_short_use_facet(loc
));
4762 /* ?_Hexdig@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABEH_W000@Z */
4763 /* ?_Hexdig@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAH_W000@Z */
4764 /* ?_Hexdig@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABEHGGGG@Z */
4765 /* ?_Hexdig@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAHGGGG@Z */
4766 DEFINE_THISCALL_WRAPPER(MSVCP_num_get_wchar__Hexdig
, 20)
4767 int __thiscall
MSVCP_num_get_wchar__Hexdig(num_get
*this, wchar_t dig
, wchar_t e0
, wchar_t al
, wchar_t au
)
4769 FIXME("(%p %c %c %c %c) stub\n", this, dig
, e0
, al
, au
);
4773 static istreambuf_iterator_wchar
* num_get_do_get_void(const num_get
*this,
4774 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
4775 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
4776 void **pval
, numpunct_wchar
*numpunct
)
4782 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4784 v
= _Stoullx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
4785 &last
, FMTFLAG_hex
, base
->loc
, numpunct
), &err
);
4786 if(v
!=(unsigned __int64
)((INT_PTR
)v
))
4787 *state
|= IOSTATE_failbit
;
4788 else if(end
!=tmp
&& !err
)
4789 *pval
= (void*)((INT_PTR
)v
);
4791 *state
|= IOSTATE_failbit
;
4794 *state
|= IOSTATE_eofbit
;
4800 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
4801 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
4802 #define call_num_get_wchar_do_get_void(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 4, istreambuf_iterator_wchar*, \
4803 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, void**), \
4804 (this, ret, first, last, base, state, pval))
4805 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_void
,36)
4806 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_void(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4807 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, void **pval
)
4809 return num_get_do_get_void(this, ret
, first
, last
, base
,
4810 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
4813 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
4814 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
4815 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_void
,36)
4816 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_void(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4817 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, void **pval
)
4819 return num_get_do_get_void(this, ret
, first
, last
, base
,
4820 state
, pval
, numpunct_short_use_facet(base
->loc
));
4823 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
4824 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
4825 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
4826 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
4827 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_void
,36)
4828 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_void(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4829 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, void **pval
)
4831 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4832 return call_num_get_wchar_do_get_void(this, ret
, first
, last
, base
, state
, pval
);
4835 static istreambuf_iterator_wchar
* num_get_do_get_double(const num_get
*this,
4836 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
4837 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
4838 double *pval
, numpunct_wchar
*numpunct
)
4844 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4846 v
= _Stodx(tmp
, &end
, num_get__Getffld(this, tmp
, &first
, &last
, base
->loc
, numpunct
), &err
);
4847 if(end
!=tmp
&& !err
)
4850 *state
|= IOSTATE_failbit
;
4853 *state
|= IOSTATE_eofbit
;
4859 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
4860 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
4861 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
4862 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
4863 #define call_num_get_wchar_do_get_ldouble(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 8, istreambuf_iterator_wchar*, \
4864 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*), \
4865 (this, ret, first, last, base, state, pval))
4866 #define call_num_get_wchar_do_get_double(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 12, istreambuf_iterator_wchar*, \
4867 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, double*), \
4868 (this, ret, first, last, base, state, pval))
4869 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_double
,36)
4870 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_double(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4871 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, double *pval
)
4873 return num_get_do_get_double(this, ret
, first
, last
, base
,
4874 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
4877 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
4878 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
4879 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
4880 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
4881 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_double
,36)
4882 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_double(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4883 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, double *pval
)
4885 return num_get_do_get_double(this, ret
, first
, last
, base
,
4886 state
, pval
, numpunct_short_use_facet(base
->loc
));
4889 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
4890 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
4891 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
4892 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
4893 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_ldouble
,36)
4894 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_ldouble(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4895 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, double *pval
)
4897 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4898 return call_num_get_wchar_do_get_ldouble(this, ret
, first
, last
, base
, state
, pval
);
4901 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
4902 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
4903 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
4904 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
4905 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_double
,36)
4906 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_double(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4907 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, double *pval
)
4909 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4910 return call_num_get_wchar_do_get_double(this, ret
, first
, last
, base
, state
, pval
);
4913 static istreambuf_iterator_wchar
* num_get_do_get_float(const num_get
*this,
4914 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
4915 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
4916 float *pval
, numpunct_wchar
*numpunct
)
4922 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4924 v
= _Stofx(tmp
, &end
, num_get__Getffld(this, tmp
, &first
,
4925 &last
, base
->loc
, numpunct
), &err
);
4926 if(end
!=tmp
&& !err
)
4929 *state
|= IOSTATE_failbit
;
4932 *state
|= IOSTATE_eofbit
;
4938 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
4939 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
4940 #define call_num_get_wchar_do_get_float(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 16, istreambuf_iterator_wchar*, \
4941 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, float*), \
4942 (this, ret, first, last, base, state, pval))
4943 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_float
,36)
4944 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_float(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4945 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, float *pval
)
4947 return num_get_do_get_float(this, ret
, first
, last
, base
,
4948 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
4951 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
4952 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
4953 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_float
,36)
4954 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_float(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4955 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, float *pval
)
4957 return num_get_do_get_float(this, ret
, first
, last
, base
,
4958 state
, pval
, numpunct_short_use_facet(base
->loc
));
4961 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
4962 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
4963 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
4964 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
4965 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_float
,36)
4966 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_float(const num_get
*this, istreambuf_iterator_wchar
*ret
,
4967 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, float *pval
)
4969 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4970 return call_num_get_wchar_do_get_float(this, ret
, first
, last
, base
, state
, pval
);
4973 static istreambuf_iterator_wchar
* num_get_do_get_uint64(const num_get
*this,
4974 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
4975 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
4976 ULONGLONG
*pval
, numpunct_wchar
*numpunct
)
4982 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
4984 v
= _Stoullx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
4985 &last
, base
->fmtfl
, base
->loc
, numpunct
), &err
);
4986 if(end
!=tmp
&& !err
)
4989 *state
|= IOSTATE_failbit
;
4992 *state
|= IOSTATE_eofbit
;
4998 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
4999 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5000 #define call_num_get_wchar_do_get_uint64(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 20, istreambuf_iterator_wchar*, \
5001 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONGLONG*), \
5002 (this, ret, first, last, base, state, pval))
5003 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_uint64
,36)
5004 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_uint64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5005 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONGLONG
*pval
)
5007 return num_get_do_get_uint64(this, ret
, first
, last
, base
,
5008 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
5011 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
5012 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5013 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_uint64
,36)
5014 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_uint64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5015 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONGLONG
*pval
)
5017 return num_get_do_get_uint64(this, ret
, first
, last
, base
,
5018 state
, pval
, numpunct_short_use_facet(base
->loc
));
5021 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
5022 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5023 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
5024 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5025 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_uint64
,36)
5026 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_uint64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5027 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONGLONG
*pval
)
5029 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5030 return call_num_get_wchar_do_get_uint64(this, ret
, first
, last
, base
, state
, pval
);
5033 static istreambuf_iterator_wchar
* num_get_do_get_int64(const num_get
*this,
5034 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
5035 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
5036 LONGLONG
*pval
, numpunct_wchar
*numpunct
)
5042 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5044 v
= _Stollx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
5045 &last
, base
->fmtfl
, base
->loc
, numpunct
), &err
);
5046 if(end
!=tmp
&& !err
)
5049 *state
|= IOSTATE_failbit
;
5052 *state
|= IOSTATE_eofbit
;
5058 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
5059 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
5060 #define call_num_get_wchar_do_get_int64(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 24, istreambuf_iterator_wchar*, \
5061 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONGLONG*), \
5062 (this, ret, first, last, base, state, pval))
5063 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_int64
,36)
5064 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_int64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5065 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONGLONG
*pval
)
5067 return num_get_do_get_int64(this, ret
, first
, last
, base
,
5068 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
5071 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
5072 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
5073 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_int64
,36)
5074 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_int64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5075 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONGLONG
*pval
)
5077 return num_get_do_get_int64(this, ret
, first
, last
, base
,
5078 state
, pval
, numpunct_short_use_facet(base
->loc
));
5081 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
5082 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
5083 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
5084 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
5085 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_int64
,36)
5086 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_int64(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5087 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONGLONG
*pval
)
5089 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5090 return call_num_get_wchar_do_get_int64(this, ret
, first
, last
, base
, state
, pval
);
5093 static istreambuf_iterator_wchar
* num_get_do_get_ulong(const num_get
*this,
5094 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
5095 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
5096 ULONG
*pval
, numpunct_wchar
*numpunct
)
5102 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5104 v
= _Stoulx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
5105 &last
, base
->fmtfl
, base
->loc
, numpunct
), &err
);
5106 if(end
!=tmp
&& !err
)
5109 *state
|= IOSTATE_failbit
;
5112 *state
|= IOSTATE_eofbit
;
5118 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
5119 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
5120 #define call_num_get_wchar_do_get_ulong(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 28, istreambuf_iterator_wchar*, \
5121 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, ULONG*), \
5122 (this, ret, first, last, base, state, pval))
5123 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_ulong
,36)
5124 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_ulong(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5125 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONG
*pval
)
5127 return num_get_do_get_ulong(this, ret
, first
, last
, base
,
5128 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
5131 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
5132 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
5133 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_ulong
,36)
5134 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_ulong(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5135 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONG
*pval
)
5137 return num_get_do_get_ulong(this, ret
, first
, last
, base
,
5138 state
, pval
, numpunct_short_use_facet(base
->loc
));
5141 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
5142 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
5143 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
5144 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
5145 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_ulong
,36)
5146 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_ulong(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5147 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, ULONG
*pval
)
5149 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5150 return call_num_get_wchar_do_get_ulong(this, ret
, first
, last
, base
, state
, pval
);
5153 static istreambuf_iterator_wchar
* num_get_do_get_long(const num_get
*this,
5154 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
5155 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
5156 LONG
*pval
, numpunct_wchar
*numpunct
)
5162 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5164 v
= _Stolx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
5165 &last
, base
->fmtfl
, base
->loc
, numpunct
), &err
);
5166 if(end
!=tmp
&& !err
)
5169 *state
|= IOSTATE_failbit
;
5172 *state
|= IOSTATE_eofbit
;
5178 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
5179 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
5180 #define call_num_get_wchar_do_get_long(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 32, istreambuf_iterator_wchar*, \
5181 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, LONG*), \
5182 (this, ret, first, last, base, state, pval))
5183 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_long
,36)
5184 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_long(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5185 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONG
*pval
)
5187 return num_get_do_get_long(this, ret
, first
, last
, base
,
5188 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
5191 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
5192 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
5193 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_long
,36)
5194 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_long(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5195 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONG
*pval
)
5197 return num_get_do_get_long(this, ret
, first
, last
, base
,
5198 state
, pval
, numpunct_short_use_facet(base
->loc
));
5201 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
5202 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
5203 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
5204 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
5205 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_long
,36)
5206 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_long(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5207 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, LONG
*pval
)
5209 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5210 return call_num_get_wchar_do_get_long(this, ret
, first
, last
, base
, state
, pval
);
5213 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
5214 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
5215 #define call_num_get_wchar_do_get_uint(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 36, istreambuf_iterator_wchar*, \
5216 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned int*), \
5217 (this, ret, first, last, base, state, pval))
5218 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_uint
,36)
5219 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_uint(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5220 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned int *pval
)
5222 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5223 return num_get_wchar_do_get_ulong(this, ret
, first
, last
, base
, state
, pval
);
5226 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
5227 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
5228 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_uint
,36)
5229 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_uint(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5230 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned int *pval
)
5232 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5233 return num_get_short_do_get_ulong(this, ret
, first
, last
, base
, state
, pval
);
5236 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
5237 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
5238 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
5239 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
5240 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_uint
,36)
5241 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_uint(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5242 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned int *pval
)
5244 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5245 return call_num_get_wchar_do_get_uint(this, ret
, first
, last
, base
, state
, pval
);
5248 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAG@Z */
5249 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
5250 #define call_num_get_wchar_do_get_ushort(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 40, istreambuf_iterator_wchar*, \
5251 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, unsigned short*), \
5252 (this, ret, first, last, base, state, pval))
5253 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_ushort
,36)
5254 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_ushort(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5255 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned short *pval
)
5258 char tmp
[25], *beg
, *end
;
5261 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5263 b
= num_get_wchar__Getifld(this, tmp
,
5264 &first
, &last
, base
->fmtfl
, base
->loc
);
5265 beg
= tmp
+ (tmp
[0]=='-' ? 1 : 0);
5266 v
= _Stoulx(beg
, &end
, b
, &err
);
5268 if(v
!= (ULONG
)((unsigned short)v
))
5269 *state
|= IOSTATE_failbit
;
5270 else if(end
!=beg
&& !err
)
5271 *pval
= (tmp
[0]=='-' ? -((unsigned short)v
) : v
);
5273 *state
|= IOSTATE_failbit
;
5276 *state
|= IOSTATE_eofbit
;
5282 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAG@Z */
5283 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
5284 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_ushort
,36)
5285 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_ushort(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5286 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned short *pval
)
5288 FIXME("(%p %p %p %p %p) stub\n", this, ret
, base
, state
, pval
);
5292 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAAG@Z */
5293 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
5294 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAAG@ */
5295 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
5296 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_ushort
,36)
5297 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_ushort(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5298 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, unsigned short *pval
)
5300 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5301 return call_num_get_wchar_do_get_ushort(this, ret
, first
, last
, base
, state
, pval
);
5304 static istreambuf_iterator_wchar
* num_get_do_get_bool(const num_get
*this,
5305 istreambuf_iterator_wchar
*ret
, istreambuf_iterator_wchar first
,
5306 istreambuf_iterator_wchar last
, ios_base
*base
, int *state
,
5307 MSVCP_bool
*pval
, numpunct_wchar
*numpunct
)
5309 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5311 if(base
->fmtfl
& FMTFLAG_boolalpha
) {
5312 basic_string_wchar false_bstr
, true_bstr
;
5313 const wchar_t *pfalse
, *ptrue
;
5315 numpunct_wchar_falsename(numpunct
, &false_bstr
);
5316 numpunct_wchar_truename(numpunct
, &true_bstr
);
5317 pfalse
= MSVCP_basic_string_wchar_c_str(&false_bstr
);
5318 ptrue
= MSVCP_basic_string_wchar_c_str(&true_bstr
);
5320 for(istreambuf_iterator_wchar_val(&first
); first
.strbuf
;
5321 istreambuf_iterator_wchar_inc(&first
)) {
5322 if(pfalse
&& *pfalse
&& first
.val
!=*pfalse
)
5324 if(ptrue
&& *ptrue
&& first
.val
!=*ptrue
)
5327 if(pfalse
&& *pfalse
&& ptrue
&& !*ptrue
)
5329 if(ptrue
&& *ptrue
&& pfalse
&& !*pfalse
)
5337 if((!pfalse
|| !*pfalse
) && (!ptrue
|| !*ptrue
))
5346 *state
|= IOSTATE_failbit
;
5348 MSVCP_basic_string_wchar_dtor(&false_bstr
);
5349 MSVCP_basic_string_wchar_dtor(&true_bstr
);
5353 LONG v
= _Stolx(tmp
, &end
, num_get__Getifld(this, tmp
, &first
,
5354 &last
, base
->fmtfl
, base
->loc
, numpunct
), &err
);
5356 if(end
!=tmp
&& err
==0 && (v
==0 || v
==1))
5359 *state
|= IOSTATE_failbit
;
5363 *state
|= IOSTATE_eofbit
;
5364 memcpy(ret
, &first
, sizeof(first
));
5368 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
5369 /* ?do_get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
5370 #define call_num_get_wchar_do_get_bool(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 44, istreambuf_iterator_wchar*, \
5371 (const num_get*, istreambuf_iterator_wchar*, istreambuf_iterator_wchar, istreambuf_iterator_wchar, ios_base*, int*, MSVCP_bool*), \
5372 (this, ret, first, last, base, state, pval))
5373 DEFINE_THISCALL_WRAPPER(num_get_wchar_do_get_bool
,36)
5374 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_do_get_bool(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5375 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, MSVCP_bool
*pval
)
5377 return num_get_do_get_bool(this, ret
, first
, last
, base
,
5378 state
, pval
, numpunct_wchar_use_facet(base
->loc
));
5381 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
5382 /* ?do_get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
5383 DEFINE_THISCALL_WRAPPER(num_get_short_do_get_bool
,36)
5384 istreambuf_iterator_wchar
*__thiscall
num_get_short_do_get_bool(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5385 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, MSVCP_bool
*pval
)
5387 return num_get_do_get_bool(this, ret
, first
, last
, base
,
5388 state
, pval
, numpunct_short_use_facet(base
->loc
));
5391 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
5392 /* ?get@?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
5393 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
5394 /* ?get@?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@GU?$char_traits@G@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
5395 DEFINE_THISCALL_WRAPPER(num_get_wchar_get_bool
,36)
5396 istreambuf_iterator_wchar
*__thiscall
num_get_wchar_get_bool(const num_get
*this, istreambuf_iterator_wchar
*ret
,
5397 istreambuf_iterator_wchar first
, istreambuf_iterator_wchar last
, ios_base
*base
, int *state
, MSVCP_bool
*pval
)
5399 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5400 return call_num_get_wchar_do_get_bool(this, ret
, first
, last
, base
, state
, pval
);
5403 /* ?id@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A */
5404 locale_id num_get_char_id
= {0};
5406 /* ??_7?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ */
5407 extern const vtable_ptr MSVCP_num_get_char_vtable
;
5409 /* ?_Init@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@IAEXABV_Locinfo@2@@Z */
5410 /* ?_Init@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@IEAAXAEBV_Locinfo@2@@Z */
5411 DEFINE_THISCALL_WRAPPER(num_get_char__Init
, 8)
5412 void __thiscall
num_get_char__Init(num_get
*this, const _Locinfo
*locinfo
)
5414 TRACE("(%p %p)\n", this, locinfo
);
5415 _Locinfo__Getcvt(locinfo
, &this->cvt
);
5418 /* ??0?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
5419 /* ??0?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
5420 DEFINE_THISCALL_WRAPPER(num_get_char_ctor_locinfo
, 12)
5421 num_get
* __thiscall
num_get_char_ctor_locinfo(num_get
*this,
5422 const _Locinfo
*locinfo
, MSVCP_size_t refs
)
5424 TRACE("(%p %p %lu)\n", this, locinfo
, refs
);
5426 locale_facet_ctor_refs(&this->facet
, refs
);
5427 this->facet
.vtable
= &MSVCP_num_get_char_vtable
;
5429 num_get_char__Init(this, locinfo
);
5433 /* ??0?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAE@I@Z */
5434 /* ??0?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAA@_K@Z */
5435 DEFINE_THISCALL_WRAPPER(num_get_char_ctor_refs
, 8)
5436 num_get
* __thiscall
num_get_char_ctor_refs(num_get
*this, MSVCP_size_t refs
)
5440 TRACE("(%p %lu)\n", this, refs
);
5442 _Locinfo_ctor(&locinfo
);
5443 num_get_char_ctor_locinfo(this, &locinfo
, refs
);
5444 _Locinfo_dtor(&locinfo
);
5448 /* ??_F?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAEXXZ */
5449 /* ??_F?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAAXXZ */
5450 DEFINE_THISCALL_WRAPPER(num_get_char_ctor
, 4)
5451 num_get
* __thiscall
num_get_char_ctor(num_get
*this)
5453 return num_get_char_ctor_refs(this, 0);
5456 /* ??1?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAE@XZ */
5457 /* ??1?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEAA@XZ */
5458 DEFINE_THISCALL_WRAPPER(num_get_char_dtor
, 4)
5459 void __thiscall
num_get_char_dtor(num_get
*this)
5461 TRACE("(%p)\n", this);
5462 locale_facet_dtor(&this->facet
);
5465 DEFINE_THISCALL_WRAPPER(MSVCP_num_get_char_vector_dtor
, 8)
5466 num_get
* __thiscall
MSVCP_num_get_char_vector_dtor(num_get
*this, unsigned int flags
)
5468 TRACE("(%p %x)\n", this, flags
);
5470 /* we have an array, with the number of elements stored before the first object */
5471 int i
, *ptr
= (int *)this-1;
5473 for(i
=*ptr
-1; i
>=0; i
--)
5474 num_get_char_dtor(this+i
);
5475 MSVCRT_operator_delete(ptr
);
5477 num_get_char_dtor(this);
5479 MSVCRT_operator_delete(this);
5485 /* ?_Getcat@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
5486 /* ?_Getcat@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
5487 MSVCP_size_t __cdecl
num_get_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
5489 TRACE("(%p %p)\n", facet
, loc
);
5491 if(facet
&& !*facet
) {
5494 *facet
= MSVCRT_operator_new(sizeof(num_get
));
5496 ERR("Out of memory\n");
5497 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
5501 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
5502 num_get_char_ctor_locinfo((num_get
*)*facet
, &locinfo
, 0);
5503 _Locinfo_dtor(&locinfo
);
5509 num_get
* num_get_char_use_facet(const locale
*loc
)
5511 static num_get
*obj
= NULL
;
5514 const locale_facet
*fac
;
5516 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
5517 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_get_char_id
));
5519 _Lockit_dtor(&lock
);
5520 return (num_get
*)fac
;
5524 _Lockit_dtor(&lock
);
5528 num_get_char__Getcat(&fac
, loc
);
5529 obj
= (num_get
*)fac
;
5530 locale_facet__Incref(&obj
->facet
);
5531 locale_facet_register(&obj
->facet
);
5532 _Lockit_dtor(&lock
);
5537 /* ?_Getffld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1ABVlocale@2@@Z */
5538 /* ?_Getffld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1AEBVlocale@2@@Z */
5539 /* Copies number to dest buffer, validates grouping and skips separators.
5540 * Updates first so it points past the number, all digits are skipped.
5541 * Returns how exponent needs to changed.
5542 * Size of dest buffer is not specified, assuming it's not smaller than 32:
5543 * strlen(+0.e+) + 22(digits) + 4(expontent) + 1(nullbyte)
5545 int __cdecl
num_get_char__Getffld(const num_get
*this, char *dest
, istreambuf_iterator_char
*first
,
5546 istreambuf_iterator_char
*last
, const locale
*loc
)
5548 numpunct_char
*numpunct
= numpunct_char_use_facet(loc
);
5549 basic_string_char grouping_bstr
;
5550 int groups_no
= 0, cur_group
= 0, exp
= 0;
5551 char *dest_beg
= dest
, *num_end
= dest
+25, *exp_end
= dest
+31, *groups
= NULL
, sep
;
5552 const char *grouping
;
5553 BOOL error
= FALSE
, got_digit
= FALSE
, dest_empty
= TRUE
;
5555 TRACE("(%p %p %p %p)\n", dest
, first
, last
, loc
);
5557 numpunct_char_grouping(numpunct
, &grouping_bstr
);
5558 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
5559 sep
= grouping
[0] ? numpunct_char_thousands_sep(numpunct
) : '\0';
5561 istreambuf_iterator_char_val(first
);
5562 if(first
->strbuf
&& (first
->val
=='-' || first
->val
=='+')) {
5563 *dest
++ = first
->val
;
5564 istreambuf_iterator_char_inc(first
);
5568 groups_no
= strlen(grouping
)+2;
5569 groups
= calloc(groups_no
, sizeof(char));
5572 for(; first
->strbuf
; istreambuf_iterator_char_inc(first
)) {
5573 if(first
->val
<'0' || first
->val
>'9') {
5574 if(sep
&& first
->val
==sep
) {
5575 if(cur_group
== groups_no
+1) {
5576 if(groups
[1] != groups
[2]) {
5580 memmove(groups
+1, groups
+2, groups_no
);
5581 groups
[cur_group
] = 0;
5591 if(dest_empty
&& first
->val
== '0')
5595 *dest
++ = first
->val
;
5598 if(sep
&& groups
[cur_group
]<CHAR_MAX
)
5599 groups
[cur_group
]++;
5603 if(cur_group
&& !groups
[cur_group
])
5608 for(; cur_group
>=0 && !error
; cur_group
--) {
5609 if(*grouping
== CHAR_MAX
) {
5613 }else if((cur_group
&& *grouping
!=groups
[cur_group
])
5614 || (!cur_group
&& *grouping
<groups
[cur_group
])) {
5617 }else if(grouping
[1]) {
5621 MSVCP_basic_string_char_dtor(&grouping_bstr
);
5627 }else if(dest_empty
) {
5631 if(first
->strbuf
&& first
->val
==numpunct_char_decimal_point(numpunct
)) {
5633 *dest
++ = *localeconv()->decimal_point
;
5634 istreambuf_iterator_char_inc(first
);
5637 for(; first
->strbuf
&& first
->val
=='0'; istreambuf_iterator_char_inc(first
)) {
5642 if(!first
->strbuf
|| first
->val
<'1' || first
->val
>'9')
5647 for(; first
->strbuf
; istreambuf_iterator_char_inc(first
)) {
5648 if(first
->val
<'0' || first
->val
>'9')
5650 else if(dest
<num_end
) {
5652 *dest
++ = first
->val
;
5661 if(first
->strbuf
&& (first
->val
=='e' || first
->val
=='E')) {
5662 *dest
++ = first
->val
;
5663 istreambuf_iterator_char_inc(first
);
5665 if(first
->strbuf
&& (first
->val
=='-' || first
->val
=='+')) {
5666 *dest
++ = first
->val
;
5667 istreambuf_iterator_char_inc(first
);
5670 error
= dest_empty
= TRUE
;
5671 for(; first
->strbuf
&& first
->val
=='0'; istreambuf_iterator_char_inc(first
))
5674 for(; first
->strbuf
&& first
->val
>='0' && first
->val
<='9'; istreambuf_iterator_char_inc(first
)) {
5675 error
= dest_empty
= FALSE
;
5677 *dest
++ = first
->val
;
5683 }else if(dest_empty
) {
5692 /* ?_Getffldx@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1AAVios_base@2@PAH@Z */
5693 /* ?_Getffldx@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1AEAVios_base@2@PEAH@Z */
5694 int __cdecl
num_get_char__Getffldx(const num_get
*this, char *dest
, istreambuf_iterator_char
*first
,
5695 istreambuf_iterator_char
*last
, ios_base
*ios
, int *phexexp
)
5697 FIXME("(%p %p %p %p %p) stub\n", dest
, first
, last
, ios
, phexexp
);
5701 /* ?_Getifld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAHPADAAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1HABVlocale@2@@Z */
5702 /* ?_Getifld@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAHPEADAEAV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@1HAEBVlocale@2@@Z */
5703 /* Copies number to dest buffer, validates grouping and skips separators.
5704 * Updates first so it points past the number, all digits are skipped.
5705 * Returns number base (8, 10 or 16).
5706 * Size of dest buffer is not specified, assuming it's not smaller than 25:
5707 * 22(8^22>2^64)+1(detect overflows)+1(sign)+1(nullbyte) = 25
5709 int __cdecl
num_get_char__Getifld(const num_get
*this, char *dest
, istreambuf_iterator_char
*first
,
5710 istreambuf_iterator_char
*last
, int fmtflags
, const locale
*loc
)
5712 static const char digits
[] = "0123456789abcdefABCDEF";
5714 numpunct_char
*numpunct
= numpunct_char_use_facet(loc
);
5715 basic_string_char grouping_bstr
;
5716 int basefield
, base
, groups_no
= 0, cur_group
= 0;
5717 char *dest_beg
= dest
, *dest_end
= dest
+24, *groups
= NULL
, sep
;
5718 const char *grouping
;
5719 BOOL error
= TRUE
, dest_empty
= TRUE
;
5721 TRACE("(%p %p %p %04x %p)\n", dest
, first
, last
, fmtflags
, loc
);
5723 numpunct_char_grouping(numpunct
, &grouping_bstr
);
5724 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
5725 sep
= grouping
[0] ? numpunct_char_thousands_sep(numpunct
) : '\0';
5727 basefield
= fmtflags
& FMTFLAG_basefield
;
5728 if(basefield
== FMTFLAG_oct
)
5730 else if(basefield
== FMTFLAG_hex
)
5731 base
= 22; /* equal to the size of digits buffer */
5737 istreambuf_iterator_char_val(first
);
5738 if(first
->strbuf
&& (first
->val
=='-' || first
->val
=='+')) {
5739 *dest
++ = first
->val
;
5740 istreambuf_iterator_char_inc(first
);
5743 if(!base
&& first
->strbuf
&& first
->val
=='0') {
5744 istreambuf_iterator_char_inc(first
);
5745 if(first
->strbuf
&& (first
->val
=='x' || first
->val
=='X')) {
5746 istreambuf_iterator_char_inc(first
);
5757 groups_no
= strlen(grouping
)+2;
5758 groups
= calloc(groups_no
, sizeof(char));
5761 for(; first
->strbuf
; istreambuf_iterator_char_inc(first
)) {
5762 if(!memchr(digits
, first
->val
, base
)) {
5763 if(sep
&& first
->val
==sep
) {
5764 if(cur_group
== groups_no
+1) {
5765 if(groups
[1] != groups
[2]) {
5769 memmove(groups
+1, groups
+2, groups_no
);
5770 groups
[cur_group
] = 0;
5780 if(dest_empty
&& first
->val
== '0')
5783 /* skip digits that can't be copied to dest buffer, other
5784 * functions are responsible for detecting overflows */
5786 *dest
++ = first
->val
;
5787 if(sep
&& groups
[cur_group
]<CHAR_MAX
)
5788 groups
[cur_group
]++;
5792 if(cur_group
&& !groups
[cur_group
])
5797 for(; cur_group
>=0 && !error
; cur_group
--) {
5798 if(*grouping
== CHAR_MAX
) {
5802 }else if((cur_group
&& *grouping
!=groups
[cur_group
])
5803 || (!cur_group
&& *grouping
<groups
[cur_group
])) {
5806 }else if(grouping
[1]) {
5810 MSVCP_basic_string_char_dtor(&grouping_bstr
);
5819 return (base
==22 ? 16 : base
);
5822 /* ?_Hexdig@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABEHD000@Z */
5823 /* ?_Hexdig@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAHD000@Z */
5824 DEFINE_THISCALL_WRAPPER(MSVCP_num_get_char__Hexdig
, 20)
5825 int __thiscall
MSVCP_num_get_char__Hexdig(num_get
*this, char dig
, char e0
, char al
, char au
)
5827 FIXME("(%p %c %c %c %c) stub\n", this, dig
, e0
, al
, au
);
5831 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
5832 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
5833 #define call_num_get_char_do_get_void(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 4, istreambuf_iterator_char*, \
5834 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, void**), \
5835 (this, ret, first, last, base, state, pval))
5836 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_void
,36)
5837 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_void(const num_get
*this, istreambuf_iterator_char
*ret
,
5838 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, void **pval
)
5844 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5846 v
= _Stoullx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
5847 &first
, &last
, FMTFLAG_hex
, base
->loc
), &err
);
5848 if(v
!=(unsigned __int64
)((INT_PTR
)v
))
5849 *state
|= IOSTATE_failbit
;
5850 else if(end
!=tmp
&& !err
)
5851 *pval
= (void*)((INT_PTR
)v
);
5853 *state
|= IOSTATE_failbit
;
5856 *state
|= IOSTATE_eofbit
;
5862 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAPAX@Z */
5863 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAPEAX@Z */
5864 DEFINE_THISCALL_WRAPPER(num_get_char_get_void
,36)
5865 istreambuf_iterator_char
*__thiscall
num_get_char_get_void(const num_get
*this, istreambuf_iterator_char
*ret
,
5866 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, void **pval
)
5868 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5869 return call_num_get_char_do_get_void(this, ret
, first
, last
, base
, state
, pval
);
5872 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
5873 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
5874 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
5875 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
5876 #define call_num_get_char_do_get_ldouble(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 8, istreambuf_iterator_char*, \
5877 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*), \
5878 (this, ret, first, last, base, state, pval))
5879 #define call_num_get_char_do_get_double(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 12, istreambuf_iterator_char*, \
5880 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, double*), \
5881 (this, ret, first, last, base, state, pval))
5882 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_double
,36)
5883 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_double(const num_get
*this, istreambuf_iterator_char
*ret
,
5884 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, double *pval
)
5890 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5892 v
= _Stodx(tmp
, &end
, num_get_char__Getffld(this, tmp
, &first
, &last
, base
->loc
), &err
);
5893 if(end
!=tmp
&& !err
)
5896 *state
|= IOSTATE_failbit
;
5899 *state
|= IOSTATE_eofbit
;
5905 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAO@Z */
5906 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAO@Z */
5907 DEFINE_THISCALL_WRAPPER(num_get_char_get_ldouble
,36)
5908 istreambuf_iterator_char
*__thiscall
num_get_char_get_ldouble(const num_get
*this, istreambuf_iterator_char
*ret
,
5909 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, double *pval
)
5911 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5912 return call_num_get_char_do_get_ldouble(this, ret
, first
, last
, base
, state
, pval
);
5915 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAN@Z */
5916 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAN@Z */
5917 DEFINE_THISCALL_WRAPPER(num_get_char_get_double
,36)
5918 istreambuf_iterator_char
*__thiscall
num_get_char_get_double(const num_get
*this, istreambuf_iterator_char
*ret
,
5919 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, double *pval
)
5921 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5922 return call_num_get_char_do_get_double(this, ret
, first
, last
, base
, state
, pval
);
5925 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
5926 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
5927 #define call_num_get_char_do_get_float(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 16, istreambuf_iterator_char*, \
5928 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, float*), \
5929 (this, ret, first, last, base, state, pval))
5930 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_float
,36)
5931 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_float(const num_get
*this, istreambuf_iterator_char
*ret
,
5932 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, float *pval
)
5938 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5940 v
= _Stofx(tmp
, &end
, num_get_char__Getffld(this, tmp
, &first
, &last
, base
->loc
), &err
);
5941 if(end
!=tmp
&& !err
)
5944 *state
|= IOSTATE_failbit
;
5947 *state
|= IOSTATE_eofbit
;
5953 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAM@Z */
5954 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAM@Z */
5955 DEFINE_THISCALL_WRAPPER(num_get_char_get_float
,36)
5956 istreambuf_iterator_char
*__thiscall
num_get_char_get_float(const num_get
*this, istreambuf_iterator_char
*ret
,
5957 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, float *pval
)
5959 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5960 return call_num_get_char_do_get_float(this, ret
, first
, last
, base
, state
, pval
);
5963 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
5964 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5965 #define call_num_get_char_do_get_uint64(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 20, istreambuf_iterator_char*, \
5966 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONGLONG*), \
5967 (this, ret, first, last, base, state, pval))
5968 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_uint64
,36)
5969 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_uint64(const num_get
*this, istreambuf_iterator_char
*ret
,
5970 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, ULONGLONG
*pval
)
5976 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5978 v
= _Stoullx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
5979 &first
, &last
, base
->fmtfl
, base
->loc
), &err
);
5980 if(end
!=tmp
&& !err
)
5983 *state
|= IOSTATE_failbit
;
5986 *state
|= IOSTATE_eofbit
;
5992 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_K@Z */
5993 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_K@Z */
5994 DEFINE_THISCALL_WRAPPER(num_get_char_get_uint64
,36)
5995 istreambuf_iterator_char
*__thiscall
num_get_char_get_uint64(const num_get
*this, istreambuf_iterator_char
*ret
,
5996 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, ULONGLONG
*pval
)
5998 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
5999 return call_num_get_char_do_get_uint64(this, ret
, first
, last
, base
, state
, pval
);
6002 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
6003 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
6004 #define call_num_get_char_do_get_int64(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 24, istreambuf_iterator_char*, \
6005 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONGLONG*), \
6006 (this, ret, first, last, base, state, pval))
6007 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_int64
,36)
6008 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_int64(const num_get
*this, istreambuf_iterator_char
*ret
,
6009 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, LONGLONG
*pval
)
6015 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6017 v
= _Stollx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
6018 &first
, &last
, base
->fmtfl
, base
->loc
), &err
);
6019 if(end
!=tmp
&& !err
)
6022 *state
|= IOSTATE_failbit
;
6025 *state
|= IOSTATE_eofbit
;
6031 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_J@Z */
6032 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_J@Z */
6033 DEFINE_THISCALL_WRAPPER(num_get_char_get_int64
,36)
6034 istreambuf_iterator_char
*__thiscall
num_get_char_get_int64(const num_get
*this, istreambuf_iterator_char
*ret
,
6035 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, LONGLONG
*pval
)
6037 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6038 return call_num_get_char_do_get_int64(this, ret
, first
, last
, base
, state
, pval
);
6041 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
6042 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
6043 #define call_num_get_char_do_get_ulong(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 28, istreambuf_iterator_char*, \
6044 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, ULONG*), \
6045 (this, ret, first, last, base, state, pval))
6046 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_ulong
,36)
6047 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_ulong(const num_get
*this, istreambuf_iterator_char
*ret
,
6048 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, ULONG
*pval
)
6054 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6056 v
= _Stoulx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
6057 &first
, &last
, base
->fmtfl
, base
->loc
), &err
);
6058 if(end
!=tmp
&& !err
)
6061 *state
|= IOSTATE_failbit
;
6064 *state
|= IOSTATE_eofbit
;
6070 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAK@Z */
6071 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAK@Z */
6072 DEFINE_THISCALL_WRAPPER(num_get_char_get_ulong
,36)
6073 istreambuf_iterator_char
*__thiscall
num_get_char_get_ulong(const num_get
*this, istreambuf_iterator_char
*ret
,
6074 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, ULONG
*pval
)
6076 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6077 return call_num_get_char_do_get_ulong(this, ret
, first
, last
, base
, state
, pval
);
6080 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
6081 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
6082 #define call_num_get_char_do_get_long(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 32, istreambuf_iterator_char*, \
6083 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, LONG*), \
6084 (this, ret, first, last, base, state, pval))
6085 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_long
,36)
6086 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_long(const num_get
*this, istreambuf_iterator_char
*ret
,
6087 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, LONG
*pval
)
6093 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6095 v
= _Stolx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
6096 &first
, &last
, base
->fmtfl
, base
->loc
), &err
);
6097 if(end
!=tmp
&& !err
)
6100 *state
|= IOSTATE_failbit
;
6103 *state
|= IOSTATE_eofbit
;
6109 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAJ@Z */
6110 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAJ@Z */
6111 DEFINE_THISCALL_WRAPPER(num_get_char_get_long
,36)
6112 istreambuf_iterator_char
*__thiscall
num_get_char_get_long(const num_get
*this, istreambuf_iterator_char
*ret
,
6113 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, LONG
*pval
)
6115 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6116 return call_num_get_char_do_get_long(this, ret
, first
, last
, base
, state
, pval
);
6119 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
6120 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
6121 #define call_num_get_char_do_get_uint(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 36, istreambuf_iterator_char*, \
6122 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned int*), \
6123 (this, ret, first, last, base, state, pval))
6124 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_uint
,36)
6125 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_uint(const num_get
*this, istreambuf_iterator_char
*ret
,
6126 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, unsigned int *pval
)
6128 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6129 return num_get_char_do_get_ulong(this, ret
, first
, last
, base
, state
, pval
);
6132 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAI@Z */
6133 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAI@Z */
6134 DEFINE_THISCALL_WRAPPER(num_get_char_get_uint
,36)
6135 istreambuf_iterator_char
*__thiscall
num_get_char_get_uint(const num_get
*this, istreambuf_iterator_char
*ret
,
6136 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, unsigned int *pval
)
6138 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6139 return call_num_get_char_do_get_uint(this, ret
, first
, last
, base
, state
, pval
);
6142 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAG@Z */
6143 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
6144 #define call_num_get_char_do_get_ushort(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 40, istreambuf_iterator_char*, \
6145 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, unsigned short*), \
6146 (this, ret, first, last, base, state, pval))
6147 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_ushort
,36)
6148 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_ushort(const num_get
*this, istreambuf_iterator_char
*ret
,
6149 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, unsigned short *pval
)
6152 char tmp
[25], *beg
, *end
;
6155 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6157 b
= num_get_char__Getifld(this, tmp
,
6158 &first
, &last
, base
->fmtfl
, base
->loc
);
6159 beg
= tmp
+ (tmp
[0]=='-' ? 1 : 0);
6160 v
= _Stoulx(beg
, &end
, b
, &err
);
6162 if(v
!= (ULONG
)((unsigned short)v
))
6163 *state
|= IOSTATE_failbit
;
6164 else if(end
!=beg
&& !err
)
6165 *pval
= (tmp
[0]=='-' ? -((unsigned short)v
) : v
);
6167 *state
|= IOSTATE_failbit
;
6170 *state
|= IOSTATE_eofbit
;
6176 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAAG@Z */
6177 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEAG@Z */
6178 DEFINE_THISCALL_WRAPPER(num_get_char_get_ushort
,36)
6179 istreambuf_iterator_char
*__thiscall
num_get_char_get_ushort(const num_get
*this, istreambuf_iterator_char
*ret
,
6180 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, unsigned short *pval
)
6182 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6183 return call_num_get_char_do_get_ushort(this, ret
, first
, last
, base
, state
, pval
);
6186 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
6187 /* ?do_get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
6188 #define call_num_get_char_do_get_bool(this, ret, first, last, base, state, pval) CALL_VTBL_FUNC(this, 44, istreambuf_iterator_char*, \
6189 (const num_get*, istreambuf_iterator_char*, istreambuf_iterator_char, istreambuf_iterator_char, ios_base*, int*, MSVCP_bool*), \
6190 (this, ret, first, last, base, state, pval))
6191 DEFINE_THISCALL_WRAPPER(num_get_char_do_get_bool
,36)
6192 istreambuf_iterator_char
*__thiscall
num_get_char_do_get_bool(const num_get
*this, istreambuf_iterator_char
*ret
,
6193 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, MSVCP_bool
*pval
)
6195 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6197 if(base
->fmtfl
& FMTFLAG_boolalpha
) {
6198 numpunct_char
*numpunct
= numpunct_char_use_facet(base
->loc
);
6199 basic_string_char false_bstr
, true_bstr
;
6200 const char *pfalse
, *ptrue
;
6202 numpunct_char_falsename(numpunct
, &false_bstr
);
6203 numpunct_char_truename(numpunct
, &true_bstr
);
6204 pfalse
= MSVCP_basic_string_char_c_str(&false_bstr
);
6205 ptrue
= MSVCP_basic_string_char_c_str(&true_bstr
);
6207 for(istreambuf_iterator_char_val(&first
); first
.strbuf
;
6208 istreambuf_iterator_char_inc(&first
)) {
6209 if(pfalse
&& *pfalse
&& first
.val
!=*pfalse
)
6211 if(ptrue
&& *ptrue
&& first
.val
!=*ptrue
)
6214 if(pfalse
&& *pfalse
&& ptrue
&& !*ptrue
)
6216 if(ptrue
&& *ptrue
&& pfalse
&& !*pfalse
)
6224 if((!pfalse
|| !*pfalse
) && (!ptrue
|| !*ptrue
))
6233 *state
|= IOSTATE_failbit
;
6235 MSVCP_basic_string_char_dtor(&false_bstr
);
6236 MSVCP_basic_string_char_dtor(&true_bstr
);
6240 LONG v
= _Stolx(tmp
, &end
, num_get_char__Getifld(this, tmp
,
6241 &first
, &last
, base
->fmtfl
, base
->loc
), &err
);
6243 if(end
!=tmp
&& err
==0 && (v
==0 || v
==1))
6246 *state
|= IOSTATE_failbit
;
6250 *state
|= IOSTATE_eofbit
;
6251 memcpy(ret
, &first
, sizeof(first
));
6255 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHAA_N@Z */
6256 /* ?get@?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AEAVios_base@2@AEAHAEA_N@Z */
6257 DEFINE_THISCALL_WRAPPER(num_get_char_get_bool
,36)
6258 istreambuf_iterator_char
*__thiscall
num_get_char_get_bool(const num_get
*this, istreambuf_iterator_char
*ret
,
6259 istreambuf_iterator_char first
, istreambuf_iterator_char last
, ios_base
*base
, int *state
, MSVCP_bool
*pval
)
6261 TRACE("(%p %p %p %p %p)\n", this, ret
, base
, state
, pval
);
6262 return call_num_get_char_do_get_bool(this, ret
, first
, last
, base
, state
, pval
);
6265 /* ?id@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@2V0locale@2@A */
6266 locale_id num_put_char_id
= {0};
6268 /* num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@6B@ */
6269 extern const vtable_ptr MSVCP_num_put_char_vtable
;
6271 /* ?_Init@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@IAEXABV_Locinfo@2@@Z */
6272 /* ?_Init@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@IEAAXAEBV_Locinfo@2@@Z */
6273 DEFINE_THISCALL_WRAPPER(num_put_char__Init
, 8)
6274 void __thiscall
num_put_char__Init(num_put
*this, const _Locinfo
*locinfo
)
6276 TRACE("(%p %p)\n", this, locinfo
);
6277 _Locinfo__Getcvt(locinfo
, &this->cvt
);
6280 /* ??0?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
6281 /* ??0?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
6282 DEFINE_THISCALL_WRAPPER(num_put_char_ctor_locinfo
, 12)
6283 num_put
* __thiscall
num_put_char_ctor_locinfo(num_put
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
6285 TRACE("(%p %p %ld)\n", this, locinfo
, refs
);
6287 locale_facet_ctor_refs(&this->facet
, refs
);
6288 this->facet
.vtable
= &MSVCP_num_put_char_vtable
;
6290 num_put_char__Init(this, locinfo
);
6294 /* ??0?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAE@I@Z */
6295 /* ??0?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAA@_K@Z */
6296 DEFINE_THISCALL_WRAPPER(num_put_char_ctor_refs
, 8)
6297 num_put
* __thiscall
num_put_char_ctor_refs(num_put
*this, MSVCP_size_t refs
)
6301 TRACE("(%p %lu)\n", this, refs
);
6303 _Locinfo_ctor(&locinfo
);
6304 num_put_char_ctor_locinfo(this, &locinfo
, refs
);
6305 _Locinfo_dtor(&locinfo
);
6309 /* ??_F?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QAEXXZ */
6310 /* ??_F?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEAAXXZ */
6311 DEFINE_THISCALL_WRAPPER(num_put_char_ctor
, 4)
6312 num_put
* __thiscall
num_put_char_ctor(num_put
*this)
6314 return num_put_char_ctor_refs(this, 0);
6317 /* ??1?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MAE@XZ */
6318 /* ??1?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEAA@XZ */
6319 DEFINE_THISCALL_WRAPPER(num_put_char_dtor
, 4)
6320 void __thiscall
num_put_char_dtor(num_put
*this)
6322 TRACE("(%p)\n", this);
6323 locale_facet_dtor(&this->facet
);
6326 DEFINE_THISCALL_WRAPPER(MSVCP_num_put_char_vector_dtor
, 8)
6327 num_put
* __thiscall
MSVCP_num_put_char_vector_dtor(num_put
*this, unsigned int flags
)
6329 TRACE("(%p %x)\n", this, flags
);
6331 /* we have an array, with the number of elements stored before the first object */
6332 int i
, *ptr
= (int *)this-1;
6334 for(i
=*ptr
-1; i
>=0; i
--)
6335 num_put_char_dtor(this+i
);
6336 MSVCRT_operator_delete(ptr
);
6338 num_put_char_dtor(this);
6340 MSVCRT_operator_delete(this);
6346 /* ?_Getcat@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
6347 /* ?_Getcat@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
6348 unsigned int __cdecl
num_put_char__Getcat(const locale_facet
**facet
, const locale
*loc
)
6350 TRACE("(%p %p)\n", facet
, loc
);
6352 if(facet
&& !*facet
) {
6355 *facet
= MSVCRT_operator_new(sizeof(num_put
));
6357 ERR("Out of memory\n");
6358 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
6362 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
6363 num_put_char_ctor_locinfo((num_put
*)*facet
, &locinfo
, 0);
6364 _Locinfo_dtor(&locinfo
);
6370 num_put
* num_put_char_use_facet(const locale
*loc
)
6372 static num_put
*obj
= NULL
;
6375 const locale_facet
*fac
;
6377 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
6378 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_put_char_id
));
6380 _Lockit_dtor(&lock
);
6381 return (num_put
*)fac
;
6385 _Lockit_dtor(&lock
);
6389 num_put_char__Getcat(&fac
, loc
);
6390 obj
= (num_put
*)fac
;
6391 locale_facet__Incref(&obj
->facet
);
6392 locale_facet_register(&obj
->facet
);
6393 _Lockit_dtor(&lock
);
6398 /* ?_Put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PBDI@Z */
6399 /* ?_Put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PEBD_K@Z */
6400 ostreambuf_iterator_char
* __cdecl
num_put_char__Put(const num_put
*this, ostreambuf_iterator_char
*ret
,
6401 ostreambuf_iterator_char dest
, const char *ptr
, MSVCP_size_t count
)
6403 TRACE("(%p %p %p %ld)\n", this, ret
, ptr
, count
);
6405 for(; count
>0; count
--)
6406 ostreambuf_iterator_char_put(&dest
, *ptr
++);
6412 /* ?_Putc@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PBDI@Z */
6413 /* ?_Putc@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PEBD_K@Z */
6414 ostreambuf_iterator_char
* __cdecl
num_put_char__Putc(const num_put
*this, ostreambuf_iterator_char
*ret
,
6415 ostreambuf_iterator_char dest
, const char *ptr
, MSVCP_size_t count
)
6417 TRACE("(%p %p %p %ld)\n", this, ret
, ptr
, count
);
6419 for(; count
>0; count
--)
6420 ostreambuf_iterator_char_put(&dest
, *ptr
++);
6426 /* ?_Putgrouped@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PBDID@Z */
6427 /* ?_Putgrouped@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@PEBD_KD@Z */
6428 ostreambuf_iterator_char
* __cdecl
num_put_char__Putgrouped(const num_put
*this, ostreambuf_iterator_char
*ret
,
6429 ostreambuf_iterator_char dest
, const char *ptr
, MSVCP_size_t count
, char delim
)
6431 FIXME("(%p %p %p %ld %d) stub\n", this, ret
, ptr
, count
, delim
);
6435 /* ?_Rep@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@DI@Z */
6436 /* ?_Rep@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@D_K@Z */
6437 ostreambuf_iterator_char
* __cdecl
num_put_char__Rep(const num_put
*this, ostreambuf_iterator_char
*ret
,
6438 ostreambuf_iterator_char dest
, char c
, MSVCP_size_t count
)
6440 TRACE("(%p %p %d %ld)\n", this, ret
, c
, count
);
6442 for(; count
>0; count
--)
6443 ostreambuf_iterator_char_put(&dest
, c
);
6449 /* ?_Ffmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAPADPADDH@Z */
6450 /* ?_Ffmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAPEADPEADDH@Z */
6451 char* __cdecl
num_put_char__Ffmt(const num_put
*this, char *fmt
, char spec
, int fmtfl
)
6453 int type
= fmtfl
& FMTFLAG_floatfield
;
6456 TRACE("(%p %p %d %d)\n", this, fmt
, spec
, fmtfl
);
6459 if(fmtfl
& FMTFLAG_showpos
)
6461 if(fmtfl
& FMTFLAG_showbase
)
6468 if(type
== FMTFLAG_fixed
)
6470 else if(type
== FMTFLAG_scientific
)
6471 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'E' : 'e';
6472 else if(type
== (FMTFLAG_fixed
|FMTFLAG_scientific
))
6473 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'A' : 'a';
6475 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'G' : 'g';
6481 /* ?_Fput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBDIIII@Z */
6482 /* ?_Fput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DPEBD_K333@Z */
6483 ostreambuf_iterator_char
* __cdecl
num_put_char__Fput(const num_put
*this, ostreambuf_iterator_char
*ret
,
6484 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, const char *buf
, MSVCP_size_t bef_point
,
6485 MSVCP_size_t aft_point
, MSVCP_size_t trailing
, MSVCP_size_t count
)
6487 FIXME("(%p %p %p %d %p %ld %ld %ld %ld) stub\n", this, ret
, base
,
6488 fill
, buf
, bef_point
, aft_point
, trailing
, count
);
6492 /* TODO: This function should be removed when num_put_char__Fput is implemented */
6493 static ostreambuf_iterator_char
* num_put_char_fput(const num_put
*this, ostreambuf_iterator_char
*ret
,
6494 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, char *buf
, MSVCP_size_t count
)
6496 numpunct_char
*numpunct
= numpunct_char_use_facet(base
->loc
);
6497 basic_string_char grouping_bstr
;
6498 const char *grouping
;
6499 char *p
, sep
= *localeconv()->decimal_point
;
6500 int cur_group
= 0, group_size
= 0;
6501 int adjustfield
= base
->fmtfl
& FMTFLAG_adjustfield
;
6504 TRACE("(%p %p %p %d %s %ld)\n", this, ret
, base
, fill
, buf
, count
);
6506 /* Change decimal point */
6507 for(p
=buf
; p
<buf
+count
; p
++) {
6509 *p
= numpunct_char_decimal_point(numpunct
);
6515 /* Add separators to number */
6516 numpunct_char_grouping(numpunct
, &grouping_bstr
);
6517 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
6518 sep
= grouping
[0] ? numpunct_char_thousands_sep(numpunct
) : '\0';
6520 for(; p
>buf
&& sep
&& grouping
[cur_group
]!=CHAR_MAX
; p
--) {
6522 if(group_size
== grouping
[cur_group
]) {
6524 if(grouping
[cur_group
+1])
6527 memmove(p
+1, p
, buf
+count
-p
);
6532 MSVCP_basic_string_char_dtor(&grouping_bstr
);
6534 /* Display number with padding */
6535 if(count
>= base
->wide
)
6538 pad
= base
->wide
-count
;
6541 if((adjustfield
& FMTFLAG_internal
) && (buf
[0]=='-' || buf
[0]=='+')) {
6542 num_put_char__Putc(this, &dest
, dest
, buf
, 1);
6545 if(adjustfield
!= FMTFLAG_left
) {
6546 num_put_char__Rep(this, ret
, dest
, fill
, pad
);
6549 num_put_char__Putc(this, &dest
, dest
, buf
, count
);
6550 return num_put_char__Rep(this, ret
, dest
, fill
, pad
);
6553 /* ?_Ifmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABAPADPADPBDH@Z */
6554 /* ?_Ifmt@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBAPEADPEADPEBDH@Z */
6555 char* __cdecl
num_put_char__Ifmt(const num_put
*this, char *fmt
, const char *spec
, int fmtfl
)
6557 int base
= fmtfl
& FMTFLAG_basefield
;
6560 TRACE("(%p %p %p %d)\n", this, fmt
, spec
, fmtfl
);
6563 if(fmtfl
& FMTFLAG_showpos
)
6565 if(fmtfl
& FMTFLAG_showbase
)
6572 if(base
== FMTFLAG_oct
)
6574 else if(base
== FMTFLAG_hex
)
6575 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'X' : 'x';
6583 /* ?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z */
6584 /* ?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DPEAD_K@Z */
6585 ostreambuf_iterator_char
* __cdecl
num_put_char__Iput(const num_put
*this, ostreambuf_iterator_char
*ret
,
6586 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, char *buf
, MSVCP_size_t count
)
6588 numpunct_char
*numpunct
= numpunct_char_use_facet(base
->loc
);
6589 basic_string_char grouping_bstr
;
6590 const char *grouping
;
6592 int cur_group
= 0, group_size
= 0;
6593 int adjustfield
= base
->fmtfl
& FMTFLAG_adjustfield
;
6596 TRACE("(%p %p %p %d %s %ld)\n", this, ret
, base
, fill
, buf
, count
);
6598 /* Add separators to number */
6599 numpunct_char_grouping(numpunct
, &grouping_bstr
);
6600 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
6601 sep
= grouping
[0] ? numpunct_char_thousands_sep(numpunct
) : '\0';
6603 for(p
=buf
+count
-1; p
>buf
&& sep
&& grouping
[cur_group
]!=CHAR_MAX
; p
--) {
6605 if(group_size
== grouping
[cur_group
]) {
6607 if(grouping
[cur_group
+1])
6610 memmove(p
+1, p
, buf
+count
-p
);
6615 MSVCP_basic_string_char_dtor(&grouping_bstr
);
6617 /* Display number with padding */
6618 if(count
>= base
->wide
)
6621 pad
= base
->wide
-count
;
6624 if((adjustfield
& FMTFLAG_internal
) && (buf
[0]=='-' || buf
[0]=='+')) {
6625 num_put_char__Putc(this, &dest
, dest
, buf
, 1);
6627 }else if((adjustfield
& FMTFLAG_internal
) && (buf
[1]=='x' || buf
[1]=='X')) {
6628 num_put_char__Putc(this, &dest
, dest
, buf
, 2);
6631 if(adjustfield
!= FMTFLAG_left
) {
6632 num_put_char__Rep(this, ret
, dest
, fill
, pad
);
6635 num_put_char__Putc(this, &dest
, dest
, buf
, count
);
6636 return num_put_char__Rep(this, ret
, dest
, fill
, pad
);
6639 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DJ@Z */
6640 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DJ@Z */
6641 #define call_num_put_char_do_put_long(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 28, ostreambuf_iterator_char*, \
6642 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, LONG), \
6643 (this, ret, dest, base, fill, v))
6644 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_long
, 28)
6645 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_long(const num_put
*this, ostreambuf_iterator_char
*ret
,
6646 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, LONG v
)
6648 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
6649 char fmt
[7]; /* strlen("%+#lld")+1 */
6651 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6653 return num_put_char__Iput(this, ret
, dest
, base
, fill
, tmp
,
6654 sprintf(tmp
, num_put_char__Ifmt(this, fmt
, "ld", base
->fmtfl
), v
));
6657 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DJ@Z */
6658 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DJ@Z */
6659 DEFINE_THISCALL_WRAPPER(num_put_char_put_long
, 28)
6660 ostreambuf_iterator_char
* __thiscall
num_put_char_put_long(const num_put
*this, ostreambuf_iterator_char
*ret
,
6661 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, LONG v
)
6663 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6664 return call_num_put_char_do_put_long(this, ret
, dest
, base
, fill
, v
);
6667 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DK@Z */
6668 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DK@Z */
6669 #define call_num_put_char_do_put_ulong(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 24, ostreambuf_iterator_char*, \
6670 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, ULONG), \
6671 (this, ret, dest, base, fill, v))
6672 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_ulong
, 28)
6673 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_ulong(const num_put
*this, ostreambuf_iterator_char
*ret
,
6674 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, ULONG v
)
6676 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
6677 char fmt
[7]; /* strlen("%+#lld")+1 */
6679 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6681 return num_put_char__Iput(this, ret
, dest
, base
, fill
, tmp
,
6682 sprintf(tmp
, num_put_char__Ifmt(this, fmt
, "lu", base
->fmtfl
), v
));
6685 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DK@Z */
6686 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DK@Z */
6687 DEFINE_THISCALL_WRAPPER(num_put_char_put_ulong
, 28)
6688 ostreambuf_iterator_char
* __thiscall
num_put_char_put_ulong(const num_put
*this, ostreambuf_iterator_char
*ret
,
6689 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, ULONG v
)
6691 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6692 return call_num_put_char_do_put_ulong(this, ret
, dest
, base
, fill
, v
);
6695 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z */
6696 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DN@Z */
6697 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z */
6698 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DO@Z */
6699 #define call_num_put_char_do_put_double(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 12, ostreambuf_iterator_char*, \
6700 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, double), \
6701 (this, ret, dest, base, fill, v))
6702 #define call_num_put_char_do_put_ldouble(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 8, ostreambuf_iterator_char*, \
6703 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, double), \
6704 (this, ret, dest, base, fill, v))
6705 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_double
, 32)
6706 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_double(const num_put
*this, ostreambuf_iterator_char
*ret
,
6707 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, double v
)
6710 char fmt
[8]; /* strlen("%+#.*lg")+1 */
6713 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
6715 num_put_char__Ffmt(this, fmt
, '\0', base
->fmtfl
);
6716 size
= _scprintf(fmt
, base
->prec
, v
);
6718 /* TODO: don't use dynamic allocation */
6719 tmp
= MSVCRT_operator_new(size
*2);
6721 ERR("Out of memory\n");
6722 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
6724 num_put_char_fput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, fmt
, base
->prec
, v
));
6725 MSVCRT_operator_delete(tmp
);
6729 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z */
6730 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DN@Z */
6731 DEFINE_THISCALL_WRAPPER(num_put_char_put_double
, 32)
6732 ostreambuf_iterator_char
* __thiscall
num_put_char_put_double(const num_put
*this, ostreambuf_iterator_char
*ret
,
6733 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, double v
)
6735 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
6736 return call_num_put_char_do_put_double(this, ret
, dest
, base
, fill
, v
);
6739 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z */
6740 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DO@Z */
6741 DEFINE_THISCALL_WRAPPER(num_put_char_put_ldouble
, 32)
6742 ostreambuf_iterator_char
* __thiscall
num_put_char_put_ldouble(const num_put
*this, ostreambuf_iterator_char
*ret
,
6743 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, double v
)
6745 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
6746 return call_num_put_char_do_put_ldouble(this, ret
, dest
, base
, fill
, v
);
6749 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBX@Z */
6750 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DPEBX@Z */
6751 #define call_num_put_char_do_put_ptr(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 4, ostreambuf_iterator_char*, \
6752 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, const void*), \
6753 (this, ret, dest, base, fill, v))
6754 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_ptr
, 28)
6755 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_ptr(const num_put
*this, ostreambuf_iterator_char
*ret
,
6756 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, const void *v
)
6758 char tmp
[17]; /* 8(16^8==2^64)*2(separators beetwen every digit) + 1 */
6760 TRACE("(%p %p %p %d %p)\n", this, ret
, base
, fill
, v
);
6762 return num_put_char__Iput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, "%p", v
));
6765 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBX@Z */
6766 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@DPEBX@Z */
6767 DEFINE_THISCALL_WRAPPER(num_put_char_put_ptr
, 28)
6768 ostreambuf_iterator_char
* __thiscall
num_put_char_put_ptr(const num_put
*this, ostreambuf_iterator_char
*ret
,
6769 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, const void *v
)
6771 TRACE("(%p %p %p %d %p)\n", this, ret
, base
, fill
, v
);
6772 return call_num_put_char_do_put_ptr(this, ret
, dest
, base
, fill
, v
);
6775 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_J@Z */
6776 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_J@Z */
6777 #define call_num_put_char_do_put_int64(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 20, ostreambuf_iterator_char*, \
6778 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, __int64), \
6779 (this, ret, dest, base, fill, v))
6780 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_int64
, 32)
6781 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_int64(const num_put
*this, ostreambuf_iterator_char
*ret
,
6782 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, __int64 v
)
6784 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
6785 char fmt
[7]; /* strlen("%+#lld")+1 */
6787 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
6789 return num_put_char__Iput(this, ret
, dest
, base
, fill
, tmp
,
6790 sprintf(tmp
, num_put_char__Ifmt(this, fmt
, "lld", base
->fmtfl
), v
));
6793 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_J@Z */
6794 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_J@Z */
6795 DEFINE_THISCALL_WRAPPER(num_put_char_put_int64
, 32)
6796 ostreambuf_iterator_char
* __thiscall
num_put_char_put_int64(const num_put
*this, ostreambuf_iterator_char
*ret
,
6797 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, __int64 v
)
6799 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
6800 return call_num_put_char_do_put_int64(this, ret
, dest
, base
, fill
, v
);
6803 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_K@Z */
6804 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_K@Z */
6805 #define call_num_put_char_do_put_uint64(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 16, ostreambuf_iterator_char*, \
6806 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, unsigned __int64), \
6807 (this, ret, dest, base, fill, v))
6808 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_uint64
, 32)
6809 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_uint64(const num_put
*this, ostreambuf_iterator_char
*ret
,
6810 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, unsigned __int64 v
)
6812 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
6813 char fmt
[7]; /* strlen("%+#lld")+1 */
6815 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
6817 return num_put_char__Iput(this, ret
, dest
, base
, fill
, tmp
,
6818 sprintf(tmp
, num_put_char__Ifmt(this, fmt
, "llu", base
->fmtfl
), v
));
6821 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_K@Z */
6822 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_K@Z */
6823 DEFINE_THISCALL_WRAPPER(num_put_char_put_uint64
, 32)
6824 ostreambuf_iterator_char
* __thiscall
num_put_char_put_uint64(const num_put
*this, ostreambuf_iterator_char
*ret
,
6825 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, unsigned __int64 v
)
6827 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
6828 return call_num_put_char_do_put_uint64(this, ret
, dest
, base
, fill
, v
);
6831 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z */
6832 /* ?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_N@Z */
6833 #define call_num_put_char_do_put_bool(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 32, ostreambuf_iterator_char*, \
6834 (const num_put*, ostreambuf_iterator_char*, ostreambuf_iterator_char, ios_base*, char, MSVCP_bool), \
6835 (this, ret, dest, base, fill, v))
6836 DEFINE_THISCALL_WRAPPER(num_put_char_do_put_bool
, 28)
6837 ostreambuf_iterator_char
* __thiscall
num_put_char_do_put_bool(const num_put
*this, ostreambuf_iterator_char
*ret
,
6838 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, MSVCP_bool v
)
6840 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6842 if(base
->fmtfl
& FMTFLAG_boolalpha
) {
6843 numpunct_char
*numpunct
= numpunct_char_use_facet(base
->loc
);
6844 basic_string_char str
;
6845 MSVCP_size_t pad
, len
;
6848 numpunct_char_truename(numpunct
, &str
);
6850 numpunct_char_falsename(numpunct
, &str
);
6852 len
= MSVCP_basic_string_char_length(&str
);
6853 pad
= (len
>base
->wide
? 0 : base
->wide
-len
);
6856 if((base
->fmtfl
& FMTFLAG_adjustfield
) != FMTFLAG_left
) {
6857 num_put_char__Rep(this, &dest
, dest
, fill
, pad
);
6860 num_put_char__Putc(this, &dest
, dest
, MSVCP_basic_string_char_c_str(&str
), len
);
6861 MSVCP_basic_string_char_dtor(&str
);
6862 return num_put_char__Rep(this, ret
, dest
, fill
, pad
);
6865 return num_put_char_put_long(this, ret
, dest
, base
, fill
, v
);
6868 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z */
6869 /* ?put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AEAVios_base@2@D_N@Z */
6870 DEFINE_THISCALL_WRAPPER(num_put_char_put_bool
, 28)
6871 ostreambuf_iterator_char
* __thiscall
num_put_char_put_bool(const num_put
*this, ostreambuf_iterator_char
*ret
,
6872 ostreambuf_iterator_char dest
, ios_base
*base
, char fill
, MSVCP_bool v
)
6874 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
6875 return call_num_put_char_do_put_bool(this, ret
, dest
, base
, fill
, v
);
6878 /* ?id@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@2V0locale@2@A */
6879 locale_id num_put_wchar_id
= {0};
6880 /* ?id@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@2V0locale@2@A */
6881 locale_id num_put_short_id
= {0};
6883 /* num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@6B@ */
6884 extern const vtable_ptr MSVCP_num_put_wchar_vtable
;
6885 /* num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@6B@ */
6886 extern const vtable_ptr MSVCP_num_put_short_vtable
;
6888 /* ?_Init@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@IAEXABV_Locinfo@2@@Z */
6889 /* ?_Init@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@IEAAXAEBV_Locinfo@2@@Z */
6890 DEFINE_THISCALL_WRAPPER(num_put_wchar__Init
, 8)
6891 void __thiscall
num_put_wchar__Init(num_put
*this, const _Locinfo
*locinfo
)
6893 TRACE("(%p %p)\n", this, locinfo
);
6894 _Locinfo__Getcvt(locinfo
, &this->cvt
);
6897 /* ??0?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
6898 /* ??0?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
6899 DEFINE_THISCALL_WRAPPER(num_put_wchar_ctor_locinfo
, 12)
6900 num_put
* __thiscall
num_put_wchar_ctor_locinfo(num_put
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
6902 TRACE("(%p %p %ld)\n", this, locinfo
, refs
);
6904 locale_facet_ctor_refs(&this->facet
, refs
);
6905 this->facet
.vtable
= &MSVCP_num_put_wchar_vtable
;
6907 num_put_wchar__Init(this, locinfo
);
6911 /* ??0?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QAE@ABV_Locinfo@1@I@Z */
6912 /* ??0?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEAA@AEBV_Locinfo@1@_K@Z */
6913 DEFINE_THISCALL_WRAPPER(num_put_short_ctor_locinfo
, 12)
6914 num_put
* __thiscall
num_put_short_ctor_locinfo(num_put
*this, const _Locinfo
*locinfo
, MSVCP_size_t refs
)
6916 num_put_wchar_ctor_locinfo(this, locinfo
, refs
);
6917 this->facet
.vtable
= &MSVCP_num_put_short_vtable
;
6921 /* ??0?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAE@I@Z */
6922 /* ??0?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAA@_K@Z */
6923 DEFINE_THISCALL_WRAPPER(num_put_wchar_ctor_refs
, 8)
6924 num_put
* __thiscall
num_put_wchar_ctor_refs(num_put
*this, MSVCP_size_t refs
)
6928 TRACE("(%p %lu)\n", this, refs
);
6930 _Locinfo_ctor(&locinfo
);
6931 num_put_wchar_ctor_locinfo(this, &locinfo
, refs
);
6932 _Locinfo_dtor(&locinfo
);
6936 /* ??0?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QAE@I@Z */
6937 /* ??0?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEAA@_K@Z */
6938 DEFINE_THISCALL_WRAPPER(num_put_short_ctor_refs
, 8)
6939 num_put
* __thiscall
num_put_short_ctor_refs(num_put
*this, MSVCP_size_t refs
)
6941 num_put_wchar_ctor_refs(this, refs
);
6942 this->facet
.vtable
= &MSVCP_num_put_short_vtable
;
6946 /* ??_F?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QAEXXZ */
6947 /* ??_F?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEAAXXZ */
6948 DEFINE_THISCALL_WRAPPER(num_put_wchar_ctor
, 4)
6949 num_put
* __thiscall
num_put_wchar_ctor(num_put
*this)
6951 return num_put_wchar_ctor_refs(this, 0);
6954 /* ??_F?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QAEXXZ */
6955 /* ??_F?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEAAXXZ */
6956 DEFINE_THISCALL_WRAPPER(num_put_short_ctor
, 4)
6957 num_put
* __thiscall
num_put_short_ctor(num_put
*this)
6959 return num_put_short_ctor_refs(this, 0);
6962 /* ??1?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MAE@XZ */
6963 /* ??1?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEAA@XZ */
6964 /* ??1?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MAE@XZ */
6965 /* ??1?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEAA@XZ */
6966 DEFINE_THISCALL_WRAPPER(num_put_wchar_dtor
, 4)
6967 void __thiscall
num_put_wchar_dtor(num_put
*this)
6969 TRACE("(%p)\n", this);
6970 locale_facet_dtor(&this->facet
);
6973 DEFINE_THISCALL_WRAPPER(MSVCP_num_put_wchar_vector_dtor
, 8)
6974 num_put
* __thiscall
MSVCP_num_put_wchar_vector_dtor(num_put
*this, unsigned int flags
)
6976 TRACE("(%p %x)\n", this, flags
);
6978 /* we have an array, with the number of elements stored before the first object */
6979 int i
, *ptr
= (int *)this-1;
6981 for(i
=*ptr
-1; i
>=0; i
--)
6982 num_put_wchar_dtor(this+i
);
6983 MSVCRT_operator_delete(ptr
);
6985 num_put_wchar_dtor(this);
6987 MSVCRT_operator_delete(this);
6993 DEFINE_THISCALL_WRAPPER(MSVCP_num_put_short_vector_dtor
, 8)
6994 num_put
* __thiscall
MSVCP_num_put_short_vector_dtor(num_put
*this, unsigned int flags
)
6996 return MSVCP_num_put_wchar_vector_dtor(this, flags
);
6999 /* ?_Getcat@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
7000 /* ?_Getcat@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
7001 unsigned int __cdecl
num_put_wchar__Getcat(const locale_facet
**facet
, const locale
*loc
)
7003 TRACE("(%p %p)\n", facet
, loc
);
7005 if(facet
&& !*facet
) {
7008 *facet
= MSVCRT_operator_new(sizeof(num_put
));
7010 ERR("Out of memory\n");
7011 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7015 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
7016 num_put_wchar_ctor_locinfo((num_put
*)*facet
, &locinfo
, 0);
7017 _Locinfo_dtor(&locinfo
);
7023 /* ?_Getcat@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
7024 /* ?_Getcat@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
7025 unsigned int __cdecl
num_put_short__Getcat(const locale_facet
**facet
, const locale
*loc
)
7027 TRACE("(%p %p)\n", facet
, loc
);
7029 if(facet
&& !*facet
) {
7032 *facet
= MSVCRT_operator_new(sizeof(num_put
));
7034 ERR("Out of memory\n");
7035 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7039 _Locinfo_ctor_cstr(&locinfo
, MSVCP_basic_string_char_c_str(&loc
->ptr
->name
));
7040 num_put_short_ctor_locinfo((num_put
*)*facet
, &locinfo
, 0);
7041 _Locinfo_dtor(&locinfo
);
7047 num_put
* num_put_wchar_use_facet(const locale
*loc
)
7049 static num_put
*obj
= NULL
;
7052 const locale_facet
*fac
;
7054 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
7055 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_put_wchar_id
));
7057 _Lockit_dtor(&lock
);
7058 return (num_put
*)fac
;
7062 _Lockit_dtor(&lock
);
7066 num_put_wchar__Getcat(&fac
, loc
);
7067 obj
= (num_put
*)fac
;
7068 locale_facet__Incref(&obj
->facet
);
7069 locale_facet_register(&obj
->facet
);
7070 _Lockit_dtor(&lock
);
7075 num_put
* num_put_short_use_facet(const locale
*loc
)
7077 static num_put
*obj
= NULL
;
7080 const locale_facet
*fac
;
7082 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
7083 fac
= locale__Getfacet(loc
, locale_id_operator_size_t(&num_put_short_id
));
7085 _Lockit_dtor(&lock
);
7086 return (num_put
*)fac
;
7090 _Lockit_dtor(&lock
);
7094 num_put_short__Getcat(&fac
, loc
);
7095 obj
= (num_put
*)fac
;
7096 locale_facet__Incref(&obj
->facet
);
7097 locale_facet_register(&obj
->facet
);
7098 _Lockit_dtor(&lock
);
7103 /* ?_Put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PB_WI@Z */
7104 /* ?_Put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PEB_W_K@Z */
7105 /* ?_Put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PBGI@Z */
7106 /* ?_Put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PEBG_K@Z */
7107 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Put(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7108 ostreambuf_iterator_wchar dest
, const wchar_t *ptr
, MSVCP_size_t count
)
7110 TRACE("(%p %p %s %ld)\n", this, ret
, debugstr_wn(ptr
, count
), count
);
7112 for(; count
>0; count
--)
7113 ostreambuf_iterator_wchar_put(&dest
, *ptr
++);
7119 /* ?_Putc@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PBDI@Z */
7120 /* ?_Putc@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PEBD_K@Z */
7121 /* ?_Putc@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PBDI@Z */
7122 /* ?_Putc@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PEBD_K@Z */
7123 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Putc(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7124 ostreambuf_iterator_wchar dest
, const char *ptr
, MSVCP_size_t count
)
7129 TRACE("(%p %p %s %ld)\n", this, ret
, debugstr_an(ptr
, count
), count
);
7131 for(; count
>0; count
--) {
7132 if(_Mbrtowc(&ch
, ptr
++, 1, &state
, &this->cvt
) == 1)
7133 ostreambuf_iterator_wchar_put(&dest
, ch
);
7140 /* ?_Putgrouped@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PBDI_W@Z */
7141 /* ?_Putgrouped@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@PEBD_K_W@Z */
7142 /* ?_Putgrouped@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PBDIG@Z */
7143 /* ?_Putgrouped@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@PEBD_KG@Z */
7144 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Putgrouped(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7145 ostreambuf_iterator_wchar dest
, const char *ptr
, MSVCP_size_t count
, wchar_t delim
)
7147 FIXME("(%p %p %p %ld %d) stub\n", this, ret
, ptr
, count
, delim
);
7151 /* ?_Rep@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@_WI@Z */
7152 /* ?_Rep@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@_W_K@Z */
7153 /* ?_Rep@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@GI@Z */
7154 /* ?_Rep@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@G_K@Z */
7155 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Rep(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7156 ostreambuf_iterator_wchar dest
, wchar_t c
, MSVCP_size_t count
)
7158 TRACE("(%p %p %d %ld)\n", this, ret
, c
, count
);
7160 for(; count
>0; count
--)
7161 ostreambuf_iterator_wchar_put(&dest
, c
);
7167 /* ?_Ffmt@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAPADPADDH@Z */
7168 /* ?_Ffmt@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAPEADPEADDH@Z */
7169 /* ?_Ffmt@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAPADPADDH@Z */
7170 /* ?_Ffmt@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAPEADPEADDH@Z */
7171 char* __cdecl
num_put_wchar__Ffmt(const num_put
*this, char *fmt
, char spec
, int fmtfl
)
7173 int type
= fmtfl
& FMTFLAG_floatfield
;
7176 TRACE("(%p %p %d %d)\n", this, fmt
, spec
, fmtfl
);
7179 if(fmtfl
& FMTFLAG_showpos
)
7181 if(fmtfl
& FMTFLAG_showbase
)
7188 if(type
== FMTFLAG_fixed
)
7190 else if(type
== FMTFLAG_scientific
)
7191 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'E' : 'e';
7192 else if(type
== (FMTFLAG_fixed
|FMTFLAG_scientific
))
7193 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'A' : 'a';
7195 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'G' : 'g';
7201 /* ?_Fput@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WPBDIIII@Z */
7202 /* ?_Fput@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WPEBD_K444@Z */
7203 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Fput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7204 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, const char *buf
, MSVCP_size_t bef_point
,
7205 MSVCP_size_t aft_point
, MSVCP_size_t trailing
, MSVCP_size_t count
)
7207 FIXME("(%p %p %p %d %p %ld %ld %ld %ld) stub\n", this, ret
, base
,
7208 fill
, buf
, bef_point
, aft_point
, trailing
, count
);
7212 /* ?_Fput@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GPBDIIII@Z */
7213 /* ?_Fput@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GPEBD_K333@Z */
7214 ostreambuf_iterator_wchar
* __cdecl
num_put_short__Fput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7215 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, const char *buf
, MSVCP_size_t bef_point
,
7216 MSVCP_size_t aft_point
, MSVCP_size_t trailing
, MSVCP_size_t count
)
7218 FIXME("(%p %p %p %d %p %ld %ld %ld %ld) stub\n", this, ret
, base
,
7219 fill
, buf
, bef_point
, aft_point
, trailing
, count
);
7223 /* TODO: This function should be removed when num_put_wchar__Fput is implemented */
7224 static ostreambuf_iterator_wchar
* num_put__fput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7225 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, char *buf
,
7226 MSVCP_size_t count
, numpunct_wchar
*numpunct
)
7228 basic_string_char grouping_bstr
;
7229 const char *grouping
;
7230 char *p
, dec_point
= *localeconv()->decimal_point
;
7232 int cur_group
= 0, group_size
= 0;
7233 int adjustfield
= base
->fmtfl
& FMTFLAG_adjustfield
;
7234 MSVCP_size_t i
, pad
;
7236 TRACE("(%p %p %p %d %s %ld)\n", this, ret
, base
, fill
, buf
, count
);
7238 for(p
=buf
; p
<buf
+count
; p
++) {
7244 /* Add separators to number */
7245 numpunct_wchar_grouping(numpunct
, &grouping_bstr
);
7246 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
7247 sep
= grouping
[0] ? numpunct_wchar_thousands_sep(numpunct
) : '\0';
7249 for(; p
>buf
&& sep
&& grouping
[cur_group
]!=CHAR_MAX
; p
--) {
7251 if(group_size
== grouping
[cur_group
]) {
7253 if(grouping
[cur_group
+1])
7256 memmove(p
+1, p
, buf
+count
-p
);
7257 *p
= '\0'; /* mark thousands separator positions */
7261 MSVCP_basic_string_char_dtor(&grouping_bstr
);
7263 /* Display number with padding */
7264 if(count
>= base
->wide
)
7267 pad
= base
->wide
-count
;
7270 if((adjustfield
& FMTFLAG_internal
) && (buf
[0]=='-' || buf
[0]=='+')) {
7271 num_put_wchar__Putc(this, &dest
, dest
, buf
, 1);
7274 if(adjustfield
!= FMTFLAG_left
) {
7275 num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7279 for(i
=0; i
<count
; i
++) {
7280 if(buf
[i
] == dec_point
)
7281 num_put_wchar__Rep(this, &dest
, dest
, numpunct_wchar_decimal_point(numpunct
), 1);
7283 num_put_wchar__Rep(this, &dest
, dest
, sep
, 1);
7285 num_put_wchar__Putc(this, &dest
, dest
, buf
+i
, 1);
7288 return num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7291 /* ?_Ifmt@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABAPADPADPBDH@Z */
7292 /* ?_Ifmt@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBAPEADPEADPEBDH@Z */
7293 /* ?_Ifmt@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABAPADPADPBDH@Z */
7294 /* ?_Ifmt@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBAPEADPEADPEBDH@Z */
7295 char* __cdecl
num_put_wchar__Ifmt(const num_put
*this, char *fmt
, const char *spec
, int fmtfl
)
7297 int base
= fmtfl
& FMTFLAG_basefield
;
7300 TRACE("(%p %p %p %d)\n", this, fmt
, spec
, fmtfl
);
7303 if(fmtfl
& FMTFLAG_showpos
)
7305 if(fmtfl
& FMTFLAG_showbase
)
7312 if(base
== FMTFLAG_oct
)
7314 else if(base
== FMTFLAG_hex
)
7315 *p
++ = (fmtfl
& FMTFLAG_uppercase
) ? 'X' : 'x';
7323 static ostreambuf_iterator_wchar
* __cdecl
num_put__Iput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7324 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, char *buf
,
7325 MSVCP_size_t count
, numpunct_wchar
*numpunct
)
7327 basic_string_char grouping_bstr
;
7328 const char *grouping
;
7331 int cur_group
= 0, group_size
= 0;
7332 int adjustfield
= base
->fmtfl
& FMTFLAG_adjustfield
;
7333 MSVCP_size_t i
, pad
;
7335 TRACE("(%p %p %p %d %s %ld)\n", this, ret
, base
, fill
, buf
, count
);
7337 /* Add separators to number */
7338 numpunct_wchar_grouping(numpunct
, &grouping_bstr
);
7339 grouping
= MSVCP_basic_string_char_c_str(&grouping_bstr
);
7340 sep
= grouping
[0] ? numpunct_wchar_thousands_sep(numpunct
) : '\0';
7342 for(p
=buf
+count
-1; p
>buf
&& sep
&& grouping
[cur_group
]!=CHAR_MAX
; p
--) {
7344 if(group_size
== grouping
[cur_group
]) {
7346 if(grouping
[cur_group
+1])
7349 memmove(p
+1, p
, buf
+count
-p
);
7350 *p
= '\0'; /* mark thousands separator positions */
7354 MSVCP_basic_string_char_dtor(&grouping_bstr
);
7356 /* Display number with padding */
7357 if(count
>= base
->wide
)
7360 pad
= base
->wide
-count
;
7363 if((adjustfield
& FMTFLAG_internal
) && (buf
[0]=='-' || buf
[0]=='+')) {
7364 num_put_wchar__Putc(this, &dest
, dest
, buf
, 1);
7366 }else if((adjustfield
& FMTFLAG_internal
) && (buf
[1]=='x' || buf
[1]=='X')) {
7367 num_put_wchar__Putc(this, &dest
, dest
, buf
, 2);
7370 if(adjustfield
!= FMTFLAG_left
) {
7371 num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7375 for(i
=0; i
<count
; i
++) {
7377 num_put_wchar__Rep(this, &dest
, dest
, sep
, 1);
7379 num_put_wchar__Putc(this, &dest
, dest
, buf
+i
, 1);
7382 return num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7385 /* ?_Iput@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WPADI@Z */
7386 /* ?_Iput@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WPEAD_K@Z */
7387 ostreambuf_iterator_wchar
* __cdecl
num_put_wchar__Iput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7388 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, char *buf
, MSVCP_size_t count
)
7390 return num_put__Iput(this, ret
, dest
, base
, fill
, buf
, count
, numpunct_wchar_use_facet(base
->loc
));
7393 /* ?_Iput@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GPADI@Z */
7394 /* ?_Iput@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@AEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GPEAD_K@Z */
7395 ostreambuf_iterator_wchar
* __cdecl
num_put_short__Iput(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7396 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, char *buf
, MSVCP_size_t count
)
7398 return num_put__Iput(this, ret
, dest
, base
, fill
, buf
, count
, numpunct_short_use_facet(base
->loc
));
7401 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WJ@Z */
7402 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WJ@Z */
7403 #define call_num_put_wchar_do_put_long(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 28, ostreambuf_iterator_wchar*, \
7404 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, LONG), \
7405 (this, ret, dest, base, fill, v))
7406 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_long
, 28)
7407 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_long(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7408 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, LONG v
)
7410 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7411 char fmt
[7]; /* strlen("%+#lld")+1 */
7413 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7415 return num_put_wchar__Iput(this, ret
, dest
, base
, fill
, tmp
,
7416 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "ld", base
->fmtfl
), v
));
7419 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GJ@Z */
7420 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GJ@Z */
7421 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_long
, 28)
7422 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_long(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7423 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, LONG v
)
7425 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7426 char fmt
[7]; /* strlen("%+#lld")+1 */
7428 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7430 return num_put_short__Iput(this, ret
, dest
, base
, fill
, tmp
,
7431 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "ld", base
->fmtfl
), v
));
7434 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WJ@Z */
7435 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WJ@Z */
7436 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GJ@Z */
7437 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GJ@Z */
7438 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_long
, 28)
7439 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_long(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7440 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, LONG v
)
7442 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7443 return call_num_put_wchar_do_put_long(this, ret
, dest
, base
, fill
, v
);
7446 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WK@Z */
7447 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WK@Z */
7448 #define call_num_put_wchar_do_put_ulong(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 24, ostreambuf_iterator_wchar*, \
7449 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, ULONG), \
7450 (this, ret, dest, base, fill, v))
7451 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_ulong
, 28)
7452 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_ulong(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7453 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, ULONG v
)
7455 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7456 char fmt
[7]; /* strlen("%+#lld")+1 */
7458 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7460 return num_put_wchar__Iput(this, ret
, dest
, base
, fill
, tmp
,
7461 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "lu", base
->fmtfl
), v
));
7464 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GK@Z */
7465 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GK@Z */
7466 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_ulong
, 28)
7467 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_ulong(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7468 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, ULONG v
)
7470 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7471 char fmt
[7]; /* strlen("%+#lld")+1 */
7473 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7475 return num_put_short__Iput(this, ret
, dest
, base
, fill
, tmp
,
7476 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "lu", base
->fmtfl
), v
));
7479 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WK@Z */
7480 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WK@Z */
7481 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GK@Z */
7482 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GK@Z */
7483 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_ulong
, 28)
7484 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_ulong(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7485 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, ULONG v
)
7487 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7488 return call_num_put_wchar_do_put_ulong(this, ret
, dest
, base
, fill
, v
);
7491 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WN@Z */
7492 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WN@Z */
7493 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WO@Z */
7494 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WO@Z */
7495 #define call_num_put_wchar_do_put_double(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 12, ostreambuf_iterator_wchar*, \
7496 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, double), \
7497 (this, ret, dest, base, fill, v))
7498 #define call_num_put_wchar_do_put_ldouble(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 8, ostreambuf_iterator_wchar*, \
7499 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, double), \
7500 (this, ret, dest, base, fill, v))
7501 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_double
, 32)
7502 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_double(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7503 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, double v
)
7506 char fmt
[8]; /* strlen("%+#.*lg")+1 */
7509 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
7511 num_put_wchar__Ffmt(this, fmt
, '\0', base
->fmtfl
);
7512 size
= _scprintf(fmt
, base
->prec
, v
);
7514 /* TODO: don't use dynamic allocation */
7515 tmp
= MSVCRT_operator_new(size
*2);
7517 ERR("Out of memory\n");
7518 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7520 num_put__fput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, fmt
, base
->prec
, v
),
7521 numpunct_wchar_use_facet(base
->loc
));
7522 MSVCRT_operator_delete(tmp
);
7526 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GN@Z */
7527 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GN@Z */
7528 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GO@Z */
7529 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GO@Z */
7530 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_double
, 32)
7531 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_double(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7532 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, double v
)
7535 char fmt
[8]; /* strlen("%+#.*lg")+1 */
7538 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
7540 num_put_wchar__Ffmt(this, fmt
, '\0', base
->fmtfl
);
7541 size
= _scprintf(fmt
, base
->prec
, v
);
7543 /* TODO: don't use dynamic allocation */
7544 tmp
= MSVCRT_operator_new(size
*2);
7546 ERR("Out of memory\n");
7547 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7549 num_put__fput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, fmt
, base
->prec
, v
),
7550 numpunct_short_use_facet(base
->loc
));
7551 MSVCRT_operator_delete(tmp
);
7555 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WN@Z */
7556 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WN@Z */
7557 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GN@Z */
7558 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GN@Z */
7559 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_double
, 32)
7560 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_double(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7561 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, double v
)
7563 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
7564 return call_num_put_wchar_do_put_double(this, ret
, dest
, base
, fill
, v
);
7567 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WO@Z */
7568 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WO@Z */
7569 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GO@Z */
7570 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GO@Z */
7571 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_ldouble
, 32)
7572 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_ldouble(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7573 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, double v
)
7575 TRACE("(%p %p %p %d %lf)\n", this, ret
, base
, fill
, v
);
7576 return call_num_put_wchar_do_put_ldouble(this, ret
, dest
, base
, fill
, v
);
7579 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WPBX@Z */
7580 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WPEBX@Z */
7581 #define call_num_put_wchar_do_put_ptr(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 4, ostreambuf_iterator_wchar*, \
7582 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, const void*), \
7583 (this, ret, dest, base, fill, v))
7584 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_ptr
, 28)
7585 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_ptr(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7586 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, const void *v
)
7588 char tmp
[17]; /* 8(16^8==2^64)*2(separators beetwen every digit) + 1 */
7590 TRACE("(%p %p %p %d %p)\n", this, ret
, base
, fill
, v
);
7592 return num_put_wchar__Iput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, "%p", v
));
7595 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GPBX@Z */
7596 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GPEBX@Z */
7597 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_ptr
, 28)
7598 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_ptr(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7599 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, const void *v
)
7601 char tmp
[17]; /* 8(16^8==2^64)*2(separators beetwen every digit) + 1 */
7603 TRACE("(%p %p %p %d %p)\n", this, ret
, base
, fill
, v
);
7605 return num_put_short__Iput(this, ret
, dest
, base
, fill
, tmp
, sprintf(tmp
, "%p", v
));
7608 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_WPBX@Z */
7609 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_WPEBX@Z */
7610 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@GPBX@Z */
7611 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@GPEBX@Z */
7612 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_ptr
, 28)
7613 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_ptr(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7614 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, const void *v
)
7616 TRACE("(%p %p %p %d %p)\n", this, ret
, base
, fill
, v
);
7617 return call_num_put_wchar_do_put_ptr(this, ret
, dest
, base
, fill
, v
);
7620 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_J@Z */
7621 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_J@Z */
7622 #define call_num_put_wchar_do_put_int64(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 20, ostreambuf_iterator_wchar*, \
7623 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, __int64), \
7624 (this, ret, dest, base, fill, v))
7625 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_int64
, 32)
7626 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_int64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7627 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, __int64 v
)
7629 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7630 char fmt
[7]; /* strlen("%+#lld")+1 */
7632 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7634 return num_put_wchar__Iput(this, ret
, dest
, base
, fill
, tmp
,
7635 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "lld", base
->fmtfl
), v
));
7638 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_J@Z */
7639 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_J@Z */
7640 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_int64
, 32)
7641 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_int64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7642 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, __int64 v
)
7644 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7645 char fmt
[7]; /* strlen("%+#lld")+1 */
7647 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7649 return num_put_short__Iput(this, ret
, dest
, base
, fill
, tmp
,
7650 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "lld", base
->fmtfl
), v
));
7653 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_J@Z */
7654 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_J@Z */
7655 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_J@Z */
7656 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_J@Z */
7657 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_int64
, 32)
7658 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_int64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7659 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, __int64 v
)
7661 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7662 return call_num_put_wchar_do_put_int64(this, ret
, dest
, base
, fill
, v
);
7665 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_K@Z */
7666 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_K@Z */
7667 #define call_num_put_wchar_do_put_uint64(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 16, ostreambuf_iterator_wchar*, \
7668 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, unsigned __int64), \
7669 (this, ret, dest, base, fill, v))
7670 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_uint64
, 32)
7671 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_uint64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7672 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, unsigned __int64 v
)
7674 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7675 char fmt
[7]; /* strlen("%+#lld")+1 */
7677 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7679 return num_put_wchar__Iput(this, ret
, dest
, base
, fill
, tmp
,
7680 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "llu", base
->fmtfl
), v
));
7683 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_K@Z */
7684 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_K@Z */
7685 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_uint64
, 32)
7686 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_uint64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7687 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, unsigned __int64 v
)
7689 char tmp
[48]; /* 22(8^22>2^64)*2(separators beetwen every digit) + 3(strlen("+0x"))+1 */
7690 char fmt
[7]; /* strlen("%+#lld")+1 */
7692 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7694 return num_put_short__Iput(this, ret
, dest
, base
, fill
, tmp
,
7695 sprintf(tmp
, num_put_wchar__Ifmt(this, fmt
, "llu", base
->fmtfl
), v
));
7698 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_K@Z */
7699 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_K@Z */
7700 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_K@Z */
7701 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_K@Z */
7702 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_uint64
, 32)
7703 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_uint64(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7704 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, unsigned __int64 v
)
7706 TRACE("(%p %p %p %d)\n", this, ret
, base
, fill
);
7707 return call_num_put_wchar_do_put_uint64(this, ret
, dest
, base
, fill
, v
);
7710 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_N@Z */
7711 /* ?do_put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_N@Z */
7712 #define call_num_put_wchar_do_put_bool(this, ret, dest, base, fill, v) CALL_VTBL_FUNC(this, 32, ostreambuf_iterator_wchar*, \
7713 (const num_put*, ostreambuf_iterator_wchar*, ostreambuf_iterator_wchar, ios_base*, wchar_t, MSVCP_bool), \
7714 (this, ret, dest, base, fill, v))
7715 DEFINE_THISCALL_WRAPPER(num_put_wchar_do_put_bool
, 28)
7716 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_do_put_bool(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7717 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, MSVCP_bool v
)
7719 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7721 if(base
->fmtfl
& FMTFLAG_boolalpha
) {
7722 numpunct_wchar
*numpunct
= numpunct_wchar_use_facet(base
->loc
);
7723 basic_string_wchar str
;
7724 MSVCP_size_t pad
, len
;
7727 numpunct_wchar_truename(numpunct
, &str
);
7729 numpunct_wchar_falsename(numpunct
, &str
);
7731 len
= MSVCP_basic_string_wchar_length(&str
);
7732 pad
= (len
>base
->wide
? 0 : base
->wide
-len
);
7735 if((base
->fmtfl
& FMTFLAG_adjustfield
) != FMTFLAG_left
) {
7736 num_put_wchar__Rep(this, &dest
, dest
, fill
, pad
);
7739 num_put_wchar__Put(this, &dest
, dest
, MSVCP_basic_string_wchar_c_str(&str
), len
);
7740 MSVCP_basic_string_wchar_dtor(&str
);
7741 return num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7744 return num_put_wchar_put_long(this, ret
, dest
, base
, fill
, v
);
7747 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_N@Z */
7748 /* ?do_put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@MEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_N@Z */
7749 DEFINE_THISCALL_WRAPPER(num_put_short_do_put_bool
, 28)
7750 ostreambuf_iterator_wchar
* __thiscall
num_put_short_do_put_bool(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7751 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, MSVCP_bool v
)
7753 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7755 if(base
->fmtfl
& FMTFLAG_boolalpha
) {
7756 numpunct_wchar
*numpunct
= numpunct_short_use_facet(base
->loc
);
7757 basic_string_wchar str
;
7758 MSVCP_size_t pad
, len
;
7761 numpunct_wchar_truename(numpunct
, &str
);
7763 numpunct_wchar_falsename(numpunct
, &str
);
7765 len
= MSVCP_basic_string_wchar_length(&str
);
7766 pad
= (len
>base
->wide
? 0 : base
->wide
-len
);
7769 if((base
->fmtfl
& FMTFLAG_adjustfield
) != FMTFLAG_left
) {
7770 num_put_wchar__Rep(this, &dest
, dest
, fill
, pad
);
7773 num_put_wchar__Put(this, &dest
, dest
, MSVCP_basic_string_wchar_c_str(&str
), len
);
7774 MSVCP_basic_string_wchar_dtor(&str
);
7775 return num_put_wchar__Rep(this, ret
, dest
, fill
, pad
);
7778 return num_put_wchar_put_long(this, ret
, dest
, base
, fill
, v
);
7781 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AAVios_base@2@_W_N@Z */
7782 /* ?put@?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@2@V32@AEAVios_base@2@_W_N@Z */
7783 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AAVios_base@2@G_N@Z */
7784 /* ?put@?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@QEBA?AV?$ostreambuf_iterator@GU?$char_traits@G@std@@@2@V32@AEAVios_base@2@G_N@Z */
7785 DEFINE_THISCALL_WRAPPER(num_put_wchar_put_bool
, 28)
7786 ostreambuf_iterator_wchar
* __thiscall
num_put_wchar_put_bool(const num_put
*this, ostreambuf_iterator_wchar
*ret
,
7787 ostreambuf_iterator_wchar dest
, ios_base
*base
, wchar_t fill
, MSVCP_bool v
)
7789 TRACE("(%p %p %p %d %d)\n", this, ret
, base
, fill
, v
);
7790 return call_num_put_wchar_do_put_bool(this, ret
, dest
, base
, fill
, v
);
7793 /* ??0_Locimp@locale@std@@AAE@_N@Z */
7794 /* ??0_Locimp@locale@std@@AEAA@_N@Z */
7795 DEFINE_THISCALL_WRAPPER(locale__Locimp_ctor_transparent
, 8)
7796 locale__Locimp
* __thiscall
locale__Locimp_ctor_transparent(locale__Locimp
*this, MSVCP_bool transparent
)
7798 TRACE("(%p %d)\n", this, transparent
);
7800 memset(this, 0, sizeof(locale__Locimp
));
7801 locale_facet_ctor_refs(&this->facet
, 1);
7802 this->transparent
= transparent
;
7803 MSVCP_basic_string_char_ctor_cstr(&this->name
, "*");
7807 /* ??_F_Locimp@locale@std@@QAEXXZ */
7808 /* ??_F_Locimp@locale@std@@QEAAXXZ */
7809 DEFINE_THISCALL_WRAPPER(locale__Locimp_ctor
, 4)
7810 locale__Locimp
* __thiscall
locale__Locimp_ctor(locale__Locimp
*this)
7812 return locale__Locimp_ctor_transparent(this, FALSE
);
7815 /* ??0_Locimp@locale@std@@AAE@ABV012@@Z */
7816 /* ??0_Locimp@locale@std@@AEAA@AEBV012@@Z */
7817 DEFINE_THISCALL_WRAPPER(locale__Locimp_copy_ctor
, 8)
7818 locale__Locimp
* __thiscall
locale__Locimp_copy_ctor(locale__Locimp
*this, const locale__Locimp
*copy
)
7823 TRACE("(%p %p)\n", this, copy
);
7825 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
7826 memcpy(this, copy
, sizeof(locale__Locimp
));
7827 locale_facet_ctor_refs(&this->facet
, 1);
7828 if(copy
->facetvec
) {
7829 this->facetvec
= MSVCRT_operator_new(copy
->facet_cnt
*sizeof(locale_facet
*));
7830 if(!this->facetvec
) {
7831 _Lockit_dtor(&lock
);
7832 ERR("Out of memory\n");
7833 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7836 for(i
=0; i
<this->facet_cnt
; i
++)
7837 if(this->facetvec
[i
])
7838 locale_facet__Incref(this->facetvec
[i
]);
7840 MSVCP_basic_string_char_copy_ctor(&this->name
, ©
->name
);
7841 _Lockit_dtor(&lock
);
7845 /* ?_Locimp_ctor@_Locimp@locale@std@@CAXPAV123@ABV123@@Z */
7846 /* ?_Locimp_ctor@_Locimp@locale@std@@CAXPEAV123@AEBV123@@Z */
7847 locale__Locimp
* __cdecl
locale__Locimp__Locimp_ctor(locale__Locimp
*this, const locale__Locimp
*copy
)
7849 return locale__Locimp_copy_ctor(this, copy
);
7852 /* ??1_Locimp@locale@std@@MAE@XZ */
7853 /* ??1_Locimp@locale@std@@MEAA@XZ */
7854 DEFINE_THISCALL_WRAPPER(locale__Locimp_dtor
, 4)
7855 void __thiscall
locale__Locimp_dtor(locale__Locimp
*this)
7857 TRACE("(%p)\n", this);
7859 if(locale_facet__Decref(&this->facet
)) {
7861 for(i
=0; i
<this->facet_cnt
; i
++)
7862 if(this->facetvec
[i
] && locale_facet__Decref(this->facetvec
[i
]))
7863 call_locale_facet_vector_dtor(this->facetvec
[i
], 0);
7865 MSVCRT_operator_delete(this->facetvec
);
7866 MSVCP_basic_string_char_dtor(&this->name
);
7870 /* ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z */
7871 /* ?_Locimp_dtor@_Locimp@locale@std@@CAXPEAV123@@Z */
7872 void __cdecl
locale__Locimp__Locimp_dtor(locale__Locimp
*this)
7874 locale__Locimp_dtor(this);
7877 DEFINE_THISCALL_WRAPPER(MSVCP_locale__Locimp_vector_dtor
, 8)
7878 locale__Locimp
* __thiscall
MSVCP_locale__Locimp_vector_dtor(locale__Locimp
*this, unsigned int flags
)
7880 TRACE("(%p %x)\n", this, flags
);
7882 /* we have an array, with the number of elements stored before the first object */
7883 int i
, *ptr
= (int *)this-1;
7885 for(i
=*ptr
-1; i
>=0; i
--)
7886 locale__Locimp_dtor(this+i
);
7887 MSVCRT_operator_delete(ptr
);
7889 locale__Locimp_dtor(this);
7891 MSVCRT_operator_delete(this);
7897 /* ?_Locimp_Addfac@_Locimp@locale@std@@CAXPAV123@PAVfacet@23@I@Z */
7898 /* ?_Locimp_Addfac@_Locimp@locale@std@@CAXPEAV123@PEAVfacet@23@_K@Z */
7899 void __cdecl
locale__Locimp__Locimp_Addfac(locale__Locimp
*locimp
, locale_facet
*facet
, MSVCP_size_t id
)
7903 TRACE("(%p %p %lu)\n", locimp
, facet
, id
);
7905 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
7906 if(id
>= locimp
->facet_cnt
) {
7907 MSVCP_size_t new_size
= id
+1;
7908 locale_facet
**new_facetvec
;
7910 if(new_size
< locale_id__Id_cnt
+1)
7911 new_size
= locale_id__Id_cnt
+1;
7913 new_facetvec
= MSVCRT_operator_new(sizeof(locale_facet
*)*new_size
);
7915 _Lockit_dtor(&lock
);
7916 ERR("Out of memory\n");
7917 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7921 memset(new_facetvec
, 0, sizeof(locale_facet
*)*new_size
);
7922 memcpy(new_facetvec
, locimp
->facetvec
, sizeof(locale_facet
*)*locimp
->facet_cnt
);
7923 MSVCRT_operator_delete(locimp
->facetvec
);
7924 locimp
->facetvec
= new_facetvec
;
7925 locimp
->facet_cnt
= new_size
;
7928 if(locimp
->facetvec
[id
] && locale_facet__Decref(locimp
->facetvec
[id
]))
7929 call_locale_facet_vector_dtor(locimp
->facetvec
[id
], 0);
7931 locimp
->facetvec
[id
] = facet
;
7933 locale_facet__Incref(facet
);
7934 _Lockit_dtor(&lock
);
7937 /* ?_Addfac@_Locimp@locale@std@@AAEXPAVfacet@23@I@Z */
7938 /* ?_Addfac@_Locimp@locale@std@@AEAAXPEAVfacet@23@_K@Z */
7939 DEFINE_THISCALL_WRAPPER(locale__Locimp__Addfac
, 12)
7940 void __thiscall
locale__Locimp__Addfac(locale__Locimp
*this, locale_facet
*facet
, MSVCP_size_t id
)
7942 locale__Locimp__Locimp_Addfac(this, facet
, id
);
7945 /* ?_Clocptr_func@_Locimp@locale@std@@CAAAPAV123@XZ */
7946 /* ?_Clocptr_func@_Locimp@locale@std@@CAAEAPEAV123@XZ */
7947 locale__Locimp
** __cdecl
locale__Locimp__Clocptr_func(void)
7953 /* ?_Makeushloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
7954 /* ?_Makeushloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
7955 /* List of missing facets:
7956 * num_put, collate, messages, money_get, money_put, moneypunct, moneypunct, time_get, time_put
7958 void __cdecl
locale__Locimp__Makeushloc(const _Locinfo
*locinfo
, category cat
, locale__Locimp
*locimp
, const locale
*loc
)
7960 FIXME("(%p %d %p %p) semi-stub\n", locinfo
, cat
, locimp
, loc
);
7962 if(cat
& (1<<(ctype_short__Getcat(NULL
, NULL
)-1))) {
7966 ctype
= ctype_short_use_facet(loc
);
7968 ctype
= MSVCRT_operator_new(sizeof(ctype_wchar
));
7970 ERR("Out of memory\n");
7971 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7973 ctype_short_ctor_locinfo(ctype
, locinfo
, 0);
7975 locale__Locimp__Addfac(locimp
, &ctype
->base
.facet
, locale_id_operator_size_t(&ctype_short_id
));
7978 if(cat
& (1<<(num_get_short__Getcat(NULL
, NULL
)-1))) {
7982 numget
= num_get_short_use_facet(loc
);
7984 numget
= MSVCRT_operator_new(sizeof(num_get
));
7986 ERR("Out of memory\n");
7987 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
7989 num_get_short_ctor_locinfo(numget
, locinfo
, 0);
7991 locale__Locimp__Addfac(locimp
, &numget
->facet
, locale_id_operator_size_t(&num_get_short_id
));
7994 if(cat
& (1<<(num_put_short__Getcat(NULL
, NULL
)-1))) {
7998 numput
= num_put_short_use_facet(loc
);
8000 numput
= MSVCRT_operator_new(sizeof(num_put
));
8002 ERR("Out of memory\n");
8003 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8005 num_put_short_ctor_locinfo(numput
, locinfo
, 0);
8007 locale__Locimp__Addfac(locimp
, &numput
->facet
, locale_id_operator_size_t(&num_put_short_id
));
8010 if(cat
& (1<<(numpunct_short__Getcat(NULL
, NULL
)-1))) {
8011 numpunct_wchar
*numpunct
;
8014 numpunct
= numpunct_short_use_facet(loc
);
8016 numpunct
= MSVCRT_operator_new(sizeof(numpunct_wchar
));
8018 ERR("Out of memory\n");
8019 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8021 numpunct_short_ctor_locinfo(numpunct
, locinfo
, 0, FALSE
);
8023 locale__Locimp__Addfac(locimp
, &numpunct
->facet
, locale_id_operator_size_t(&numpunct_short_id
));
8026 if(cat
& (1<<(codecvt_short__Getcat(NULL
, NULL
)-1))) {
8027 codecvt_wchar
*codecvt
;
8030 codecvt
= codecvt_short_use_facet(loc
);
8032 codecvt
= MSVCRT_operator_new(sizeof(codecvt_wchar
));
8034 ERR("Out of memory\n");
8035 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8037 codecvt_short_ctor_locinfo(codecvt
, locinfo
, 0);
8039 locale__Locimp__Addfac(locimp
, &codecvt
->base
.facet
, locale_id_operator_size_t(&codecvt_short_id
));
8043 /* ?_Makewloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
8044 /* ?_Makewloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
8045 /* List of missing facets:
8046 * collate, messages, money_get, money_put, moneypunct, moneypunct, time_get, time_put
8048 void __cdecl
locale__Locimp__Makewloc(const _Locinfo
*locinfo
, category cat
, locale__Locimp
*locimp
, const locale
*loc
)
8050 FIXME("(%p %d %p %p) semi-stub\n", locinfo
, cat
, locimp
, loc
);
8052 if(cat
& (1<<(ctype_wchar__Getcat(NULL
, NULL
)-1))) {
8056 ctype
= ctype_wchar_use_facet(loc
);
8058 ctype
= MSVCRT_operator_new(sizeof(ctype_wchar
));
8060 ERR("Out of memory\n");
8061 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8063 ctype_wchar_ctor_locinfo(ctype
, locinfo
, 0);
8065 locale__Locimp__Addfac(locimp
, &ctype
->base
.facet
, locale_id_operator_size_t(&ctype_wchar_id
));
8068 if(cat
& (1<<(num_get_wchar__Getcat(NULL
, NULL
)-1))) {
8072 numget
= num_get_wchar_use_facet(loc
);
8074 numget
= MSVCRT_operator_new(sizeof(num_get
));
8076 ERR("Out of memory\n");
8077 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8079 num_get_wchar_ctor_locinfo(numget
, locinfo
, 0);
8081 locale__Locimp__Addfac(locimp
, &numget
->facet
, locale_id_operator_size_t(&num_get_wchar_id
));
8084 if(cat
& (1<<(num_put_wchar__Getcat(NULL
, NULL
)-1))) {
8088 numput
= num_put_wchar_use_facet(loc
);
8090 numput
= MSVCRT_operator_new(sizeof(num_put
));
8092 ERR("Out of memory\n");
8093 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8095 num_put_wchar_ctor_locinfo(numput
, locinfo
, 0);
8097 locale__Locimp__Addfac(locimp
, &numput
->facet
, locale_id_operator_size_t(&num_put_wchar_id
));
8100 if(cat
& (1<<(numpunct_wchar__Getcat(NULL
, NULL
)-1))) {
8101 numpunct_wchar
*numpunct
;
8104 numpunct
= numpunct_wchar_use_facet(loc
);
8106 numpunct
= MSVCRT_operator_new(sizeof(numpunct_wchar
));
8108 ERR("Out of memory\n");
8109 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8111 numpunct_wchar_ctor_locinfo(numpunct
, locinfo
, 0, FALSE
);
8113 locale__Locimp__Addfac(locimp
, &numpunct
->facet
, locale_id_operator_size_t(&numpunct_wchar_id
));
8116 if(cat
& (1<<(codecvt_wchar__Getcat(NULL
, NULL
)-1))) {
8117 codecvt_wchar
*codecvt
;
8120 codecvt
= codecvt_wchar_use_facet(loc
);
8122 codecvt
= MSVCRT_operator_new(sizeof(codecvt_wchar
));
8124 ERR("Out of memory\n");
8125 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8127 codecvt_wchar_ctor_locinfo(codecvt
, locinfo
, 0);
8129 locale__Locimp__Addfac(locimp
, &codecvt
->base
.facet
, locale_id_operator_size_t(&codecvt_wchar_id
));
8133 /* ?_Makexloc@_Locimp@locale@std@@CAXABV_Locinfo@3@HPAV123@PBV23@@Z */
8134 /* ?_Makexloc@_Locimp@locale@std@@CAXAEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
8135 /* List of missing facets:
8136 * collate, messages, money_get, money_put, moneypunct, moneypunct, time_get, time_put
8138 void __cdecl
locale__Locimp__Makexloc(const _Locinfo
*locinfo
, category cat
, locale__Locimp
*locimp
, const locale
*loc
)
8140 FIXME("(%p %d %p %p) semi-stub\n", locinfo
, cat
, locimp
, loc
);
8142 if(cat
& (1<<(ctype_char__Getcat(NULL
, NULL
)-1))) {
8146 ctype
= ctype_char_use_facet(loc
);
8148 ctype
= MSVCRT_operator_new(sizeof(ctype_char
));
8150 ERR("Out of memory\n");
8151 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8153 ctype_char_ctor_locinfo(ctype
, locinfo
, 0);
8155 locale__Locimp__Addfac(locimp
, &ctype
->base
.facet
, locale_id_operator_size_t(&ctype_char_id
));
8158 if(cat
& (1<<(num_get_char__Getcat(NULL
, NULL
)-1))) {
8162 numget
= num_get_char_use_facet(loc
);
8164 numget
= MSVCRT_operator_new(sizeof(num_get
));
8166 ERR("Out of memory\n");
8167 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8169 num_get_char_ctor_locinfo(numget
, locinfo
, 0);
8171 locale__Locimp__Addfac(locimp
, &numget
->facet
, locale_id_operator_size_t(&num_get_char_id
));
8174 if(cat
& (1<<(num_put_char__Getcat(NULL
, NULL
)-1))) {
8178 numput
= num_put_char_use_facet(loc
);
8180 numput
= MSVCRT_operator_new(sizeof(num_put
));
8182 ERR("Out of memory\n");
8183 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8185 num_put_char_ctor_locinfo(numput
, locinfo
, 0);
8187 locale__Locimp__Addfac(locimp
, &numput
->facet
, locale_id_operator_size_t(&num_put_char_id
));
8190 if(cat
& (1<<(numpunct_char__Getcat(NULL
, NULL
)-1))) {
8191 numpunct_char
*numpunct
;
8194 numpunct
= numpunct_char_use_facet(loc
);
8196 numpunct
= MSVCRT_operator_new(sizeof(numpunct_char
));
8198 ERR("Out of memory\n");
8199 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8201 numpunct_char_ctor_locinfo(numpunct
, locinfo
, 0, FALSE
);
8203 locale__Locimp__Addfac(locimp
, &numpunct
->facet
, locale_id_operator_size_t(&numpunct_char_id
));
8206 if(cat
& (1<<(codecvt_char__Getcat(NULL
, NULL
)-1))) {
8207 codecvt_char
*codecvt
;
8210 codecvt
= codecvt_char_use_facet(loc
);
8212 codecvt
= MSVCRT_operator_new(sizeof(codecvt_char
));
8214 ERR("Out of memory\n");
8215 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8217 codecvt_char_ctor_locinfo(codecvt
, locinfo
, 0);
8219 locale__Locimp__Addfac(locimp
, &codecvt
->base
.facet
, locale_id_operator_size_t(&codecvt_char_id
));
8223 /* ?_Makeloc@_Locimp@locale@std@@CAPAV123@ABV_Locinfo@3@HPAV123@PBV23@@Z */
8224 /* ?_Makeloc@_Locimp@locale@std@@CAPEAV123@AEBV_Locinfo@3@HPEAV123@PEBV23@@Z */
8225 locale__Locimp
* __cdecl
locale__Locimp__Makeloc(const _Locinfo
*locinfo
, category cat
, locale__Locimp
*locimp
, const locale
*loc
)
8227 TRACE("(%p %d %p %p)\n", locinfo
, cat
, locimp
, loc
);
8229 locale__Locimp__Makexloc(locinfo
, cat
, locimp
, loc
);
8230 locale__Locimp__Makewloc(locinfo
, cat
, locimp
, loc
);
8231 locale__Locimp__Makeushloc(locinfo
, cat
, locimp
, loc
);
8233 locimp
->catmask
|= cat
;
8234 MSVCP_basic_string_char_copy_ctor(&locimp
->name
, &locinfo
->newlocname
);
8238 /* ??_7_Locimp@locale@std@@6B@ */
8239 const vtable_ptr MSVCP_locale__Locimp_vtable
[] = {
8240 (vtable_ptr
)THISCALL_NAME(MSVCP_locale__Locimp_vector_dtor
)
8243 /* ??0locale@std@@AAE@PAV_Locimp@01@@Z */
8244 /* ??0locale@std@@AEAA@PEAV_Locimp@01@@Z */
8245 DEFINE_THISCALL_WRAPPER(locale_ctor_locimp
, 8)
8246 locale
* __thiscall
locale_ctor_locimp(locale
*this, locale__Locimp
*locimp
)
8248 TRACE("(%p %p)\n", this, locimp
);
8249 /* Don't change locimp reference counter */
8254 /* ?_Init@locale@std@@CAPAV_Locimp@12@XZ */
8255 /* ?_Init@locale@std@@CAPEAV_Locimp@12@XZ */
8256 locale__Locimp
* __cdecl
locale__Init(void)
8262 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
8264 _Lockit_dtor(&lock
);
8265 return global_locale
;
8268 global_locale
= MSVCRT_operator_new(sizeof(locale__Locimp
));
8269 if(!global_locale
) {
8270 _Lockit_dtor(&lock
);
8271 ERR("Out of memory\n");
8272 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8276 locale__Locimp_ctor(global_locale
);
8277 global_locale
->catmask
= (1<<(LC_MAX
+1))-1;
8278 MSVCP_basic_string_char_dtor(&global_locale
->name
);
8279 MSVCP_basic_string_char_ctor_cstr(&global_locale
->name
, "C");
8281 locale__Locimp__Clocptr
= global_locale
;
8282 global_locale
->facet
.refs
++;
8283 locale_ctor_locimp(&classic_locale
, locale__Locimp__Clocptr
);
8284 _Lockit_dtor(&lock
);
8286 return global_locale
;
8289 /* ??0locale@std@@QAE@ABV01@0H@Z */
8290 /* ??0locale@std@@QEAA@AEBV01@0H@Z */
8291 DEFINE_THISCALL_WRAPPER(locale_ctor_locale_locale
, 16)
8292 locale
* __thiscall
locale_ctor_locale_locale(locale
*this, const locale
*loc
, const locale
*other
, category cat
)
8294 FIXME("(%p %p %p %d) stub\n", this, loc
, other
, cat
);
8298 /* ??0locale@std@@QAE@ABV01@@Z */
8299 /* ??0locale@std@@QEAA@AEBV01@@Z */
8300 DEFINE_THISCALL_WRAPPER(locale_copy_ctor
, 8)
8301 locale
* __thiscall
locale_copy_ctor(locale
*this, const locale
*copy
)
8303 TRACE("(%p %p)\n", this, copy
);
8304 this->ptr
= copy
->ptr
;
8305 locale_facet__Incref(&this->ptr
->facet
);
8309 /* ??0locale@std@@QAE@ABV01@PBDH@Z */
8310 /* ??0locale@std@@QEAA@AEBV01@PEBDH@Z */
8311 DEFINE_THISCALL_WRAPPER(locale_ctor_locale_cstr
, 16)
8312 locale
* __thiscall
locale_ctor_locale_cstr(locale
*this, const locale
*loc
, const char *locname
, category cat
)
8314 FIXME("(%p %p %s %d) stub\n", this, loc
, locname
, cat
);
8318 /* ??0locale@std@@QAE@PBDH@Z */
8319 /* ??0locale@std@@QEAA@PEBDH@Z */
8320 DEFINE_THISCALL_WRAPPER(locale_ctor_cstr
, 12)
8321 locale
* __thiscall
locale_ctor_cstr(locale
*this, const char *locname
, category cat
)
8325 TRACE("(%p %s %d)\n", this, locname
, cat
);
8327 this->ptr
= MSVCRT_operator_new(sizeof(locale__Locimp
));
8329 ERR("Out of memory\n");
8330 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8332 this->ptr
= locale__Init();
8334 _Locinfo_ctor_cat_cstr(&locinfo
, cat
, locname
);
8335 if(!memcmp(MSVCP_basic_string_char_c_str(&locinfo
.newlocname
), "*", 2)) {
8336 _Locinfo_dtor(&locinfo
);
8337 MSVCRT_operator_delete(this->ptr
);
8338 throw_exception(EXCEPTION_RUNTIME_ERROR
, "bad locale name");
8341 locale__Locimp__Makeloc(&locinfo
, cat
, this->ptr
, NULL
);
8342 _Locinfo_dtor(&locinfo
);
8347 /* ??0locale@std@@QAE@W4_Uninitialized@1@@Z */
8348 /* ??0locale@std@@QEAA@W4_Uninitialized@1@@Z */
8349 DEFINE_THISCALL_WRAPPER(locale_ctor_uninitialized
, 8)
8350 locale
* __thiscall
locale_ctor_uninitialized(locale
*this, int uninitialized
)
8352 TRACE("(%p)\n", this);
8357 /* ??0locale@std@@QAE@XZ */
8358 /* ??0locale@std@@QEAA@XZ */
8359 DEFINE_THISCALL_WRAPPER(locale_ctor
, 4)
8360 locale
* __thiscall
locale_ctor(locale
*this)
8362 TRACE("(%p)\n", this);
8363 this->ptr
= locale__Init();
8364 locale_facet__Incref(&this->ptr
->facet
);
8368 /* ??1locale@std@@QAE@XZ */
8369 /* ??1locale@std@@QEAA@XZ */
8370 DEFINE_THISCALL_WRAPPER(locale_dtor
, 4)
8371 void __thiscall
locale_dtor(locale
*this)
8373 TRACE("(%p)\n", this);
8375 locale__Locimp_dtor(this->ptr
);
8378 DEFINE_THISCALL_WRAPPER(MSVCP_locale_vector_dtor
, 8)
8379 locale
* __thiscall
MSVCP_locale_vector_dtor(locale
*this, unsigned int flags
)
8381 TRACE("(%p %x)\n", this, flags
);
8383 /* we have an array, with the number of elements stored before the first object */
8384 int i
, *ptr
= (int *)this-1;
8386 for(i
=*ptr
-1; i
>=0; i
--)
8387 locale_dtor(this+i
);
8388 MSVCRT_operator_delete(ptr
);
8392 MSVCRT_operator_delete(this);
8398 /* ??4locale@std@@QAEAAV01@ABV01@@Z */
8399 /* ??4locale@std@@QEAAAEAV01@AEBV01@@Z */
8400 DEFINE_THISCALL_WRAPPER(locale_operator_assign
, 8)
8401 locale
* __thiscall
locale_operator_assign(locale
*this, const locale
*loc
)
8403 FIXME("(%p %p) stub\n", this, loc
);
8407 /* ??8locale@std@@QBE_NABV01@@Z */
8408 /* ??8locale@std@@QEBA_NAEBV01@@Z */
8409 DEFINE_THISCALL_WRAPPER(locale_operator_equal
, 8)
8410 MSVCP_bool __thiscall
locale_operator_equal(const locale
*this, const locale
*loc
)
8412 FIXME("(%p %p) stub\n", this, loc
);
8416 /* ??9locale@std@@QBE_NABV01@@Z */
8417 /* ??9locale@std@@QEBA_NAEBV01@@Z */
8418 DEFINE_THISCALL_WRAPPER(locale_operator_not_equal
, 8)
8419 MSVCP_bool __thiscall
locale_operator_not_equal(const locale
*this, locale
const *loc
)
8421 FIXME("(%p %p) stub\n", this, loc
);
8425 /* ?_Addfac@locale@std@@QAEAAV12@PAVfacet@12@II@Z */
8426 /* ?_Addfac@locale@std@@QEAAAEAV12@PEAVfacet@12@_K1@Z */
8427 DEFINE_THISCALL_WRAPPER(locale__Addfac
, 16)
8428 locale
* __thiscall
locale__Addfac(locale
*this, locale_facet
*facet
, MSVCP_size_t id
, MSVCP_size_t catmask
)
8430 TRACE("(%p %p %lu %lu)\n", this, facet
, id
, catmask
);
8432 if(this->ptr
->facet
.refs
> 1) {
8433 locale__Locimp
*new_ptr
= MSVCRT_operator_new(sizeof(locale__Locimp
));
8435 ERR("Out of memory\n");
8436 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8439 locale__Locimp_copy_ctor(new_ptr
, this->ptr
);
8440 locale_facet__Decref(&this->ptr
->facet
);
8441 this->ptr
= new_ptr
;
8444 locale__Locimp__Addfac(this->ptr
, facet
, id
);
8447 MSVCP_basic_string_char_dtor(&this->ptr
->name
);
8448 MSVCP_basic_string_char_ctor_cstr(&this->ptr
->name
, "*");
8453 /* ?_Getfacet@locale@std@@QBEPBVfacet@12@I@Z */
8454 /* ?_Getfacet@locale@std@@QEBAPEBVfacet@12@_K@Z */
8455 DEFINE_THISCALL_WRAPPER(locale__Getfacet
, 8)
8456 const locale_facet
* __thiscall
locale__Getfacet(const locale
*this, MSVCP_size_t id
)
8460 TRACE("(%p %lu)\n", this, id
);
8462 fac
= id
< this->ptr
->facet_cnt
? this->ptr
->facetvec
[id
] : NULL
;
8463 if(fac
|| !this->ptr
->transparent
)
8466 return id
< global_locale
->facet_cnt
? global_locale
->facetvec
[id
] : NULL
;
8469 /* ?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ */
8470 /* ?_Getgloballocale@locale@std@@CAPEAV_Locimp@12@XZ */
8471 locale__Locimp
* __cdecl
locale__Getgloballocale(void)
8474 return global_locale
;
8477 /* ?_Setgloballocale@locale@std@@CAXPAX@Z */
8478 /* ?_Setgloballocale@locale@std@@CAXPEAX@Z */
8479 void __cdecl
locale__Setgloballocale(void *locimp
)
8481 TRACE("(%p)\n", locimp
);
8482 global_locale
= locimp
;
8485 /* ?classic@locale@std@@SAABV12@XZ */
8486 /* ?classic@locale@std@@SAAEBV12@XZ */
8487 const locale
* __cdecl
locale_classic(void)
8491 return &classic_locale
;
8494 /* ?empty@locale@std@@SA?AV12@XZ */
8495 locale
* __cdecl
locale_empty(locale
*ret
)
8501 ret
->ptr
= MSVCRT_operator_new(sizeof(locale__Locimp
));
8503 ERR("Out of memory\n");
8504 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
8506 locale__Locimp_ctor_transparent(ret
->ptr
, TRUE
);
8510 /* ?name@locale@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
8511 /* ?name@locale@std@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */
8512 DEFINE_THISCALL_WRAPPER(locale_name
, 8)
8513 basic_string_char
* __thiscall
locale_name(const locale
*this, basic_string_char
*ret
)
8515 TRACE( "(%p)\n", this);
8516 MSVCP_basic_string_char_copy_ctor(ret
, &this->ptr
->name
);
8520 /* ?global@locale@std@@SA?AV12@ABV12@@Z */
8521 /* ?global@locale@std@@SA?AV12@AEBV12@@Z */
8522 locale
* __cdecl
locale_global(locale
*ret
, const locale
*loc
)
8527 TRACE("(%p %p)\n", loc
, ret
);
8529 _Lockit_ctor_locktype(&lock
, _LOCK_LOCALE
);
8532 if(loc
->ptr
!= global_locale
) {
8533 locale_facet__Decref(&global_locale
->facet
);
8534 global_locale
= loc
->ptr
;
8535 locale_facet__Incref(&global_locale
->facet
);
8537 for(i
=LC_ALL
+1; i
<=LC_MAX
; i
++) {
8538 if((global_locale
->catmask
& (1<<(i
-1))) == 0)
8540 setlocale(i
, MSVCP_basic_string_char_c_str(&global_locale
->name
));
8543 _Lockit_dtor(&lock
);
8547 DEFINE_RTTI_DATA0(locale_facet
, 0, ".?AVfacet@locale@std@@");
8548 DEFINE_RTTI_DATA1(collate_char
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$collate@D@std@@");
8549 DEFINE_RTTI_DATA1(collate_wchar
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$collate@_W@std@@");
8550 DEFINE_RTTI_DATA1(collate_short
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$collate@G@std@@");
8551 DEFINE_RTTI_DATA1(ctype_base
, 0, &locale_facet_rtti_base_descriptor
, ".?AUctype_base@std@@");
8552 DEFINE_RTTI_DATA2(ctype_char
, 0, &ctype_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$ctype@D@std@@");
8553 DEFINE_RTTI_DATA2(ctype_wchar
, 0, &ctype_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$ctype@_W@std@@");
8554 DEFINE_RTTI_DATA2(ctype_short
, 0, &ctype_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$ctype@G@std@@");
8555 DEFINE_RTTI_DATA1(codecvt_base
, 0, &locale_facet_rtti_base_descriptor
, ".?AVcodecvt_base@std@@");
8556 DEFINE_RTTI_DATA2(codecvt_char
, 0, &codecvt_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$codecvt@DDH@std@@");
8557 DEFINE_RTTI_DATA2(codecvt_wchar
, 0, &codecvt_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$codecvt@_WDH@std@@");
8558 DEFINE_RTTI_DATA2(codecvt_short
, 0, &codecvt_base_rtti_base_descriptor
, &locale_facet_rtti_base_descriptor
, ".?AV?$codecvt@GDH@std@@");
8559 DEFINE_RTTI_DATA1(numpunct_char
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$numpunct@D@std@@");
8560 DEFINE_RTTI_DATA1(numpunct_wchar
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$numpunct@_W@std@@");
8561 DEFINE_RTTI_DATA1(numpunct_short
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$numpunct@G@std@@");
8562 DEFINE_RTTI_DATA1(num_get_char
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@");
8563 DEFINE_RTTI_DATA1(num_get_wchar
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_get@_WV?$istreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@");
8564 DEFINE_RTTI_DATA1(num_get_short
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_get@GV?$istreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@");
8565 DEFINE_RTTI_DATA1(num_put_char
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@");
8566 DEFINE_RTTI_DATA1(num_put_wchar
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_put@_WV?$ostreambuf_iterator@_WU?$char_traits@_W@std@@@std@@@std@@");
8567 DEFINE_RTTI_DATA1(num_put_short
, 0, &locale_facet_rtti_base_descriptor
, ".?AV?$num_put@GV?$ostreambuf_iterator@GU?$char_traits@G@std@@@std@@@std@@");
8570 void __asm_dummy_vtables(void) {
8572 __ASM_VTABLE(locale_facet
, "");
8573 __ASM_VTABLE(collate_char
,
8574 VTABLE_ADD_FUNC(collate_char_do_compare
)
8575 VTABLE_ADD_FUNC(collate_char_do_transform
)
8576 VTABLE_ADD_FUNC(collate_char_do_hash
));
8577 __ASM_VTABLE(collate_wchar
,
8578 VTABLE_ADD_FUNC(collate_wchar_do_compare
)
8579 VTABLE_ADD_FUNC(collate_wchar_do_transform
)
8580 VTABLE_ADD_FUNC(collate_wchar_do_hash
));
8581 __ASM_VTABLE(collate_short
,
8582 VTABLE_ADD_FUNC(collate_wchar_do_compare
)
8583 VTABLE_ADD_FUNC(collate_wchar_do_transform
)
8584 VTABLE_ADD_FUNC(collate_wchar_do_hash
));
8585 __ASM_VTABLE(ctype_base
, "");
8586 __ASM_VTABLE(ctype_char
,
8587 VTABLE_ADD_FUNC(ctype_char_do_tolower
)
8588 VTABLE_ADD_FUNC(ctype_char_do_tolower_ch
)
8589 VTABLE_ADD_FUNC(ctype_char_do_toupper
)
8590 VTABLE_ADD_FUNC(ctype_char_do_toupper_ch
)
8591 VTABLE_ADD_FUNC(ctype_char_do_widen
)
8592 VTABLE_ADD_FUNC(ctype_char_do_widen_ch
)
8593 VTABLE_ADD_FUNC(ctype_char_do_narrow
)
8594 VTABLE_ADD_FUNC(ctype_char_do_narrow_ch
));
8595 __ASM_VTABLE(ctype_wchar
,
8596 VTABLE_ADD_FUNC(ctype_wchar_do_is
)
8597 VTABLE_ADD_FUNC(ctype_wchar_do_is_ch
)
8598 VTABLE_ADD_FUNC(ctype_wchar_do_scan_is
)
8599 VTABLE_ADD_FUNC(ctype_wchar_do_scan_not
)
8600 VTABLE_ADD_FUNC(ctype_wchar_do_tolower
)
8601 VTABLE_ADD_FUNC(ctype_wchar_do_tolower_ch
)
8602 VTABLE_ADD_FUNC(ctype_wchar_do_toupper
)
8603 VTABLE_ADD_FUNC(ctype_wchar_do_toupper_ch
)
8604 VTABLE_ADD_FUNC(ctype_wchar_do_widen
)
8605 VTABLE_ADD_FUNC(ctype_wchar_do_widen_ch
)
8606 VTABLE_ADD_FUNC(ctype_wchar_do_narrow
)
8607 VTABLE_ADD_FUNC(ctype_wchar_do_narrow_ch
));
8608 __ASM_VTABLE(ctype_short
,
8609 VTABLE_ADD_FUNC(ctype_wchar_do_is
)
8610 VTABLE_ADD_FUNC(ctype_wchar_do_is_ch
)
8611 VTABLE_ADD_FUNC(ctype_wchar_do_scan_is
)
8612 VTABLE_ADD_FUNC(ctype_wchar_do_scan_not
)
8613 VTABLE_ADD_FUNC(ctype_wchar_do_tolower
)
8614 VTABLE_ADD_FUNC(ctype_wchar_do_tolower_ch
)
8615 VTABLE_ADD_FUNC(ctype_wchar_do_toupper
)
8616 VTABLE_ADD_FUNC(ctype_wchar_do_toupper_ch
)
8617 VTABLE_ADD_FUNC(ctype_wchar_do_widen
)
8618 VTABLE_ADD_FUNC(ctype_wchar_do_widen_ch
)
8619 VTABLE_ADD_FUNC(ctype_wchar_do_narrow
)
8620 VTABLE_ADD_FUNC(ctype_wchar_do_narrow_ch
));
8621 __ASM_VTABLE(codecvt_base
,
8622 VTABLE_ADD_FUNC(codecvt_base_do_always_noconv
)
8623 VTABLE_ADD_FUNC(codecvt_base_do_max_length
)
8624 VTABLE_ADD_FUNC(codecvt_base_do_encoding
));
8625 __ASM_VTABLE(codecvt_char
,
8626 VTABLE_ADD_FUNC(codecvt_base_do_always_noconv
)
8627 VTABLE_ADD_FUNC(codecvt_base_do_max_length
)
8628 VTABLE_ADD_FUNC(codecvt_base_do_encoding
)
8629 VTABLE_ADD_FUNC(codecvt_char_do_in
)
8630 VTABLE_ADD_FUNC(codecvt_char_do_out
)
8631 VTABLE_ADD_FUNC(codecvt_char_do_unshift
)
8632 VTABLE_ADD_FUNC(codecvt_char_do_length
));
8633 __ASM_VTABLE(codecvt_wchar
,
8634 VTABLE_ADD_FUNC(codecvt_wchar_do_always_noconv
)
8635 VTABLE_ADD_FUNC(codecvt_wchar_do_max_length
)
8636 VTABLE_ADD_FUNC(codecvt_base_do_encoding
)
8637 VTABLE_ADD_FUNC(codecvt_wchar_do_in
)
8638 VTABLE_ADD_FUNC(codecvt_wchar_do_out
)
8639 VTABLE_ADD_FUNC(codecvt_wchar_do_unshift
)
8640 VTABLE_ADD_FUNC(codecvt_wchar_do_length
));
8641 __ASM_VTABLE(codecvt_short
,
8642 VTABLE_ADD_FUNC(codecvt_wchar_do_always_noconv
)
8643 VTABLE_ADD_FUNC(codecvt_wchar_do_max_length
)
8644 VTABLE_ADD_FUNC(codecvt_base_do_encoding
)
8645 VTABLE_ADD_FUNC(codecvt_wchar_do_in
)
8646 VTABLE_ADD_FUNC(codecvt_wchar_do_out
)
8647 VTABLE_ADD_FUNC(codecvt_wchar_do_unshift
)
8648 VTABLE_ADD_FUNC(codecvt_wchar_do_length
));
8649 __ASM_VTABLE(numpunct_char
,
8650 VTABLE_ADD_FUNC(numpunct_char_do_decimal_point
)
8651 VTABLE_ADD_FUNC(numpunct_char_do_thousands_sep
)
8652 VTABLE_ADD_FUNC(numpunct_char_do_grouping
)
8653 VTABLE_ADD_FUNC(numpunct_char_do_falsename
)
8654 VTABLE_ADD_FUNC(numpunct_char_do_truename
));
8655 __ASM_VTABLE(numpunct_wchar
,
8656 VTABLE_ADD_FUNC(numpunct_wchar_do_decimal_point
)
8657 VTABLE_ADD_FUNC(numpunct_wchar_do_thousands_sep
)
8658 VTABLE_ADD_FUNC(numpunct_wchar_do_grouping
)
8659 VTABLE_ADD_FUNC(numpunct_wchar_do_falsename
)
8660 VTABLE_ADD_FUNC(numpunct_wchar_do_truename
));
8661 __ASM_VTABLE(numpunct_short
,
8662 VTABLE_ADD_FUNC(numpunct_wchar_do_decimal_point
)
8663 VTABLE_ADD_FUNC(numpunct_wchar_do_thousands_sep
)
8664 VTABLE_ADD_FUNC(numpunct_wchar_do_grouping
)
8665 VTABLE_ADD_FUNC(numpunct_wchar_do_falsename
)
8666 VTABLE_ADD_FUNC(numpunct_wchar_do_truename
));
8667 __ASM_VTABLE(num_get_char
,
8668 VTABLE_ADD_FUNC(num_get_char_do_get_void
)
8669 VTABLE_ADD_FUNC(num_get_char_do_get_double
)
8670 VTABLE_ADD_FUNC(num_get_char_do_get_double
)
8671 VTABLE_ADD_FUNC(num_get_char_do_get_float
)
8672 VTABLE_ADD_FUNC(num_get_char_do_get_uint64
)
8673 VTABLE_ADD_FUNC(num_get_char_do_get_int64
)
8674 VTABLE_ADD_FUNC(num_get_char_do_get_ulong
)
8675 VTABLE_ADD_FUNC(num_get_char_do_get_long
)
8676 VTABLE_ADD_FUNC(num_get_char_do_get_uint
)
8677 VTABLE_ADD_FUNC(num_get_char_do_get_ushort
)
8678 VTABLE_ADD_FUNC(num_get_char_do_get_bool
));
8679 __ASM_VTABLE(num_get_short
,
8680 VTABLE_ADD_FUNC(num_get_short_do_get_void
)
8681 VTABLE_ADD_FUNC(num_get_short_do_get_double
)
8682 VTABLE_ADD_FUNC(num_get_short_do_get_double
)
8683 VTABLE_ADD_FUNC(num_get_short_do_get_float
)
8684 VTABLE_ADD_FUNC(num_get_short_do_get_uint64
)
8685 VTABLE_ADD_FUNC(num_get_short_do_get_int64
)
8686 VTABLE_ADD_FUNC(num_get_short_do_get_ulong
)
8687 VTABLE_ADD_FUNC(num_get_short_do_get_long
)
8688 VTABLE_ADD_FUNC(num_get_short_do_get_uint
)
8689 VTABLE_ADD_FUNC(num_get_short_do_get_ushort
)
8690 VTABLE_ADD_FUNC(num_get_short_do_get_bool
));
8691 __ASM_VTABLE(num_get_wchar
,
8692 VTABLE_ADD_FUNC(num_get_wchar_do_get_void
)
8693 VTABLE_ADD_FUNC(num_get_wchar_do_get_double
)
8694 VTABLE_ADD_FUNC(num_get_wchar_do_get_double
)
8695 VTABLE_ADD_FUNC(num_get_wchar_do_get_float
)
8696 VTABLE_ADD_FUNC(num_get_wchar_do_get_uint64
)
8697 VTABLE_ADD_FUNC(num_get_wchar_do_get_int64
)
8698 VTABLE_ADD_FUNC(num_get_wchar_do_get_ulong
)
8699 VTABLE_ADD_FUNC(num_get_wchar_do_get_long
)
8700 VTABLE_ADD_FUNC(num_get_wchar_do_get_uint
)
8701 VTABLE_ADD_FUNC(num_get_wchar_do_get_ushort
)
8702 VTABLE_ADD_FUNC(num_get_wchar_do_get_bool
));
8703 __ASM_VTABLE(num_put_char
,
8704 VTABLE_ADD_FUNC(num_put_char_do_put_ptr
)
8705 VTABLE_ADD_FUNC(num_put_char_do_put_double
)
8706 VTABLE_ADD_FUNC(num_put_char_do_put_double
)
8707 VTABLE_ADD_FUNC(num_put_char_do_put_uint64
)
8708 VTABLE_ADD_FUNC(num_put_char_do_put_int64
)
8709 VTABLE_ADD_FUNC(num_put_char_do_put_ulong
)
8710 VTABLE_ADD_FUNC(num_put_char_do_put_long
)
8711 VTABLE_ADD_FUNC(num_put_char_do_put_bool
));
8712 __ASM_VTABLE(num_put_wchar
,
8713 VTABLE_ADD_FUNC(num_put_wchar_do_put_ptr
)
8714 VTABLE_ADD_FUNC(num_put_wchar_do_put_double
)
8715 VTABLE_ADD_FUNC(num_put_wchar_do_put_double
)
8716 VTABLE_ADD_FUNC(num_put_wchar_do_put_uint64
)
8717 VTABLE_ADD_FUNC(num_put_wchar_do_put_int64
)
8718 VTABLE_ADD_FUNC(num_put_wchar_do_put_ulong
)
8719 VTABLE_ADD_FUNC(num_put_wchar_do_put_long
)
8720 VTABLE_ADD_FUNC(num_put_wchar_do_put_bool
));
8721 __ASM_VTABLE(num_put_short
,
8722 VTABLE_ADD_FUNC(num_put_short_do_put_ptr
)
8723 VTABLE_ADD_FUNC(num_put_short_do_put_double
)
8724 VTABLE_ADD_FUNC(num_put_short_do_put_double
)
8725 VTABLE_ADD_FUNC(num_put_short_do_put_uint64
)
8726 VTABLE_ADD_FUNC(num_put_short_do_put_int64
)
8727 VTABLE_ADD_FUNC(num_put_short_do_put_ulong
)
8728 VTABLE_ADD_FUNC(num_put_short_do_put_long
)
8729 VTABLE_ADD_FUNC(num_put_short_do_put_bool
));
8734 void free_locale(void)
8736 facets_elem
*iter
, *safe
;
8739 locale__Locimp_dtor(global_locale
);
8740 locale_dtor(&classic_locale
);
8743 LIST_FOR_EACH_ENTRY_SAFE(iter
, safe
, &lazy_facets
, facets_elem
, entry
) {
8744 list_remove(&iter
->entry
);
8745 if(locale_facet__Decref(iter
->fac
))
8746 call_locale_facet_vector_dtor(iter
->fac
, 1);
8747 MSVCRT_operator_delete(iter
);