Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 84) sorted by relevance

1234

/lib/lwip/lwip/src/include/netif/ppp/
A Dpppdebug.h58 #define MAINDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
59 #define SYSDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
60 #define FSMDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
61 #define LCPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
62 #define IPCPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
63 #define IPV6CPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
64 #define UPAPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
65 #define CHAPDEBUG(a) LWIP_DEBUGF(LWIP_DBG_LEVEL_WARNING, a) argument
66 #define PPPDEBUG(a, b) LWIP_DEBUGF(a, b) argument
/lib/mbedtls/external/mbedtls/3rdparty/everest/library/kremlib/
A DFStar_UInt128_extracted.c25 static uint64_t FStar_UInt128_constant_time_carry(uint64_t a, uint64_t b) in FStar_UInt128_constant_time_carry()
30 static uint64_t FStar_UInt128_carry(uint64_t a, uint64_t b) in FStar_UInt128_carry()
103 FStar_UInt128_uint128 FStar_UInt128_lognot(FStar_UInt128_uint128 a) in FStar_UInt128_lognot()
122 FStar_UInt128_shift_left_small(FStar_UInt128_uint128 a, uint32_t s) in FStar_UInt128_shift_left_small()
137 FStar_UInt128_shift_left_large(FStar_UInt128_uint128 a, uint32_t s) in FStar_UInt128_shift_left_large()
166 FStar_UInt128_shift_right_small(FStar_UInt128_uint128 a, uint32_t s) in FStar_UInt128_shift_right_small()
181 FStar_UInt128_shift_right_large(FStar_UInt128_uint128 a, uint32_t s) in FStar_UInt128_shift_right_large()
199 bool FStar_UInt128_eq(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b) in FStar_UInt128_eq()
252 FStar_UInt128_uint128 FStar_UInt128_uint64_to_uint128(uint64_t a) in FStar_UInt128_uint64_to_uint128()
258 uint64_t FStar_UInt128_uint128_to_uint64(FStar_UInt128_uint128 a) in FStar_UInt128_uint128_to_uint64()
[all …]
A DFStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c13 uint64_t FStar_UInt64_eq_mask(uint64_t a, uint64_t b) in FStar_UInt64_eq_mask()
22 uint64_t FStar_UInt64_gte_mask(uint64_t a, uint64_t b) in FStar_UInt64_gte_mask()
35 uint32_t FStar_UInt32_eq_mask(uint32_t a, uint32_t b) in FStar_UInt32_eq_mask()
44 uint32_t FStar_UInt32_gte_mask(uint32_t a, uint32_t b) in FStar_UInt32_gte_mask()
57 uint16_t FStar_UInt16_eq_mask(uint16_t a, uint16_t b) in FStar_UInt16_eq_mask()
66 uint16_t FStar_UInt16_gte_mask(uint16_t a, uint16_t b) in FStar_UInt16_gte_mask()
79 uint8_t FStar_UInt8_eq_mask(uint8_t a, uint8_t b) in FStar_UInt8_eq_mask()
88 uint8_t FStar_UInt8_gte_mask(uint8_t a, uint8_t b) in FStar_UInt8_gte_mask()
/lib/lwip/lwip/src/include/lwip/
A Dinet.h97 #define IN_CLASSA(a) IP_CLASSA(a) argument
121 #define IN_MULTICAST(a) IP_MULTICAST(a) argument
123 #define IN_EXPERIMENTAL(a) IP_EXPERIMENTAL(a) argument
124 #define IN_BADCLASS(a) IP_BADCLASS(a) argument
128 #define IN6_IS_ADDR_UNSPECIFIED(a) ip6_addr_isany((ip6_addr_t*)(a)) argument
129 #define IN6_IS_ADDR_LOOPBACK(a) ip6_addr_isloopback((ip6_addr_t*)(a)) argument
130 #define IN6_IS_ADDR_MULTICAST(a) ip6_addr_ismulticast((ip6_addr_t*)(a)) argument
131 #define IN6_IS_ADDR_LINKLOCAL(a) ip6_addr_islinklocal((ip6_addr_t*)(a)) argument
132 #define IN6_IS_ADDR_SITELOCAL(a) ip6_addr_issitelocal((ip6_addr_t*)(a)) argument
133 #define IN6_IS_ADDR_V4MAPPED(a) ip6_addr_isipv4mappedipv6((ip6_addr_t*)(a)) argument
[all …]
A Dip4_addr.h75 #define IP_CLASSA(a) ((((u32_t)(a)) & 0x80000000UL) == 0) argument
81 #define IP_CLASSB(a) ((((u32_t)(a)) & 0xc0000000UL) == 0x80000000UL) argument
87 #define IP_CLASSC(a) ((((u32_t)(a)) & 0xe0000000UL) == 0xc0000000UL) argument
92 #define IP_CLASSD(a) (((u32_t)(a) & 0xf0000000UL) == 0xe0000000UL) argument
96 #define IP_MULTICAST(a) IP_CLASSD(a) argument
98 #define IP_EXPERIMENTAL(a) (((u32_t)(a) & 0xf0000000UL) == 0xf0000000UL) argument
99 #define IP_BADCLASS(a) (((u32_t)(a) & 0xf0000000UL) == 0xf0000000UL) argument
104 #define IP4_ADDR(ipaddr, a,b,c,d) (ipaddr)->addr = PP_HTONL(LWIP_MAKEU32(a,b,c,d)) argument
169 #define ip4_addr_debug_print_parts(debug, a, b, c, d) \ argument
/lib/zlib/
A Dadler32.c23 # define MOD(a) \ argument
43 # define MOD4(a) \ argument
52 # define MOD(a) a %= BASE argument
53 # define MOD4(a) a %= BASE argument
/lib/mbedtls/external/mbedtls/library/
A Daesce.c410 #define vreinterpretq_u64_p64(a) ((uint64x2_t) a) argument
414 static inline poly128_t vmull_p64(poly64_t a, poly64_t b) in vmull_p64()
424 static inline poly128_t vmull_high_p64(poly64x2_t a, poly64x2_t b) in vmull_high_p64()
470 #define vreinterpretq_p64_u8(a) ((poly64x2_t) a) argument
471 #define vreinterpretq_u8_p128(a) ((uint8x16_t) a) argument
473 static inline poly64x1_t vget_low_p64(poly64x2_t a) in vget_low_p64()
490 #define MBEDTLS_VMULL_P64(a, b) vmull_p64((poly64_t) a, (poly64_t) b) argument
495 #define MBEDTLS_VMULL_P64(a, b) vmull_p64(a, b) argument
498 static inline uint8x16_t pmull_low(uint8x16_t a, uint8x16_t b) in pmull_low()
508 static inline uint8x16_t pmull_high(uint8x16_t a, uint8x16_t b) in pmull_high()
[all …]
A Dconstant_time.c68 int mbedtls_ct_memcmp(const void *a, in mbedtls_ct_memcmp()
121 int mbedtls_ct_memcmp_partial(const void *a, in mbedtls_ct_memcmp_partial()
198 uint64_t a = mbedtls_get_unaligned_uint64(src1 + i) & mask; in mbedtls_ct_memcpy_if() local
204 uint32_t a = mbedtls_get_unaligned_uint32(src1 + i) & mask; in mbedtls_ct_memcpy_if() local
A Dbn_mul.h38 #define MBEDTLS_BYTES_TO_T_UINT_4(a, b, c, d) \ argument
44 #define MBEDTLS_BYTES_TO_T_UINT_2(a, b) \ argument
47 #define MBEDTLS_BYTES_TO_T_UINT_8(a, b, c, d, e, f, g, h) \ argument
53 #define MBEDTLS_BYTES_TO_T_UINT_8(a, b, c, d, e, f, g, h) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_4(a, b, c, d) \ argument
66 #define MBEDTLS_BYTES_TO_T_UINT_2(a, b) \ argument
A Daria.c109 static inline void aria_a(uint32_t *a, uint32_t *b, in aria_a()
141 static inline void aria_sl(uint32_t *a, uint32_t *b, in aria_sl()
277 uint32_t a, b, c, d; in aria_fo_xor() local
299 uint32_t a, b, c, d; in aria_fe_xor() local
447 uint32_t a, b, c, d; in mbedtls_aria_crypt_ecb() local
A Dx509write.c31 #define CHECK_OVERFLOW_ADD(a, b) \ argument
/lib/
A Dlist_sort.c23 int (*cmp)(void *priv, struct list_head *a, in merge()
52 int (*cmp)(void *priv, struct list_head *a, in merge_and_restore_back_links()
106 int (*cmp)(void *priv, struct list_head *a, in list_sort()
205 static int __init cmp(void *priv, struct list_head *a, struct list_head *b) in cmp()
A Ddate.c17 #define days_in_year(a) (leapyear(a) ? 366 : 365) argument
18 #define days_in_month(a) (month_days[(a) - 1]) argument
A Dbch.c344 static inline unsigned int gf_mul(struct bch_control *bch, unsigned int a, in gf_mul()
351 static inline unsigned int gf_sqr(struct bch_control *bch, unsigned int a) in gf_sqr()
356 static inline unsigned int gf_div(struct bch_control *bch, unsigned int a, in gf_div()
363 static inline unsigned int gf_inv(struct bch_control *bch, unsigned int a) in gf_inv()
557 static int find_affine4_roots(struct bch_control *bch, unsigned int a, in find_affine4_roots()
655 unsigned int a, b, c, a2, b2, c2, e3, tmp[4]; in find_poly_deg3_roots() local
688 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local
749 const struct gf_poly *a, int *rep) in gf_poly_logrep()
761 static void gf_poly_mod(struct bch_control *bch, struct gf_poly *a, in gf_poly_mod()
797 static void gf_poly_div(struct bch_control *bch, struct gf_poly *a, in gf_poly_div()
[all …]
A Dqsort.c46 register char *a; in qsort() local
A Drational.c55 unsigned long dp, a; in rational_best_approximation() local
/lib/libavb/
A Davb_rsa.c88 static void subM(const IAvbKey* key, uint32_t* a) { in subM()
99 static int geM(const IAvbKey* key, uint32_t* a) { in geM()
116 const uint32_t a, in montMulAdd()
139 static void montMul(const IAvbKey* key, uint32_t* c, uint32_t* a, uint32_t* b) { in montMul()
153 uint32_t* a = (uint32_t*)avb_malloc(key->len * sizeof(uint32_t)); in modpowF4() local
/lib/lwip/lwip/src/netif/ppp/polarssl/
A Darc4.c50 int i, j, k, a; in arc4_setup() local
78 int i, x, y, a, b; in arc4_crypt() local
A Dmd4.c115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() argument
138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() argument
161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
/lib/rsa/
A Drsa-mod-exp.c24 #define get_unaligned_be32(a) fdt32_to_cpu(*(uint32_t *)a) argument
25 #define put_unaligned_be32(a, b) (*(uint32_t *)(b) = cpu_to_fdt32(a)) argument
89 uint32_t result[], const uint32_t a, const uint32_t b[]) in montgomery_mul_add_step()
124 uint32_t result[], uint32_t a[], const uint32_t b[]) in montgomery_mul()
/lib/crypto/
A Dx509_helper.c30 bool a = asymmetric_key_id_same(cert->skid, in x509_check_for_self_signed() local
/lib/lwip/lwip/src/core/
A Dinit.c342 int a = 0; in lwip_init() local
/lib/mbedtls/external/mbedtls/programs/pkey/
A Decdsa.c72 #define dump_buf(a, b, c) argument
73 #define dump_pubkey(a, b) argument
/lib/efi_selftest/
A Defi_selftest_unaligned.c13 char a[8] __aligned(8); member
/lib/crypt/
A Dcrypt-port.h16 #define static_assert(a, b) _Static_assert(a, b) argument

Completed in 68 milliseconds

1234