Lines Matching defs:hour
702 int hour;
709 hour = (seconds / 60) / 60;
712 cp = _conv_gmt_posix(hour);
714 cp = _conv_gmt_zoneinfo(hour);
723 _conv_gmt_posix(int hour)
728 if (hour == 0) {
734 if (hour < 0) {
736 /* make hour positive for snprintf() */
737 hour = -hour;
746 xsign, hour, xsign, hour);
752 _conv_gmt_zoneinfo(int hour)
757 if (hour < 0) {
759 /* make hour positive for snprintf() */
760 hour = -hour;
769 xsign, hour);