Searched refs:u64_t (Results 1 - 12 of 12) sorted by relevance
/third_party/optimized-routines/math/ |
H A D | v_math.h | 46 typedef uint64_t u64_t; typedef 74 static inline u64_t 77 union { f64_t f; u64_t u; } r = {x}; in as_u64_f64() 81 as_f64_u64 (u64_t x) in as_f64_u64() 83 union { u64_t u; f64_t f; } r = {x}; in as_f64_u64() 87 as_s64_u64 (u64_t x) in as_s64_u64() 89 union { u64_t u; s64_t i; } r = {x}; in as_s64_u64() 92 static inline u64_t 95 union { s64_t i; u64_t u; } r = {x}; in as_u64_s64() 105 typedef u64_t v_u64_ [all...] |
H A D | v_exp.h | 13 extern const u64_t __v_exp_data[1 << V_EXP_TABLE_BITS] HIDDEN;
|
H A D | v_exp_data.c | 14 const u64_t __v_exp_data[] = {
|
/third_party/lwip/src/apps/snmp/ |
H A D | snmp_mib2_udp.c | 81 u64_t val64 = STATS_GET(mib2.udpindatagrams); in udp_get_value() 82 *((u64_t *)value) = val64; in udp_get_value() 84 return sizeof(u64_t); in udp_get_value() 87 u64_t val64 = STATS_GET(mib2.udpoutdatagrams); in udp_get_value() 88 *((u64_t *)value) = val64; in udp_get_value() 90 return sizeof(u64_t); in udp_get_value()
|
H A D | snmp_asn1.h | 102 err_t snmp_asn1_dec_u64t(struct snmp_pbuf_stream *pbuf_stream, u16_t len, u64_t *value); 103 void snmp_asn1_enc_u64t_cnt(u64_t value, u16_t *octets_needed); 104 err_t snmp_asn1_enc_u64t(struct snmp_pbuf_stream *pbuf_stream, u16_t octets_needed, u64_t value);
|
H A D | snmp_mib2_tcp.c | 127 u64_t val64 = STATS_GET(mib2.tcpinsegs); in tcp_get_value() 128 *((u64_t *)value) = val64; in tcp_get_value() 130 return sizeof(u64_t); in tcp_get_value() 133 u64_t val64 = STATS_GET(mib2.tcpoutsegs); in tcp_get_value() 134 *((u64_t *)value) = val64; in tcp_get_value() 136 return sizeof(u64_t); in tcp_get_value()
|
H A D | snmp_asn1.c | 608 * Returns octet count for an u64_t. 618 snmp_asn1_enc_u64t_cnt(u64_t value, u16_t *octets_needed) in snmp_asn1_enc_u64t_cnt() 644 snmp_asn1_dec_u64t(struct snmp_pbuf_stream *pbuf_stream, u16_t len, u64_t *value) in snmp_asn1_dec_u64t() 671 * Encodes u64_t (counter64) into a pbuf chained ASN1 msg. 681 snmp_asn1_enc_u64t(struct snmp_pbuf_stream *pbuf_stream, u16_t octets_needed, u64_t value) in snmp_asn1_enc_u64t()
|
H A D | snmp_msg.c | 1510 if (varbind->value_len != sizeof(u64_t)) { in snmp_varbind_length() 1513 snmp_asn1_enc_u64t_cnt(*(u64_t *)varbind->value, &len->value_value_len); in snmp_varbind_length() 1588 OVB_BUILD_EXEC(snmp_asn1_enc_u64t(pbuf_stream, len.value_value_len, *(u64_t *) varbind->value)); in snmp_append_outbound_varbind() 1935 VB_PARSE_EXEC(snmp_asn1_dec_u64t(&(enumerator->pbuf_stream), tlv.value_len, (u64_t *)varbind->value)); in snmp_vb_enumerator_get_next() 1936 varbind->value_len = sizeof(u64_t); in snmp_vb_enumerator_get_next()
|
/third_party/lwip/src/apps/sntp/ |
H A D | sntp.c | 121 # define SNTP_FRAC_TO_US(f) ((u32_t)(((u64_t)(f) * 1000000UL) >> 32)) 168 ((s64_t)(((u64_t)(s) << 32) | (u32_t)(f))) 320 sec = (s32_t)((u64_t)t4 >> 32); in sntp_process() 321 frac = (u32_t)((u64_t)t4); in sntp_process()
|
/third_party/lwip/src/include/netif/ |
H A D | bridgeif.h | 60 typedef u64_t bridgeif_portmask_t;
|
/third_party/lwip/src/include/lwip/ |
H A D | arch.h | 132 typedef uint64_t u64_t; typedef
|
/third_party/lwip/src/include/lwip/apps/ |
H A D | snmp_core.h | 150 u64_t u64;
|
Completed in 10 milliseconds