Searched refs:sec (Results 101 - 125 of 277) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/momentum/ocelot_c/
H A Dsetup.c140 unsigned int year, month, day, hour, min, sec; local
156 sec = BCD2BIN(rtc_base[0x7ff9]);
162 return mktime(year, month, day, hour, min, sec);
165 int m48t37y_set_time(unsigned long sec) argument
176 to_tm(sec, &tm);
193 /* hour/min/sec */
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/sibyte/swarm/
H A Drtc_xicor1241.c172 unsigned int year, mon, day, hour, min, sec, y2k; local
176 sec = xicor_read(X1241REG_SC);
193 sec = BCD2BIN(sec);
203 return mktime(year, mon, day, hour, min, sec);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/cris/arch-v10/drivers/
H A Dds1302.c390 unsigned char mon, day, hrs, min, sec, leap_yr; local
404 sec = rtc_tm.tm_sec;
418 if ((hrs >= 24) || (min >= 60) || (sec >= 60))
426 BIN_TO_BCD(sec);
439 CMOS_WRITE(sec, RTC_SECONDS);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/hpfs/
H A Danode.c14 struct bplus_header *btree, unsigned sec,
25 if (btree->u.internal[i].file_secno > sec) {
32 hpfs_error(s, "sector %08x not found in internal anode %08x", sec, a);
37 if (btree->u.external[i].file_secno <= sec &&
38 btree->u.external[i].file_secno + btree->u.external[i].length > sec) {
39 a = btree->u.external[i].disk_secno + sec - btree->u.external[i].file_secno;
53 hpfs_error(s, "sector %08x not found in external anode %08x", sec, a);
324 static secno anode_lookup(struct super_block *s, anode_secno a, unsigned sec) argument
329 return hpfs_bplus_lookup(s, NULL, &anode->btree, sec, bh);
337 secno sec; local
13 hpfs_bplus_lookup(struct super_block *s, struct inode *inode, struct bplus_header *btree, unsigned sec, struct buffer_head *bh) argument
360 secno sec; local
[all...]
H A Dmap.c19 secno sec; local
24 sec = hpfs_sb(s)->sb_bmp_dir[bmp_block];
25 if (!sec || sec > hpfs_sb(s)->sb_fs_size-4) {
26 hpfs_error(s, "invalid bitmap block pointer %08x -> %08x at %s", bmp_block, sec, id);
29 return hpfs_map_4sectors(s, sec, qbh, 4);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-wav.c47 uint32_t sec, ms; local
231 sec = data_length / (bit_rate / 8);
233 psong->song_length = (sec * 1000) + ms;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-sparc/
H A Dmostek.h58 volatile unsigned char sec; /* Seconds (0-59) */ member in struct:mostek48t02
76 #define MSTK_STOP 0x80 /* Stop the clock oscillator. (sec) */
105 #define MSTK_REG_SEC(regs) MSTK_GET(regs,sec,SEC)
113 #define MSTK_SET_REG_SEC(regs,value) MSTK_SET(regs,sec,value,SEC)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/tests/server/
H A Dutil.c71 time_t sec; local
87 sec = epoch_offset + tv.tv_sec;
88 now = localtime(&sec); /* not thread safe but we don't care */
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dmodule.h178 #define __CRC_SYMBOL(sym, sec) \
182 __attribute__((section("__kcrctab" sec), unused)) \
185 #define __CRC_SYMBOL(sym, sec)
189 #define __EXPORT_SYMBOL(sym, sec) \
191 __CRC_SYMBOL(sym, sec) \
197 __attribute__((section("__ksymtab" sec), unused)) \
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/wireless/zd1211rw/
H A Dzd_mac.c1169 struct ieee80211_security *sec)
1172 struct ieee80211_security *secinfo = &ieee->sec;
1178 if (sec->flags & (1<<keyidx)) {
1179 secinfo->encode_alg[keyidx] = sec->encode_alg[keyidx];
1180 secinfo->key_sizes[keyidx] = sec->key_sizes[keyidx];
1181 memcpy(secinfo->keys[keyidx], sec->keys[keyidx],
1185 if (sec->flags & SEC_ACTIVE_KEY) {
1186 secinfo->active_key = sec->active_key;
1188 " .active_key = %d\n", sec->active_key);
1190 if (sec
1168 set_security(struct net_device *netdev, struct ieee80211_security *sec) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/
H A DMakefile557 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
558 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
561 --section=$$sec --center=OpenSSL \
563 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
567 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
569 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
574 sec
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/dvb/dvb-core/
H A Ddvb_demux.h66 struct dmx_section_feed sec; member in union:dvb_demux_feed::__anon4917
71 dmx_section_cb sec; member in union:dvb_demux_feed::__anon4918
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/cdrom/
H A Dsjcd.c200 return (bcd2bin(mp->frame) + bcd2bin(mp->sec) * 75
209 msf->sec = hsg / 75;
212 msf->sec = bin2bcd(msf->sec);
275 outb(pms->start.sec, SJCDPORT(0));
278 outb(pms->end.sec, SJCDPORT(0));
404 * Wait for status for 10 sec approx. Returns non-positive when timed out.
600 sjcd_disk_length.sec = info.un.track_msf.sec;
608 sjcd_disk_length.sec, sjcd_disk_lengt
[all...]
H A Dgscd.h85 unsigned char sec; member in struct:msf
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/
H A Dds1286.c188 unsigned char hrs, min, sec; local
200 sec = alm_tm.tm_sec;
208 if (sec != 0)
498 unsigned char mon, day, hrs, min, sec, leap_yr; local
509 sec = rtc_tm->tm_sec;
522 if ((hrs >= 24) || (min >= 60) || (sec >= 60))
531 BIN_TO_BCD(sec);
547 rtc_write(sec, RTC_SECONDS);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/sun3x/
H A Dtime.c50 h->sec = BIN2BCD(t->tm_sec);
60 t->tm_sec = BCD2BIN(h->sec);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/ospf6d/
H A Dospf6d.c87 long day, hour, min, sec, msec, usec, left;
93 sec = left;
101 if (secp) *secp = sec;
110 long day, hour, min, sec, msec, usec;
112 ospf6_timeval_decode (tv, &day, &hour, &min, &sec, &msec, &usec);
116 snprintf (secs, sizeof (secs), "%ld secs ", sec);
122 (min ? mins : ""), (sec ? secs : ""),
130 long day, hour, min, sec, msec, usec;
132 ospf6_timeval_decode (tv, &day, &hour, &min, &sec, &msec, &usec);
136 snprintf (secs, sizeof (secs), "%lds", sec);
86 long day, hour, min, sec, msec, usec, left; local
109 long day, hour, min, sec, msec, usec; local
129 long day, hour, min, sec, msec, usec; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68knommu/platform/68EZ328/
H A Dconfig.c38 void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-x86_64/
H A Dhpet.h72 extern int hpet_set_alarm_time(unsigned char hrs, unsigned char min, unsigned char sec);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/netfilter/
H A Dnfnetlink_log.h31 aligned_be64 sec; member in struct:nfulnl_msg_packet_timestamp
H A Dnfnetlink_queue.h28 aligned_be64 sec; member in struct:nfqnl_msg_packet_timestamp
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/sbus/char/
H A Drtc.c78 t->sec = MSTK_REG_SEC(regs);
105 MSTK_SET_REG_SEC(regs,t->sec);
124 if (__put_user(tm->sec, &utm->tm_sec) ||
142 if (__get_user(tm->sec, &utm->tm_sec) ||
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/
H A DMakefile.org895 if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
896 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
899 --section=$$sec --center=OpenSSL \
901 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
905 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
907 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlschemastypes.c67 double sec; member in struct:_xmlSchemaValDate
79 double sec; /* sec stores min and hour also */ member in struct:_xmlSchemaValDuration
1117 #define VALID_SEC(sec) ((sec >= 0) && (sec < 60))
1140 VALID_SEC(dt->sec) && VALID_TZO(dt->tzo))
1165 dt->value.date.sec); \
1372 PARSE_FLOAT(dt->sec, cur, ret);
1376 if ((!VALID_SEC(dt->sec)) || (!VALID_TZ
3536 double sec; local
3991 double sec; local
4036 double sec; local
4086 double sec; local
5827 double sec = 0, left; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlschemastypes.c67 double sec; member in struct:_xmlSchemaValDate
79 double sec; /* sec stores min and hour also */ member in struct:_xmlSchemaValDuration
1117 #define VALID_SEC(sec) ((sec >= 0) && (sec < 60))
1140 VALID_SEC(dt->sec) && VALID_TZO(dt->tzo))
1165 dt->value.date.sec); \
1372 PARSE_FLOAT(dt->sec, cur, ret);
1376 if ((!VALID_SEC(dt->sec)) || (!VALID_TZ
3539 double sec; local
3994 double sec; local
4039 double sec; local
4089 double sec; local
5830 double sec = 0, left; local
[all...]

Completed in 300 milliseconds

1234567891011>>