Searched refs:tm_sec (Results 126 - 150 of 321) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Ddvenc.c96 ((tc.tm_sec / 10) << 4) | /* tens of seconds */
97 (tc.tm_sec % 10); /* units of seconds */
166 ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
167 (tc.tm_sec % 10); /* Units of seconds */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_recover/
H A Ddb_recover.c254 t->tm_sec = 0; /* Seconds defaults to 0. */
259 t->tm_sec = ATOI2(p);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_recover/
H A Ddb_recover.c239 t->tm_sec = 0; /* Seconds defaults to 0. */
244 t->tm_sec = ATOI2(p);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dnsmasq-2.15/src/
H A Disc.c138 &lease_time.tm_sec) == 3)
157 lease_time.tm_min) * 60) + lease_time.tm_sec;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rtc/
H A Drtc-bq32k.c88 tm->tm_sec = bcd2bin(regs.seconds & BQ32K_SECONDS_MASK);
104 regs.seconds = bin2bcd(tm->tm_sec);
H A Drtc-ds1216.c90 tm->tm_sec = bcd2bin(regs.sec);
119 regs.sec = bin2bcd(tm->tm_sec);
H A Drtc-ds1307.c311 t->tm_sec = bcd2bin(ds1307->regs[DS1307_REG_SECS] & 0x7f);
325 "read", t->tm_sec, t->tm_min,
342 "write", t->tm_sec, t->tm_min,
346 buf[DS1307_REG_SECS] = bin2bcd(t->tm_sec);
412 t->time.tm_sec = bcd2bin(ds1307->regs[0] & 0x7f);
428 "alarm read", t->time.tm_sec, t->time.tm_min,
448 "alarm set", t->time.tm_sec, t->time.tm_min,
470 buf[0] = bin2bcd(t->time.tm_sec);
H A Drtc-ds3232.c131 time->tm_sec = bcd2bin(second);
161 buf[0] = bin2bcd(time->tm_sec);
H A Drtc-max6900.c153 tm->tm_sec = bcd2bin(regs[MAX6900_REG_SC]);
187 regs[MAX6900_REG_SC] = bin2bcd(tm->tm_sec);
H A Drtc-pcf8583.c79 dt->tm_sec = bcd2bin(buf[1]);
97 buf[3] = bin2bcd(dt->tm_sec);
H A Drtc-rs5c348.c78 txp[RS5C348_REG_SECS] = bin2bcd(tm->tm_sec);
120 tm->tm_sec = bcd2bin(rxbuf[RS5C348_REG_SECS] & RS5C348_SECS_MASK);
H A Drtc-rs5c372.c184 tm->tm_sec = bcd2bin(rs5c->regs[RS5C372_REG_SECS] & 0x7f);
200 tm->tm_sec, tm->tm_min, tm->tm_hour,
216 tm->tm_sec, tm->tm_min, tm->tm_hour,
220 buf[0] = bin2bcd(tm->tm_sec);
370 t->time.tm_sec = 0;
400 /* REVISIT: round up tm_sec */
H A Drtc-rx8025.c206 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f);
222 dt->tm_sec, dt->tm_min, dt->tm_hour,
243 date[RX8025_REG_SEC] = bin2bcd(dt->tm_sec);
340 t->time.tm_sec = 0;
355 t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
H A Drtc-cmos.c222 t->time.tm_sec = CMOS_READ(RTC_SECONDS_ALARM);
243 if (((unsigned)t->time.tm_sec) < 0x60)
244 t->time.tm_sec = bcd2bin(t->time.tm_sec);
246 t->time.tm_sec = -1;
336 sec = t->time.tm_sec;
365 hpet_set_alarm_time(t->time.tm_hour, t->time.tm_min, t->time.tm_sec);
H A Drtc-m41t80.c115 tm->tm_sec = bcd2bin(buf[M41T80_REG_SEC] & 0x7f);
166 bin2bcd(tm->tm_sec) | (buf[M41T80_REG_SEC] & ~0x7f);
292 reg[M41T80_REG_ALARM_SEC] |= t->time.tm_sec >= 0 ?
293 bin2bcd(t->time.tm_sec) : 0x80;
346 t->time.tm_sec = -1;
352 t->time.tm_sec = bcd2bin(reg[M41T80_REG_ALARM_SEC] & 0x7f);
824 tm.tm_min, tm.tm_sec);
H A Dinterface.c205 /* note that tm_sec is a "don't care" value here: */
214 if (alarm->time.tm_sec == -1)
215 alarm->time.tm_sec = now.tm_sec;
H A Drtc-isl1208.c262 tm->tm_sec = bcd2bin(regs[ISL1208_REG_SC]);
308 tm->tm_sec = bcd2bin(regs[ISL1208_REG_SCA - ISL1208_REG_SCA] & 0x7f);
338 regs[ISL1208_REG_SC] = bin2bcd(tm->tm_sec);
H A Drtc-mxc.c176 alarm_tm.tm_sec = alrm->tm_sec;
340 if (alrm->time.tm_sec > 59 ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/fat/
H A Dmisc.c239 tm.tm_sec >>= 1;
241 *time = cpu_to_le16(tm.tm_hour << 11 | tm.tm_min << 5 | tm.tm_sec);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/q40/
H A Dconfig.c221 Q40_RTC_SECS = bin2bcd(t->tm_sec);
240 t->tm_sec = bcd2bin (Q40_RTC_SECS);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dloslib.c209 setfield(L, "sec", stm->tm_sec);
249 ts.tm_sec = getfield(L, "sec", 0);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/apollo/
H A Dconfig.c213 t->tm_sec=rtc->second;
221 rtc->second=t->tm_sec;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dparseutils.c430 dt->tm_sec = val;
478 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
538 dt.tm_hour = dt.tm_min = dt.tm_sec = 0;
563 dt.tm_sec = strtol(p, (char **)&q, 10);
581 t = dt.tm_hour * 3600 + dt.tm_min * 60 + dt.tm_sec;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_time.c142 tm.tm_sec = second;
314 t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
318 t->tm_hour, t->tm_min, t->tm_sec);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/
H A Dreplace.c138 epoch += t->tm_hour * HOUR + t->tm_min * MINUTE + t->tm_sec;
141 t->tm_sec = u->tm_sec;

Completed in 110 milliseconds

1234567891011>>