/openthread-3.7.0/third_party/tcplp/bsdtcp/ |
D | tcp_sack.c | 332 struct sackhole *cur, *temp; in tcp_sack_doack() local 415 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL); in tcp_sack_doack() 416 if (temp != NULL) { in tcp_sack_doack() 471 temp = cur; in tcp_sack_doack() 473 tcp_sackhole_remove(tp, temp); in tcp_sack_doack() 496 temp = tcp_sackhole_insert(tp, sblkp->end, in tcp_sack_doack() 498 if (temp != NULL) { in tcp_sack_doack() 499 if (SEQ_GT(cur->rxmit, temp->rxmit)) { in tcp_sack_doack() 500 temp->rxmit = cur->rxmit; in tcp_sack_doack() 502 += (temp->rxmit in tcp_sack_doack() [all …]
|
/openthread-3.7.0/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-3.7.0/third_party/mbedtls/repo/library/ |
D | bignum_core.c | 729 mbedtls_mpi_uint *temp) in exp_mod_precompute_window() argument 734 mbedtls_mpi_core_montmul(Wtable, Wtable, RR, AN_limbs, N, AN_limbs, mm, temp); in exp_mod_precompute_window() 744 mbedtls_mpi_core_montmul(Wcur, Wprev, W1, AN_limbs, N, AN_limbs, mm, temp); in exp_mod_precompute_window() 781 mbedtls_mpi_uint *const temp = Wselect + select_limbs; in mbedtls_mpi_core_exp_mod() local 792 welem, Wtable, temp); in mbedtls_mpi_core_exp_mod() 813 mbedtls_mpi_core_montmul(X, X, X, AN_limbs, N, AN_limbs, mm, temp); in mbedtls_mpi_core_exp_mod() 837 temp); in mbedtls_mpi_core_exp_mod()
|
D | des.c | 634 unsigned char temp[8]; in mbedtls_des_crypt_cbc() local 656 memcpy(temp, input, 8); in mbedtls_des_crypt_cbc() 664 memcpy(iv, temp, 8); in mbedtls_des_crypt_cbc() 732 unsigned char temp[8]; in mbedtls_des3_crypt_cbc() local 754 memcpy(temp, input, 8); in mbedtls_des3_crypt_cbc() 762 memcpy(iv, temp, 8); in mbedtls_des3_crypt_cbc()
|
D | camellia.c | 526 unsigned char temp[16]; in mbedtls_camellia_crypt_cbc() local 537 memcpy(temp, input, 16); in mbedtls_camellia_crypt_cbc() 542 memcpy(iv, temp, 16); in mbedtls_camellia_crypt_cbc()
|
D | aria.c | 519 unsigned char temp[MBEDTLS_ARIA_BLOCKSIZE]; in mbedtls_aria_crypt_cbc() local 531 memcpy(temp, input, MBEDTLS_ARIA_BLOCKSIZE); in mbedtls_aria_crypt_cbc() 536 memcpy(iv, temp, MBEDTLS_ARIA_BLOCKSIZE); in mbedtls_aria_crypt_cbc()
|
D | sha1.c | 69 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_internal_sha1_process() member 93 local.temp = local.W[((t) - 3) & 0x0F] ^ \ in mbedtls_internal_sha1_process() 97 (local.W[(t) & 0x0F] = S(local.temp, 1)) \ in mbedtls_internal_sha1_process()
|
D | aes.c | 1080 unsigned char temp[16]; in mbedtls_aes_crypt_cbc() local 1111 memcpy(temp, input, 16); in mbedtls_aes_crypt_cbc() 1121 memcpy(iv, temp, 16); in mbedtls_aes_crypt_cbc()
|
/openthread-3.7.0/src/core/net/ |
D | tcp6.cpp | 130 static otSockAddr temp; in GetLocalAddress() local 132 memcpy(&temp.mAddress, &tp.laddr, sizeof(temp.mAddress)); in GetLocalAddress() 133 temp.mPort = BigEndian::HostSwap16(tp.lport); in GetLocalAddress() 135 return AsCoreType(&temp); in GetLocalAddress() 142 static otSockAddr temp; in GetPeerAddress() local 144 memcpy(&temp.mAddress, &tp.faddr, sizeof(temp.mAddress)); in GetPeerAddress() 145 temp.mPort = BigEndian::HostSwap16(tp.fport); in GetPeerAddress() 147 return AsCoreType(&temp); in GetPeerAddress()
|
/openthread-3.7.0/third_party/tcplp/lib/ |
D | cbuf.c | 185 uint8_t temp = chdr->buf[start_1 + i]; in cbuf_swap() local 187 chdr->buf[start_2 + i] = temp; in cbuf_swap()
|