Home
last modified time | relevance | path

Searched refs:sec (Results 301 - 325 of 1494) sorted by relevance

1...<<11121314151617181920>>...60

/kernel/linux/linux-5.10/include/asm-generic/
H A Dvmlinux.lds.h146 #define CPU_KEEP(sec) *(.cpu##sec)
147 #define CPU_DISCARD(sec)
149 #define CPU_KEEP(sec)
150 #define CPU_DISCARD(sec) *(.cpu##sec)
154 #define MEM_KEEP(sec) *(.mem##sec)
155 #define MEM_DISCARD(sec)
157 #define MEM_KEEP(sec)
[all...]
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H A Dhyp_image.h64 #define KVM_NVHE_ALIAS_HYP(first, sec) kvm_nvhe_sym(first) = kvm_nvhe_sym(sec);
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igc/
H A Digc_tsn.c67 u32 sec, nsec, cycle; in igc_tsn_enable_offload() local
105 sec = rd32(IGC_SYSTIMH); in igc_tsn_enable_offload()
107 systim = ktime_set(sec, nsec); in igc_tsn_enable_offload()
/kernel/linux/linux-5.10/fs/ceph/
H A Dmetric.h54 __le32 data_len; /* length of sizeof(sec + nsec) */
55 __le32 sec; member
66 __le32 data_len; /* length of sizeof(sec + nsec) */
67 __le32 sec; member
78 __le32 data_len; /* length of sizeof(sec + nsec) */
79 __le32 sec; member
/kernel/liteos_a/kernel/extended/perf/pmu/
H A Dperf_timed_pmu.c90 .tv.sec = period / US_PER_SECOND, in OsPerfTimedConfig()
93 PRINT_INFO("hrtimer config period - sec:%d, usec:%d\n", g_perfTimed.cfgTime.tv.sec, in OsPerfTimedConfig()
155 .tv.sec = 0, in OsTimedPmuInit()
/third_party/ltp/testcases/kernel/syscalls/getitimer/
H A Dgetitimer01.c33 static void set_setitimer_value(int sec, int usec) in set_setitimer_value() argument
35 value->it_value.tv_sec = sec; in set_setitimer_value()
37 value->it_interval.tv_sec = sec; in set_setitimer_value()
/third_party/ltp/testcases/kernel/syscalls/setitimer/
H A Dsetitimer01.c51 static void set_setitimer_value(int sec, int usec) in set_setitimer_value() argument
53 value->it_value.tv_sec = sec; in set_setitimer_value()
55 value->it_interval.tv_sec = sec; in set_setitimer_value()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dscan.h37 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
39 int sec, int usec);
65 void wpa_supplicant_update_scan_int(struct wpa_supplicant *wpa_s, int sec);
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
H A DRockchip_OSAL_ETC.c163 unsigned long sec, usec, time; in MeasureTime() local
165 sec = stop->tv_sec - start->tv_sec; in MeasureTime()
170 sec--; in MeasureTime()
173 time = sec * 1000000 + (usec); // 1000000:time shift in MeasureTime()
/third_party/libinput/tools/
H A Dlibinput-analyze-touch-down-state.py138 sec=evdev[0],
183 last_time = e.sec * 1000000 + e.usec
186 t = e.sec * 1000000 + e.usec
192 "{:2d}.{:06d} | {:+7.3f}s | {}".format(e.sec, e.usec, tdelta, fmt)
H A Dlibinput-measure-touchpad-tap.py53 def tv2us(sec, usec):
54 return sec * 1000000 + usec
130 t = Touch(tv2us(event.sec, event.usec))
133 self.touches[-1].up = tv2us(event.sec, event.usec)
/third_party/python/Include/
H A Ddatetime.h226 #define PyDateTime_FromDateAndTime(year, month, day, hour, min, sec, usec) \
228 min, sec, usec, Py_None, PyDateTimeAPI->DateTimeType)
230 #define PyDateTime_FromDateAndTimeAndFold(year, month, day, hour, min, sec, usec, fold) \
232 min, sec, usec, Py_None, fold, PyDateTimeAPI->DateTimeType)
/kernel/liteos_m/testsuites/unittest/xts/time/
H A Dalarm_test.h53 #define INIT_TM(tmSt, year, mon, day, hour, min, sec, wday) do { \
54 (tmSt).tm_sec = (sec); \
/third_party/icu/icu4c/source/test/cintltst/
H A Dccaltst.h83 int32_t hr, int32_t min, int32_t sec, int32_t ms,
92 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
/third_party/icu/icu4c/source/test/intltest/
H A Dcaltztst.h42 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0);
46 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0);
49 void dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec);
/third_party/musl/libc-test/src/functionalext/supplement/time/time_gtest/
H A Dtime_ftime_test.cpp25 auto sec = std::chrono::duration_cast<std::chrono::seconds>(duration).count(); in HWTEST_F() local
28 long secDiff = sec - tmb.time; in HWTEST_F()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_date_time.cpp689 time_t sec; in CurrentDateTimeAndZone() local
691 time (&sec); in CurrentDateTimeAndZone()
700 t = *localtime (&sec); in CurrentDateTimeAndZone()
701 zt = *gmtime (&sec); in CurrentDateTimeAndZone()
755 time_t sec = (time_t) unixTime; in DecodeUnixTime() local
767 tm *tp = localtime (&sec); in DecodeUnixTime()
773 tm *tp = gmtime (&sec); in DecodeUnixTime()
/kernel/linux/linux-5.10/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_softmac.c2691 struct ieee80211_security sec = { in ieee80211_wpa_set_auth_algs() local
2696 sec.auth_mode = WLAN_AUTH_SHARED_KEY; in ieee80211_wpa_set_auth_algs()
2700 sec.auth_mode = WLAN_AUTH_OPEN; in ieee80211_wpa_set_auth_algs()
2704 sec.auth_mode = WLAN_AUTH_LEAP; in ieee80211_wpa_set_auth_algs()
2710 ieee->set_security(ieee->dev, &sec); in ieee80211_wpa_set_auth_algs()
2743 struct ieee80211_security sec = { in ieee80211_wpa_set_param() local
2752 sec.flags |= SEC_LEVEL; in ieee80211_wpa_set_param()
2753 sec.level = SEC_LEVEL_0; in ieee80211_wpa_set_param()
2755 sec.flags |= SEC_LEVEL; in ieee80211_wpa_set_param()
2756 sec in ieee80211_wpa_set_param()
2800 struct ieee80211_security sec = { ieee80211_wpa_set_encryption() local
[all...]
/kernel/linux/linux-6.6/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_softmac.c2701 struct ieee80211_security sec = { in ieee80211_wpa_set_auth_algs() local
2706 sec.auth_mode = WLAN_AUTH_SHARED_KEY; in ieee80211_wpa_set_auth_algs()
2710 sec.auth_mode = WLAN_AUTH_OPEN; in ieee80211_wpa_set_auth_algs()
2714 sec.auth_mode = WLAN_AUTH_LEAP; in ieee80211_wpa_set_auth_algs()
2720 ieee->set_security(ieee->dev, &sec); in ieee80211_wpa_set_auth_algs()
2753 struct ieee80211_security sec = { in ieee80211_wpa_set_param() local
2762 sec.flags |= SEC_LEVEL; in ieee80211_wpa_set_param()
2763 sec.level = SEC_LEVEL_0; in ieee80211_wpa_set_param()
2765 sec.flags |= SEC_LEVEL; in ieee80211_wpa_set_param()
2766 sec in ieee80211_wpa_set_param()
2810 struct ieee80211_security sec = { ieee80211_wpa_set_encryption() local
[all...]
/kernel/linux/linux-5.10/drivers/mtd/
H A Dssfdc.c58 unsigned char sec; member
75 unsigned char *sec) in get_chs()
89 if (sec) in get_chs()
90 *sec = chs_table[k].sec; in get_chs()
74 get_chs(unsigned long size, unsigned short *cyl, unsigned char *head, unsigned char *sec) get_chs() argument
/kernel/linux/linux-5.10/net/ieee802154/
H A Dheader_ops.c108 rc = ieee802154_hdr_push_sechdr(buf + pos, &hdr->sec); in ieee802154_hdr_push()
255 pos += ieee802154_hdr_get_sechdr(skb->data + pos, &hdr->sec); in ieee802154_hdr_pull()
300 pos += ieee802154_hdr_get_sechdr(buf + pos, &hdr->sec); in ieee802154_hdr_peek()
312 hlen += ieee802154_sechdr_lengths[hdr->sec.key_id_mode] - 1; in ieee802154_max_payload()
313 hlen += ieee802154_sechdr_authtag_len(&hdr->sec); in ieee802154_max_payload()
/kernel/linux/linux-6.6/drivers/mtd/
H A Dssfdc.c58 unsigned char sec; member
75 unsigned char *sec) in get_chs()
89 if (sec) in get_chs()
90 *sec = chs_table[k].sec; in get_chs()
74 get_chs(unsigned long size, unsigned short *cyl, unsigned char *head, unsigned char *sec) get_chs() argument
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_ptp.c53 u32 sec, nsec; in stmmac_adjust_time() local
67 sec = quotient; in stmmac_adjust_time()
81 stmmac_adjust_systime(priv, priv->ptpaddr, sec, nsec, neg_adj, xmac); in stmmac_adjust_time()
182 cfg->start.tv_sec = rq->perout.start.sec; in stmmac_enable()
184 cfg->period.tv_sec = rq->perout.period.sec; in stmmac_enable()
/kernel/linux/linux-6.6/net/ieee802154/
H A Dheader_ops.c108 rc = ieee802154_hdr_push_sechdr(buf + pos, &hdr->sec); in ieee802154_hdr_push()
302 pos += ieee802154_hdr_get_sechdr(skb->data + pos, &hdr->sec); in ieee802154_hdr_pull()
360 pos += ieee802154_hdr_get_sechdr(buf + pos, &hdr->sec); in ieee802154_hdr_peek()
372 hlen += ieee802154_sechdr_lengths[hdr->sec.key_id_mode] - 1; in ieee802154_max_payload()
373 hlen += ieee802154_sechdr_authtag_len(&hdr->sec); in ieee802154_max_payload()
/test/xts/device_attest_lite/services/core/network/
H A Dattest_channel.c67 if (before->sec > after->sec) { in X509CheckTime()
69 } else if (before->sec < after->sec) { in X509CheckTime()
94 curTime.sec = theNowTm->tm_sec; in VerifyCrtTime()

Completed in 19 milliseconds

1...<<11121314151617181920>>...60