| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-cn3010-evb-hs5.c | 85 if (!tms) in validate_tm_struct() 88 TM_CHECK(tms->tm_sec < 0 || tms->tm_sec > 60, "second"); /* + Leap sec */ in validate_tm_struct() 89 TM_CHECK(tms->tm_min < 0 || tms->tm_min > 59, "minute"); in validate_tm_struct() 90 TM_CHECK(tms->tm_hour < 0 || tms->tm_hour > 23, "hour"); in validate_tm_struct() 91 TM_CHECK(tms->tm_mday < 1 || tms->tm_mday > 31, "day"); in validate_tm_struct() 92 TM_CHECK(tms->tm_wday < 0 || tms->tm_wday > 6, "day of week"); in validate_tm_struct() 93 TM_CHECK(tms->tm_mon < 0 || tms->tm_mon > 11, "month"); in validate_tm_struct() 94 TM_CHECK(tms->tm_year < 0 || tms->tm_year > 200,"year"); in validate_tm_struct() 110 struct tm tms; in cvmx_rtc_ds1337_read() local 133 tms.tm_hour = (tms.tm_hour + 12) % 24; in cvmx_rtc_ds1337_read() [all …]
|
| /f-stack/dpdk/app/test/ |
| H A D | test_timer_perf.c | 41 struct rte_timer *tms; in test_timer_perf() local 45 tms = rte_malloc(NULL, sizeof(*tms) * MAX_ITERATIONS, 0); in test_timer_perf() 48 rte_timer_init(&tms[i]); in test_timer_perf() 59 rte_timer_reset(&tms[i], ticks, SINGLE, lcore_id, in test_timer_perf() 85 rte_timer_reset(&tms[i], rte_rand() % ticks, SINGLE, lcore_id, in test_timer_perf() 121 rte_timer_reset(&tms[0], ticks * 100, SINGLE, lcore_id, in test_timer_perf() 130 rte_free(tms); in test_timer_perf()
|
| /f-stack/dpdk/lib/librte_ip_frag/ |
| H A D | ip_frag_internal.c | 19 const struct ip_frag_key *key, uint64_t tms) in ip_frag_tbl_add() argument 22 ip_frag_reset(fp, tms); in ip_frag_tbl_add() 30 struct ip_frag_pkt *fp, uint64_t tms) in ip_frag_tbl_reuse() argument 33 ip_frag_reset(fp, tms); in ip_frag_tbl_reuse() 223 const struct ip_frag_key *key, uint64_t tms) in ip_frag_find() argument 253 if (max_cycles + lru->start < tms) { in ip_frag_find() 264 ip_frag_tbl_add(tbl, free, key, tms); in ip_frag_find() 273 } else if (max_cycles + pkt->start < tms) { in ip_frag_find() 274 ip_frag_tbl_reuse(tbl, dr, pkt, tms); in ip_frag_find() 335 else if (max_cycles + p1[i].start < tms) in ip_frag_lookup() [all …]
|
| H A D | ip_frag_common.h | 41 const struct ip_frag_key *key, uint64_t tms); 44 const struct ip_frag_key *key, uint64_t tms, 137 ip_frag_reset(struct ip_frag_pkt *fp, uint64_t tms) in ip_frag_reset() argument 145 fp->start = tms; in ip_frag_reset()
|
| H A D | rte_ip_frag.h | 200 struct rte_mbuf *mb, uint64_t tms, struct rte_ipv6_hdr *ip_hdr, 274 struct rte_mbuf *mb, uint64_t tms, struct rte_ipv4_hdr *ip_hdr); 332 struct rte_ip_frag_death_row *dr, uint64_t tms);
|
| H A D | rte_ipv4_reassembly.c | 99 struct rte_ip_frag_death_row *dr, struct rte_mbuf *mb, uint64_t tms, in rte_ipv4_frag_reassemble_packet() argument 127 mb, tms, key.src_dst[0], key.id, ip_ofs, ip_len, ip_flag, in rte_ipv4_frag_reassemble_packet() 138 if ((fp = ip_frag_find(tbl, dr, &key, tms)) == NULL) { in rte_ipv4_frag_reassemble_packet()
|
| H A D | rte_ipv6_reassembly.c | 138 struct rte_ip_frag_death_row *dr, struct rte_mbuf *mb, uint64_t tms, in rte_ipv6_frag_reassemble_packet() argument 169 mb, tms, IPv6_KEY_BYTES(key.src_dst), key.id, ip_ofs, ip_len, in rte_ipv6_frag_reassemble_packet() 181 fp = ip_frag_find(tbl, dr, &key, tms); in rte_ipv6_frag_reassemble_packet()
|
| H A D | rte_ip_frag_common.c | 128 struct rte_ip_frag_death_row *dr, uint64_t tms) in rte_frag_table_del_expired_entries() argument 136 if (max_cycles + fp->start < tms) { in rte_frag_table_del_expired_entries()
|
| /f-stack/freebsd/sys/ |
| H A D | times.h | 50 struct tms { struct 61 clock_t times(struct tms *);
|
| /f-stack/freebsd/contrib/device-tree/Bindings/soc/qcom/ |
| H A D | qcom,apr.txt | 56 "tms/servreg", "msm/adsp/audio_pd". 57 "tms/servreg", "msm/modem/wlan_pd". 58 "tms/servreg", "msm/slpi/sensor_pd". 124 qcom,protection-domain = "tms/servreg", "msm/slpi/sensor_pd";
|
| /f-stack/dpdk/examples/ip_reassembly/ |
| H A D | main.c | 309 struct lcore_queue_conf *qconf, uint64_t tms) in reassemble() argument 344 mo = rte_ipv4_frag_reassemble_packet(tbl, dr, m, tms, ip_hdr); in reassemble() 388 mo = rte_ipv6_frag_reassemble_packet(tbl, dr, m, tms, ip_hdr, frag_hdr); in reassemble()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/pinctrl/ |
| H A D | img,pistachio-pinctrl.txt | 146 tms
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | module.c | 3065 } *tms = (struct typemethods*) typemethods_ptr; in RM_CreateDataType() local 3070 mt->rdb_load = tms->rdb_load; in RM_CreateDataType() 3071 mt->rdb_save = tms->rdb_save; in RM_CreateDataType() 3072 mt->aof_rewrite = tms->aof_rewrite; in RM_CreateDataType() 3073 mt->mem_usage = tms->mem_usage; in RM_CreateDataType() 3074 mt->digest = tms->digest; in RM_CreateDataType() 3075 mt->free = tms->free; in RM_CreateDataType()
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstdmt_compress.c | 58 { struct tms junk; clock_t newTicks = (clock_t) times(&junk); in GetCurrentClockTimeMicroseconds()
|