Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 11 of 11) sorted by relevance

/openthread-2.7.6/third_party/mbedtls/repo/library/
Dblowfish.c98 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 …]
Dxtea.c142 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()
Ddes.c668 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()
Dcamellia.c575 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()
Daria.c621 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()
Dsha1.c130 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()
Daes.c1055 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/
Dflash.cpp93 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/
Dvs6-main-template.dsp36 # PROP BASE Intermediate_Dir "temp"
41 # PROP Intermediate_Dir "temp"
59 # PROP BASE Intermediate_Dir "temp"
64 # PROP Intermediate_Dir "temp"
Dvs6-app-template.dsp36 # 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/
Dtcp6.cpp85 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()