Searched refs:__width (Results 1 - 3 of 3) sorted by relevance

/external/stlport/stlport/stl/
H A D_string_io.c86 streamsize __width = __is.width(0); local
88 if (__width <= 0)
90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type)
91 * because here we know that __width is positive and the stattic assertion check
95 (__width > __STATIC_CAST(streamsize, __s.max_size())))
98 __n = __STATIC_CAST(size_type, __width);
H A D_monetary.c408 streamsize __width = __str.width(); local
442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) ||
443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width))));
444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
H A D_num_put.c45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
42 __copy_float_and_fill(const _CharT* __first, const _CharT* __last, _OutputIter __oi, ios_base::fmtflags __flags, streamsize __width, _CharT __fill, _CharT __xplus, _CharT __xminus) argument

Completed in 52 milliseconds