Searched refs:temp2 (Results 1 – 3 of 3) sorted by relevance
/net-tools-3.4.0/tinydtls-0.8.2/ecc/ |
D | testfield.c | 102 uint32_t temp2[16]; variable 106 memset(temp2, 0, sizeof(temp)); in nullEverything() 137 ecc_fieldMult(one, null, temp2, arrayLength); in fieldMultTest() 138 assert(ecc_isSame(temp2, null64, arrayLength * 2)); in fieldMultTest() 140 ecc_fieldMult(one, two, temp2, arrayLength); in fieldMultTest() 141 assert(ecc_isSame(temp2, two64, arrayLength * 2)); in fieldMultTest() 143 ecc_fieldMult(two, two, temp2, arrayLength); in fieldMultTest() 144 assert(ecc_isSame(temp2, four64, arrayLength * 2)); in fieldMultTest() 146 ecc_fieldMult(primeMinusOne, primeMinusOne, temp2, arrayLength); in fieldMultTest() 147 assert(ecc_isSame(temp2, resultQuadMod, arrayLength * 2)); in fieldMultTest() [all …]
|
/net-tools-3.4.0/mbedtls-2.4.0/library/ |
D | sha256.c | 178 temp2 = S2(a) + F0(a,b,c); \ 179 d += temp1; h = temp1 + temp2; \ 184 uint32_t temp1, temp2, W[64]; in mbedtls_sha256_process() local
|
D | sha512.c | 202 uint64_t temp1, temp2, W[80]; in mbedtls_sha512_process() local 220 temp2 = S2(a) + F0(a,b,c); \ in mbedtls_sha512_process() 221 d += temp1; h = temp1 + temp2; \ in mbedtls_sha512_process()
|