Home
last modified time | relevance | path

Searched refs:zero_char (Results 1 – 2 of 2) sorted by relevance

/reactos/sdk/lib/ucrt/time/
H A Dstrdate.cpp32 static Character const zero_char = static_cast<Character>('0'); in _Out_writes_z_() local
37 buffer[0] = static_cast<Character>(month / 10 + zero_char); // Tens of month in _Out_writes_z_()
38 buffer[1] = static_cast<Character>(month % 10 + zero_char); // Units of month in _Out_writes_z_()
40 buffer[3] = static_cast<Character>(day / 10 + zero_char); // Tens of day in _Out_writes_z_()
41 buffer[4] = static_cast<Character>(day % 10 + zero_char); // Units of day in _Out_writes_z_()
43 buffer[6] = static_cast<Character>(year / 10 + zero_char); // Tens of year in _Out_writes_z_()
44 buffer[7] = static_cast<Character>(year % 10 + zero_char); // Units of year in _Out_writes_z_()
H A Dstrtime.cpp35 static Character const zero_char = static_cast<Character>('0'); in _Out_writes_z_() local
40 buffer[0] = static_cast<Character>(hours / 10 + zero_char); // Tens of hour in _Out_writes_z_()
41 buffer[1] = static_cast<Character>(hours % 10 + zero_char); // Units of hour in _Out_writes_z_()
43 buffer[3] = static_cast<Character>(minutes / 10 + zero_char); // Tens of minute in _Out_writes_z_()
44 buffer[4] = static_cast<Character>(minutes % 10 + zero_char); // Units of minute in _Out_writes_z_()
46 buffer[6] = static_cast<Character>(seconds / 10 + zero_char); // Tens of second in _Out_writes_z_()
47 buffer[7] = static_cast<Character>(seconds % 10 + zero_char); // Units of second in _Out_writes_z_()