Home | History | Annotate | Download | only in crt

Lines Matching defs:wHour

325                  uint32_t* wHour,
327 int32_t iMinuteDiff = *wHour * 60 + *wMinute;
338 *wHour = iMinuteDiff / 60;
635 uint16_t wHour = hour;
638 if (wHour >= 12)
661 if (wHour > 12)
662 wHour -= 12;
663 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 12 : wHour);
665 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 24 : wHour);
667 if (wHour > 12)
668 wHour -= 12;
669 wsResult += NumToString(symbol.GetLength(), wHour);
671 wsResult += NumToString(symbol.GetLength(), wHour);