hour              311 core/gps.c                 int hour = s / 3600;
hour              317 core/gps.c                 sprintf(vBuf, lang_str(LANG_MENU_GPS_t_10), hour, minute, second);
hour              456 core/gui_osd.c             unsigned int hour = (ttm->tm_hour);
hour              461 core/gui_osd.c                 ampm_ind = ampm[hour/12][conf.clock_indicator]; //(hour >= 12) ? pm : am; 
hour              463 core/gui_osd.c                 if (hour == 0)
hour              464 core/gui_osd.c                     hour = 12;
hour              465 core/gui_osd.c                 else if (hour > 12)
hour              466 core/gui_osd.c                     hour = hour - 12;
hour              471 core/gui_osd.c                 sprintf(osd_buf, "%2u:%02u:%02u%s", hour, ttm->tm_min, ttm->tm_sec, ampm_ind);
hour              476 core/gui_osd.c                 sprintf(osd_buf, "%2u:%02u%s", hour, ttm->tm_min, ampm_ind);
hour              502 core/gui_osd.c     unsigned int hour=0, min=0, sec=0;
hour              585 core/gui_osd.c             hour = time_left / 3600;
hour              612 core/gui_osd.c                         sprintf(osd_buf, "-%02d:%02d:%02d", hour, min, sec);
hour               21 include/clock.h extern void set_clock(int year, int month, int day, int hour, int minute, int second);
hour              985 platform/generic/wrappers.c void set_clock(int year, int month, int day, int hour, int minute, int second)
hour              991 platform/generic/wrappers.c     buf[3] = hour;