Searched refs:secs (Results 101 - 110 of 110) sorted by relevance

12345

/linux-master/kernel/bpf/
H A Dbtf.c5260 struct btf_sec_info secs[ARRAY_SIZE(btf_sec_info_offset)]; local
5268 /* Populate the secs from hdr */
5270 secs[i] = *(struct btf_sec_info *)((void *)hdr +
5273 sort(secs, ARRAY_SIZE(btf_sec_info_offset),
5280 if (expected_total < secs[i].off) {
5284 if (total < secs[i].off) {
5289 if (total > secs[i].off) {
5293 if (expected_total - total < secs[i].len) {
5298 total += secs[i].len;
/linux-master/tools/perf/
H A Dbuiltin-script.c783 unsigned long secs; local
884 secs = nsecs / NSEC_PER_SEC;
885 nsecs -= secs * NSEC_PER_SEC;
888 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
/linux-master/drivers/staging/gdm724x/
H A Dgdm_lte.c589 u16 secs; /* elapsed since client began member in struct:dhcp_packet
/linux-master/net/core/
H A Dsock.c811 void sock_set_sndtimeo(struct sock *sk, s64 secs) argument
814 if (secs && secs < MAX_SCHEDULE_TIMEOUT / HZ - 1)
815 WRITE_ONCE(sk->sk_sndtimeo, secs * HZ);
/linux-master/drivers/mmc/core/
H A Dmmc_test.c1907 unsigned long sz, int secs, int force_retuning)
1924 if (ts.tv_sec >= secs)
1906 mmc_test_rnd_perf(struct mmc_test_card *test, int write, int print, unsigned long sz, int secs, int force_retuning) argument
/linux-master/net/batman-adv/
H A Ddistributed-arp-table.c80 __be16 secs; member in struct:batadv_dhcp_packet
/linux-master/tools/lib/bpf/
H A Dlibbpf.c636 struct elf_sec_desc *secs; member in struct:elf_state
1385 struct elf_sec_desc *desc = &obj->efile.secs[sec_idx];
1455 zfree(&obj->efile.secs);
1907 sec_desc = &obj->efile.secs[sec_idx];
3729 obj->efile.secs = calloc(obj->efile.sec_cnt, sizeof(*obj->efile.secs));
3730 if (!obj->efile.secs)
3769 sec_desc = &obj->efile.secs[idx];
4342 switch (obj->efile.secs[shndx].sec_type) {
4364 switch (obj->efile.secs[shnd
[all...]
/linux-master/net/xfrm/
H A Dxfrm_policy.c322 static inline unsigned long make_jiffies(long secs) argument
324 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
327 return secs*HZ;
/linux-master/drivers/net/phy/mscc/
H A Dmscc_ptp.c478 shhwtstamps.hwtstamp = ktime_set(fifo.secs, fifo.ns);
/linux-master/include/net/
H A Dsock.h2950 void sock_set_sndtimeo(struct sock *sk, s64 secs);

Completed in 295 milliseconds

12345