/net-tools-latest/tinydtls-0.8.2/ |
D | session.c | 49 const session_t *b) { in _dtls_address_equals_impl() 80 dtls_session_equals(const session_t *a, const session_t *b) { in dtls_session_equals()
|
D | global.h | 127 equals(unsigned char *a, unsigned char *b, size_t len) { in equals()
|
D | utlist.h | 85 #define _CASTASGN(a,b) { char **_alias = (char**)&(a); *_alias=(char*)(b); } argument 93 #define _CASTASGN(a,b) (a)=(b) argument
|
/net-tools-latest/mbedtls-2.4.0/library/ |
D | md4.c | 60 #define GET_UINT32_LE(n,b,i) \ argument 70 #define PUT_UINT32_LE(n,b,i) \ argument 142 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in mbedtls_md4_process() argument 165 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in mbedtls_md4_process() argument 188 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in mbedtls_md4_process() argument
|
D | aes.c | 66 #define GET_UINT32_LE(n,b,i) \ argument 76 #define PUT_UINT32_LE(n,b,i) \ argument 200 #define V(a,b,c,d) 0x##a##b##c##d argument 204 #define V(a,b,c,d) 0x##b##c##d##a argument 208 #define V(a,b,c,d) 0x##c##d##a##b argument 212 #define V(a,b,c,d) 0x##d##a##b##c argument 327 #define V(a,b,c,d) 0x##a##b##c##d argument 331 #define V(a,b,c,d) 0x##b##c##d##a argument 335 #define V(a,b,c,d) 0x##c##d##a##b argument 339 #define V(a,b,c,d) 0x##d##a##b##c argument
|
D | ecp_curves.c | 45 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 51 #define BYTES_TO_T_UINT_2( a, b ) \ argument 54 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 60 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 70 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 73 #define BYTES_TO_T_UINT_2( a, b ) \ argument 578 const mbedtls_mpi_uint *b, size_t blen, in ecp_group_load() 922 #define INIT( b ) \ argument
|
D | md5.c | 59 #define GET_UINT32_LE(n,b,i) \ argument 69 #define PUT_UINT32_LE(n,b,i) \ argument 135 #define P(a,b,c,d,k,s,t) \ in mbedtls_md5_process() argument
|
D | ripemd160.c | 53 #define GET_UINT32_LE(n,b,i) \ argument 63 #define PUT_UINT32_LE(n,b,i) \ argument 150 #define P( a, b, c, d, e, r, s, f, k ) \ in mbedtls_ripemd160_process() argument 155 #define P2( a, b, c, d, e, r, s, rp, sp ) \ in mbedtls_ripemd160_process() argument
|
D | blowfish.c | 51 #define GET_UINT32_BE(n,b,i) \ argument 61 #define PUT_UINT32_BE(n,b,i) \ argument 83 unsigned short a, b, c, d; in F() local
|
D | xtea.c | 54 #define GET_UINT32_BE(n,b,i) \ argument 64 #define PUT_UINT32_BE(n,b,i) \ argument
|
D | sha1.c | 59 #define GET_UINT32_BE(n,b,i) \ argument 69 #define PUT_UINT32_BE(n,b,i) \ argument 143 #define P(a,b,c,d,e,x) \ in mbedtls_sha1_process() argument
|
D | sha256.c | 62 #define GET_UINT32_BE(n,b,i) \ argument 72 #define PUT_UINT32_BE(n,b,i) \ argument 175 #define P(a,b,c,d,e,f,g,h,x,K) \ argument
|
D | sha512.c | 68 #define GET_UINT64_BE(n,b,i) \ argument 82 #define PUT_UINT64_BE(n,b,i) \ argument 217 #define P(a,b,c,d,e,f,g,h,x,K) \ in mbedtls_sha512_process() argument
|
D | des.c | 60 #define GET_UINT32_BE(n,b,i) \ argument 70 #define PUT_UINT32_BE(n,b,i) \ argument 307 #define SWAP(a,b) { uint32_t t = a; a = b; b = t; t = 0; } argument
|
D | arc4.c | 104 int x, y, a, b; in mbedtls_arc4_crypt() local
|
D | bignum.c | 1064 int mbedtls_mpi_add_int( mbedtls_mpi *X, const mbedtls_mpi *A, mbedtls_mpi_sint b ) in mbedtls_mpi_add_int() 1080 int mbedtls_mpi_sub_int( mbedtls_mpi *X, const mbedtls_mpi *A, mbedtls_mpi_sint b ) in mbedtls_mpi_sub_int() 1104 void mpi_mul_hlp( size_t i, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d, mbedtls_mpi_uint b ) in mpi_mul_hlp() 1205 int mbedtls_mpi_mul_int( mbedtls_mpi *X, const mbedtls_mpi *A, mbedtls_mpi_uint b ) in mbedtls_mpi_mul_int() 1432 int mbedtls_mpi_div_int( mbedtls_mpi *Q, mbedtls_mpi *R, const mbedtls_mpi *A, mbedtls_mpi_sint b ) in mbedtls_mpi_div_int() 1471 int mbedtls_mpi_mod_int( mbedtls_mpi_uint *r, const mbedtls_mpi *A, mbedtls_mpi_sint b ) in mbedtls_mpi_mod_int()
|
D | gcm.c | 61 #define GET_UINT32_BE(n,b,i) \ argument 71 #define PUT_UINT32_BE(n,b,i) \ argument
|
/net-tools-latest/tinydtls-0.8.2/sha2/ |
D | sha2.c | 221 #define R(b,x) ((x) >> (b)) argument 223 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b)))) argument 225 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) argument 385 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument 396 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument 405 #define ROUND256(a,b,c,d,e,f,g,h) \ argument 417 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform() local 475 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform() local 713 #define ROUND512_0_TO_15(a,b,c,d,e,f,g,h) \ argument 724 #define ROUND512_0_TO_15(a,b,c,d,e,f,g,h) \ argument [all …]
|
/net-tools-latest/libcoap/src/ |
D | address.c | 17 coap_address_equals(const coap_address_t *a, const coap_address_t *b) { in coap_address_equals()
|
D | block.c | 22 #define min(a,b) ((a) < (b) ? (a) : (b)) argument
|
/net-tools-latest/libcoap/include/coap/ |
D | coap_time.h | 128 static inline int coap_time_lt(coap_tick_t a, coap_tick_t b) { in coap_time_lt() 136 static inline int coap_time_le(coap_tick_t a, coap_tick_t b) { in coap_time_le()
|
D | address.h | 132 coap_address_equals(const coap_address_t *a, const coap_address_t *b) { in coap_address_equals()
|
/net-tools-latest/mbedtls-2.4.0/programs/pkey/ |
D | ecdsa.c | 94 #define dump_buf( a, b, c ) argument 95 #define dump_pubkey( a, b ) argument
|
/net-tools-latest/libcoap/examples/contiki/ |
D | server.c | 88 # define min(a,b) ((a) < (b) ? (a) : (b)) argument
|
/net-tools-latest/libcoap/examples/ |
D | coap-rd.c | 47 #define min(a,b) ((a) < (b) ? (a) : (b)) argument 524 unsigned char *b = _b; in hnd_post_rd() local
|