Searched refs:v0 (Results 1 – 8 of 8) sorted by relevance
/openthread-3.4.0/third_party/mbedtls/repo/library/ |
D | xtea.c | 74 uint32_t *k, v0, v1, i; in mbedtls_xtea_crypt_ecb() local 78 v0 = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_xtea_crypt_ecb() 87 v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + k[sum & 3]); in mbedtls_xtea_crypt_ecb() 89 v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + k[(sum>>11) & 3]); in mbedtls_xtea_crypt_ecb() 98 v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + k[(sum>>11) & 3]); in mbedtls_xtea_crypt_ecb() 100 v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + k[sum & 3]); in mbedtls_xtea_crypt_ecb() 104 MBEDTLS_PUT_UINT32_BE( v0, output, 0 ); in mbedtls_xtea_crypt_ecb()
|
D | bignum.c | 939 size_t i, v0, t1; in mbedtls_mpi_shift_l() local 943 v0 = count / (biL ); in mbedtls_mpi_shift_l() 956 if( v0 > 0 ) in mbedtls_mpi_shift_l() 958 for( i = X->n; i > v0; i-- ) in mbedtls_mpi_shift_l() 959 X->p[i - 1] = X->p[i - v0 - 1]; in mbedtls_mpi_shift_l() 970 for( i = v0; i < X->n; i++ ) in mbedtls_mpi_shift_l() 989 size_t i, v0, v1; in mbedtls_mpi_shift_r() local 993 v0 = count / biL; in mbedtls_mpi_shift_r() 996 if( v0 > X->n || ( v0 == X->n && v1 > 0 ) ) in mbedtls_mpi_shift_r() 1002 if( v0 > 0 ) in mbedtls_mpi_shift_r() [all …]
|
/openthread-3.4.0/third_party/mbedtls/repo/tests/src/ |
D | random.c | 131 info->v0 += ( ( ( info->v1 << 4 ) ^ ( info->v1 >> 5 ) ) in mbedtls_test_rnd_pseudo_rand() 134 info->v1 += ( ( ( info->v0 << 4 ) ^ ( info->v0 >> 5 ) ) in mbedtls_test_rnd_pseudo_rand() 135 + info->v0 ) ^ ( sum + k[( sum>>11 ) & 3] ); in mbedtls_test_rnd_pseudo_rand() 138 PUT_UINT32_BE( info->v0, result, 0 ); in mbedtls_test_rnd_pseudo_rand()
|
/openthread-3.4.0/third_party/mbedtls/repo/tests/include/test/ |
D | random.h | 56 uint32_t v0, v1; member
|
/openthread-3.4.0/third_party/mbedtls/repo/tests/data_files/ |
D | rsa4096_prv.pem | 6 /LiAnZgY7xih2ePEhkkIqn6kU0cVBQj1cZ7hXGRaZ/MnqZ2y+KjiuFot2saNk/v0
|
/openthread-3.4.0/third_party/mbedtls/repo/tests/ |
D | CMakeLists.txt | 164 add_test_suite(psa_crypto_storage_format psa_crypto_storage_format.v0)
|
/openthread-3.4.0/ |
D | CONTRIBUTING.md | 112 …4.0.0](https://releases.llvm.org/download.html#14.0.0) for C/C++ and [yapf v0.31.0](https://github…
|
D | STYLE_GUIDE.md | 119 …4.0.0](https://releases.llvm.org/download.html#14.0.0) for C/C++ and [yapf v0.31.0](https://github…
|