Lines Matching refs:__h
1848 void __get_12_hour(int& __h,
1852 void __get_am_pm(int& __h,
1968 time_get<_CharT, _InputIterator>::__get_hour(int& __h,
1975 __h = __t;
1982 time_get<_CharT, _InputIterator>::__get_12_hour(int& __h,
1989 __h = __t;
2064 time_get<_CharT, _InputIterator>::__get_am_pm(int& __h,
2076 if (__i == 0 && __h == 12)
2077 __h = 0;
2078 else if (__i == 1 && __h < 12)
2079 __h += 12;
3068 unique_ptr<char, void(*)(void*)> __h(nullptr, free);
3071 __h.reset((char*)malloc(static_cast<size_t>(__wn - __wb.get() + 2)));
3072 if (__h.get() == nullptr)
3074 __nc = __h.get();
3432 unique_ptr<char_type, void(*)(void*)> __h(0, free);
3439 __h.reset((char_type*)malloc(__exn * sizeof(char_type)));
3440 __mb = __h.get();