Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 39) sorted by relevance

12

/openthread-3.4.0/third_party/mbedtls/repo/3rdparty/everest/include/everest/kremlin/
Dc_endianness.h21 # define htole64(x) OSSwapHostToLittleInt64(x) argument
22 # define le64toh(x) OSSwapLittleToHostInt64(x) argument
23 # define htobe64(x) OSSwapHostToBigInt64(x) argument
24 # define be64toh(x) OSSwapBigToHostInt64(x) argument
26 # define htole16(x) OSSwapHostToLittleInt16(x) argument
27 # define le16toh(x) OSSwapLittleToHostInt16(x) argument
28 # define htobe16(x) OSSwapHostToBigInt16(x) argument
29 # define be16toh(x) OSSwapBigToHostInt16(x) argument
31 # define htole32(x) OSSwapHostToLittleInt32(x) argument
32 # define le32toh(x) OSSwapLittleToHostInt32(x) argument
[all …]
/openthread-3.4.0/third_party/mbedtls/repo/library/
Dcommon.h60 #define MBEDTLS_BYTE_0( x ) ( (uint8_t) ( ( x ) & 0xff ) ) argument
61 #define MBEDTLS_BYTE_1( x ) ( (uint8_t) ( ( ( x ) >> 8 ) & 0xff ) ) argument
62 #define MBEDTLS_BYTE_2( x ) ( (uint8_t) ( ( ( x ) >> 16 ) & 0xff ) ) argument
63 #define MBEDTLS_BYTE_3( x ) ( (uint8_t) ( ( ( x ) >> 24 ) & 0xff ) ) argument
64 #define MBEDTLS_BYTE_4( x ) ( (uint8_t) ( ( ( x ) >> 32 ) & 0xff ) ) argument
65 #define MBEDTLS_BYTE_5( x ) ( (uint8_t) ( ( ( x ) >> 40 ) & 0xff ) ) argument
66 #define MBEDTLS_BYTE_6( x ) ( (uint8_t) ( ( ( x ) >> 48 ) & 0xff ) ) argument
67 #define MBEDTLS_BYTE_7( x ) ( (uint8_t) ( ( ( x ) >> 56 ) & 0xff ) ) argument
Dsha512.c34 #define UL64(x) x##ui64 argument
36 #define UL64(x) x##ULL argument
213 #define SHR(x,n) ((x) >> (n)) in mbedtls_internal_sha512_process() argument
214 #define ROTR(x,n) (SHR((x),(n)) | ((x) << (64 - (n)))) in mbedtls_internal_sha512_process() argument
216 #define S0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) in mbedtls_internal_sha512_process() argument
217 #define S1(x) (ROTR(x,19) ^ ROTR(x,61) ^ SHR(x, 6)) in mbedtls_internal_sha512_process() argument
219 #define S2(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39)) in mbedtls_internal_sha512_process() argument
220 #define S3(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41)) in mbedtls_internal_sha512_process() argument
222 #define F0(x,y,z) (((x) & (y)) | ((z) & ((x) | (y)))) in mbedtls_internal_sha512_process() argument
223 #define F1(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_sha512_process() argument
[all …]
Dsha256.c147 #define SHR(x,n) (((x) & 0xFFFFFFFF) >> (n)) argument
148 #define ROTR(x,n) (SHR(x,n) | ((x) << (32 - (n)))) argument
150 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3)) argument
151 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10)) argument
153 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22)) argument
154 #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25)) argument
156 #define F0(x,y,z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
157 #define F1(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
165 #define P(a,b,c,d,e,f,g,h,x,K) \ argument
Dmd4.c115 #define S(x,n) (((x) << (n)) | (((x) & 0xFFFFFFFF) >> (32 - (n)))) in mbedtls_internal_md4_process() argument
122 #define F(x, y, z) (((x) & (y)) | ((~(x)) & (z))) in mbedtls_internal_md4_process() argument
123 #define P(a,b,c,d,x,s) \ in mbedtls_internal_md4_process() argument
151 #define F(x,y,z) (((x) & (y)) | ((x) & (z)) | ((y) & (z))) in mbedtls_internal_md4_process() argument
152 #define P(a,b,c,d,x,s) \ in mbedtls_internal_md4_process() argument
179 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md4_process() argument
180 #define P(a,b,c,d,x,s) \ in mbedtls_internal_md4_process() argument
Daria.c72 static inline uint32_t aria_p1( uint32_t x ) in aria_p1()
81 static inline uint32_t aria_p1( uint32_t x ) in aria_p1()
93 #define ARIA_P1(x) ARIA_P2( ARIA_P3( x ) ) argument
97 #define ARIA_P1(x) ((((x) >> 8) & 0x00FF00FF) ^ (((x) & 0x00FF00FF) << 8)) argument
107 #define ARIA_P2(x) (((x) >> 16) ^ ((x) << 16)) argument
123 static inline uint32_t aria_p3( uint32_t x ) in aria_p3()
132 static inline uint32_t aria_p3( uint32_t x ) in aria_p3()
143 static inline uint32_t aria_p3( uint32_t x ) in aria_p3()
152 #define ARIA_P3(x) ARIA_P2( ARIA_P1 ( x ) ) argument
Dsha1.c130 #define S(x,n) (((x) << (n)) | (((x) & 0xFFFFFFFF) >> (32 - (n)))) in mbedtls_internal_sha1_process() argument
141 #define P(a,b,c,d,e,x) \ in mbedtls_internal_sha1_process() argument
154 #define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_sha1_process() argument
181 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() argument
208 #define F(x,y,z) (((x) & (y)) | ((z) & ((x) | (y)))) in mbedtls_internal_sha1_process() argument
235 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() argument
Dmd5.c114 #define S(x,n) \ in mbedtls_internal_md5_process() argument
129 #define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_md5_process() argument
150 #define F(x,y,z) ((y) ^ ((z) & ((x) ^ (y)))) in mbedtls_internal_md5_process() argument
171 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md5_process() argument
192 #define F(x,y,z) ((y) ^ ((x) | ~(z))) in mbedtls_internal_md5_process() argument
Dripemd160.c125 #define F1( x, y, z ) ( (x) ^ (y) ^ (z) ) in mbedtls_internal_ripemd160_process() argument
126 #define F2( x, y, z ) ( ( (x) & (y) ) | ( ~(x) & (z) ) ) in mbedtls_internal_ripemd160_process() argument
127 #define F3( x, y, z ) ( ( (x) | ~(y) ) ^ (z) ) in mbedtls_internal_ripemd160_process() argument
128 #define F4( x, y, z ) ( ( (x) & (z) ) | ( (y) & ~(z) ) ) in mbedtls_internal_ripemd160_process() argument
129 #define F5( x, y, z ) ( (x) ^ ( (y) | ~(z) ) ) in mbedtls_internal_ripemd160_process() argument
131 #define S( x, n ) ( ( (x) << (n) ) | ( (x) >> (32 - (n)) ) ) in mbedtls_internal_ripemd160_process() argument
Dconstant_time.c63 unsigned char x = A[i], y = B[i]; in mbedtls_ct_memcmp() local
134 static size_t mbedtls_ct_size_mask_lt( size_t x, in mbedtls_ct_size_mask_lt()
149 size_t mbedtls_ct_size_mask_ge( size_t x, in mbedtls_ct_size_mask_ge()
177 unsigned mbedtls_ct_size_bool_eq( size_t x, in mbedtls_ct_size_bool_eq()
216 static unsigned mbedtls_ct_size_gt( size_t x, in mbedtls_ct_size_gt()
227 unsigned mbedtls_ct_mpi_uint_lt( const mbedtls_mpi_uint x, in mbedtls_ct_mpi_uint_lt()
Dbase64.c119 uint32_t x; /* value accumulator */ in mbedtls_base64_decode() local
Darc4.c94 int x, y, a, b; in mbedtls_arc4_crypt() local
Daes.c370 #define ROTL8(x) ( ( (x) << 8 ) & 0xFFFFFFFF ) | ( (x) >> 24 ) argument
371 #define XTIME(x) ( ( (x) << 1 ) ^ ( ( (x) & 0x80 ) ? 0x1B : 0x00 ) ) argument
372 #define MUL(x,y) ( ( (x) && (y) ) ? pow[(log[(x)]+log[(y)]) % 255] : 0 ) argument
378 int i, x, y, z; in aes_gen_tables() local
462 #define ROTL8(x) ( (uint32_t)( ( x ) << 8 ) + (uint32_t)( ( x ) >> 24 ) ) argument
463 #define ROTL16(x) ( (uint32_t)( ( x ) << 16 ) + (uint32_t)( ( x ) >> 16 ) ) argument
464 #define ROTL24(x) ( (uint32_t)( ( x ) << 24 ) + (uint32_t)( ( x ) >> 8 ) ) argument
Decjpake.c309 const mbedtls_mpi *x, in ecjpake_zkp_write()
407 mbedtls_mpi *x, in ecjpake_kkp_write()
970 static uint32_t x = 42; in ecjpake_lgc() local
985 #define TEST_ASSERT( x ) \ argument
/openthread-3.4.0/third_party/mbedtls/repo/3rdparty/everest/library/kremlib/
DFStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c15 uint64_t x = a ^ b; in FStar_UInt64_eq_mask() local
24 uint64_t x = a; in FStar_UInt64_gte_mask() local
37 uint32_t x = a ^ b; in FStar_UInt32_eq_mask() local
46 uint32_t x = a; in FStar_UInt32_gte_mask() local
59 uint16_t x = a ^ b; in FStar_UInt16_eq_mask() local
68 uint16_t x = a; in FStar_UInt16_gte_mask() local
81 uint8_t x = a ^ b; in FStar_UInt8_eq_mask() local
90 uint8_t x = a; in FStar_UInt8_gte_mask() local
DFStar_UInt128_extracted.c341 FStar_UInt128_uint128 FStar_UInt128_mul32(uint64_t x, uint32_t y) in FStar_UInt128_mul32()
368 FStar_UInt128_mul_wide_impl_t_(uint64_t x, uint64_t y) in FStar_UInt128_mul_wide_impl_t_()
389 static FStar_UInt128_uint128 FStar_UInt128_mul_wide_impl(uint64_t x, uint64_t y) in FStar_UInt128_mul_wide_impl()
409 FStar_UInt128_uint128 FStar_UInt128_mul_wide(uint64_t x, uint64_t y) in FStar_UInt128_mul_wide()
/openthread-3.4.0/third_party/jlink/SEGGER_RTT_V640/Syscalls/
DSEGGER_RTT_Syscalls_SES.c147 static int _putchar(int x, __printf_tag_ptr ctx) { in _putchar()
239 int __putchar(int x, __printf_tag_ptr ctx) { in __putchar()
/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Darc4.h58 int x; /*!< permutation index */ member
Dpadlock.h61 #define MBEDTLS_PADLOCK_ALIGN16(x) (uint32_t *) (16 + ((int32_t) (x) & ~15)) argument
/openthread-3.4.0/third_party/mbedtls/repo/3rdparty/everest/include/everest/kremlin/internal/
Dcompat.h22 #define RETURN_OR(x) \ argument
/openthread-3.4.0/tests/scripts/thread-cert/border_router/
Dtest_dnssd_server_multi_border_routers.py155 def is_int(x): argument
240 dp_hostname = lambda x: x.endswith('.default.service.arpa.') argument
Dtest_dnssd_server.py226 dp_hostname = lambda x: x.endswith('.default.service.arpa.') argument
/openthread-3.4.0/tests/scripts/thread-cert/
Dtest_dnssd.py226 check_ttl = lambda x: x == check_ttl argument
/openthread-3.4.0/tests/scripts/thread-cert/pktverify/
Dbytes.py134 x = Bytes(b"\x01\x02\x03\x04") variable
/openthread-3.4.0/third_party/mbedtls/repo/tests/include/spe/
Dcrypto_spe.h23 #define PSA_FUNCTION_NAME(x) mbedcrypto__ ## x argument

12