/openthread-2.7.6/third_party/mbedtls/repo/library/ |
D | blowfish.c | 98 uint32_t Xl, Xr, temp; in blowfish_enc() local 109 temp = Xl; in blowfish_enc() 111 Xr = temp; in blowfish_enc() 114 temp = Xl; in blowfish_enc() 116 Xr = temp; in blowfish_enc() 127 uint32_t Xl, Xr, temp; in blowfish_dec() local 138 temp = Xl; in blowfish_dec() 140 Xr = temp; in blowfish_dec() 143 temp = Xl; in blowfish_dec() 145 Xr = temp; in blowfish_dec() [all …]
|
D | xtea.c | 142 unsigned char temp[8]; in mbedtls_xtea_crypt_cbc() local 151 memcpy( temp, input, 8 ); in mbedtls_xtea_crypt_cbc() 157 memcpy( iv, temp, 8 ); in mbedtls_xtea_crypt_cbc()
|
D | des.c | 668 unsigned char temp[8]; in mbedtls_des_crypt_cbc() local 692 memcpy( temp, input, 8 ); in mbedtls_des_crypt_cbc() 698 memcpy( iv, temp, 8 ); in mbedtls_des_crypt_cbc() 767 unsigned char temp[8]; in mbedtls_des3_crypt_cbc() local 791 memcpy( temp, input, 8 ); in mbedtls_des3_crypt_cbc() 797 memcpy( iv, temp, 8 ); in mbedtls_des3_crypt_cbc()
|
D | camellia.c | 575 unsigned char temp[16]; in mbedtls_camellia_crypt_cbc() local 590 memcpy( temp, input, 16 ); in mbedtls_camellia_crypt_cbc() 596 memcpy( iv, temp, 16 ); in mbedtls_camellia_crypt_cbc()
|
D | aria.c | 621 unsigned char temp[MBEDTLS_ARIA_BLOCKSIZE]; in mbedtls_aria_crypt_cbc() local 637 memcpy( temp, input, MBEDTLS_ARIA_BLOCKSIZE ); in mbedtls_aria_crypt_cbc() 643 memcpy( iv, temp, MBEDTLS_ARIA_BLOCKSIZE ); in mbedtls_aria_crypt_cbc()
|
D | sha1.c | 130 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_internal_sha1_process() member 157 local.temp = local.W[( (t) - 3 ) & 0x0F] ^ \ in mbedtls_internal_sha1_process() 161 ( local.W[(t) & 0x0F] = S(local.temp,1) ) \ in mbedtls_internal_sha1_process()
|
D | aes.c | 1055 unsigned char temp[16]; in mbedtls_aes_crypt_cbc() local 1083 memcpy( temp, input, 16 ); in mbedtls_aes_crypt_cbc() 1089 memcpy( iv, temp, 16 ); in mbedtls_aes_crypt_cbc()
|
/openthread-2.7.6/src/core/utils/ |
D | flash.cpp | 93 uint32_t temp; in SanitizeFreeSpace() local 101 for (uint32_t offset = mSwapUsed; offset < mSwapSize; offset += sizeof(temp)) in SanitizeFreeSpace() 103 otPlatFlashRead(&GetInstance(), mSwapIndex, offset, &temp, sizeof(temp)); in SanitizeFreeSpace() 104 if (temp != ~0U) in SanitizeFreeSpace()
|
/openthread-2.7.6/third_party/mbedtls/repo/scripts/data_files/ |
D | vs6-main-template.dsp | 36 # PROP BASE Intermediate_Dir "temp" 41 # PROP Intermediate_Dir "temp" 59 # PROP BASE Intermediate_Dir "temp" 64 # PROP Intermediate_Dir "temp"
|
D | vs6-app-template.dsp | 36 # PROP BASE Intermediate_Dir "temp" 41 # PROP Intermediate_Dir "temp" 59 # PROP BASE Intermediate_Dir "temp" 64 # PROP Intermediate_Dir "temp"
|
/openthread-2.7.6/src/core/net/ |
D | tcp6.cpp | 85 static otSockAddr temp; in GetLocalAddress() local 86 return *static_cast<SockAddr *>(&temp); in GetLocalAddress() 91 static otSockAddr temp; in GetPeerAddress() local 92 return *static_cast<SockAddr *>(&temp); in GetPeerAddress()
|