Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 29) sorted by relevance

12

/openthread-latest/src/core/utils/
Dheap.cpp162 Block *left = &BlockNext(*prev); in Free() local
166 …for (const uint16_t offset = block.GetLeftNext(); left->GetNext() != offset; left = &BlockNext(*le… in Free()
168 prev = left; in Free()
172 prev->SetNext(left->GetNext()); in Free()
173 left->SetNext(0); in Free()
179 if (right.GetSize() > left->GetSize()) in Free()
194 left->SetSize(left->GetSize() + right.GetSize() + sizeof(Block)); in Free()
198 left->SetSize(left->GetSize() + block.GetSize() + sizeof(Block)); in Free()
200 BlockInsert(*prev, *left); in Free()
/openthread-latest/src/core/common/
Dbinary_search.cpp47 uint16_t left = 0; in Find() local
50 while (left < right) in Find()
52 uint16_t middle = (left + right) / 2; in Find()
74 left = middle + 1; in Find()
/openthread-latest/tests/scripts/thread-cert/
Dtest_ping_lla_src.py91 left, center, right = router2, router1, router3
93 left_lla = left.get_ip6_address(config.ADDRESS_TYPE.LINK_LOCAL)
96 self.assertTrue(left.ping(center.get_mleid(), interface=left_lla))
100 self.assertFalse(left.ping(right.get_mleid(), interface=left_lla))
109 self.assertFalse(left.ping("2001::1", interface=left_lla))
/openthread-latest/third_party/mbedtls/repo/programs/test/
Dmetatest.c87 int left = 20; in meta_test_not_equal() local
92 TEST_EQUAL(left, right); in meta_test_not_equal()
99 int left = 20; in meta_test_not_le_s() local
104 TEST_LE_S(left, right); in meta_test_not_le_s()
111 size_t left = 20; in meta_test_not_le_u() local
116 TEST_LE_U(left, right); in meta_test_not_le_u()
/openthread-latest/third_party/mbedtls/repo/library/
Dmd5.c209 uint32_t left; in mbedtls_md5_update() local
215 left = ctx->total[0] & 0x3F; in mbedtls_md5_update()
216 fill = 64 - left; in mbedtls_md5_update()
225 if (left && ilen >= fill) { in mbedtls_md5_update()
226 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_md5_update()
233 left = 0; in mbedtls_md5_update()
246 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_md5_update()
Dhmac_drbg.c313 size_t left = out_len; in mbedtls_hmac_drbg_random_with_add() local
346 while (left != 0) { in mbedtls_hmac_drbg_random_with_add()
347 size_t use_len = left > md_len ? md_len : left; in mbedtls_hmac_drbg_random_with_add()
362 left -= use_len; in mbedtls_hmac_drbg_random_with_add()
Dsha1.c244 uint32_t left; in mbedtls_sha1_update() local
250 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
251 fill = 64 - left; in mbedtls_sha1_update()
260 if (left && ilen >= fill) { in mbedtls_sha1_update()
261 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha1_update()
269 left = 0; in mbedtls_sha1_update()
282 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_sha1_update()
Dsha256.c647 uint32_t left; in mbedtls_sha256_update() local
653 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
654 fill = SHA256_BLOCK_SIZE - left; in mbedtls_sha256_update()
663 if (left && ilen >= fill) { in mbedtls_sha256_update()
664 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha256_update()
672 left = 0; in mbedtls_sha256_update()
687 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_sha256_update()
Dripemd160.c272 uint32_t left; in mbedtls_ripemd160_update() local
278 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update()
279 fill = 64 - left; in mbedtls_ripemd160_update()
288 if (left && ilen >= fill) { in mbedtls_ripemd160_update()
289 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_ripemd160_update()
297 left = 0; in mbedtls_ripemd160_update()
310 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_ripemd160_update()
Dsha512.c766 unsigned int left; in mbedtls_sha512_update() local
772 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
773 fill = SHA512_BLOCK_SIZE - left; in mbedtls_sha512_update()
781 if (left && ilen >= fill) { in mbedtls_sha512_update()
782 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha512_update()
790 left = 0; in mbedtls_sha512_update()
805 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_sha512_update()
/openthread-latest/third_party/mbedtls/repo/programs/pkey/
Dgen_key.c46 size_t ret, left = len; in dev_random_entropy_poll() local
57 while (left > 0) { in dev_random_entropy_poll()
59 ret = fread(p, 1, left, file); in dev_random_entropy_poll()
66 left -= ret; in dev_random_entropy_poll()
/openthread-latest/third_party/mbedtls/repo/framework/
DCMakeLists.txt1 # This file is intentionally left blank. It soon won't be.
Dexported.make1 # This file is intentionally left blank. It soon won't be.
/openthread-latest/third_party/mbedtls/repo/visualc/VS2017/
D.gitignore1 # Files that may be left over from check-generated-files.sh
/openthread-latest/src/cli/
DREADME_TCP.md85 - size: the number of bytes to send for the benchmark. If it is left unspecified, the default size …
181 - size: the size of the receive buffer to associate with the example TCP endpoint. If left unspecif…
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ecdh.function128 /* Fix rnd_buf_A->x by shifting it left if necessary */
146 /* Fix rnd_buf_B->x by shifting it left if necessary */
Dtest_suite_ecdsa.function104 /* Fix rnd_buf->x by shifting it left if necessary */
Dtest_suite_aes.function7 * be initialized, and are left freed.
Dtest_suite_bignum_core.function10 * \param[in] A Little-endian presentation of the left operand.
86 * \param[in] A Little-endian presentation of the left operand.
Dtest_suite_mps.function517 /* 20 left, ask for 70 -> 50 overhead */
Dtest_suite_ecp.function1760 /*Borrow the buffer of A to compare the left lims with 0 */
/openthread-latest/doc/
DDoxyfile.in94 # left blank the current directory will be used.
143 # text. Otherwise, the brief description is used as-is. If left blank, the
183 # Stripping is only done if one of the specified strings matches the left-hand
185 # If left blank the directory from which doxygen is run is used as the path to
197 # header file to include in order to use a class. If left blank only the name of
708 # tag is left empty.
777 # messages should be written. If left blank the output is written to standard
808 # *.h) to filter out the source-files in the directories. If left blank the
899 # *.h) to filter out the source-files in the directories. If left blank all
1102 # each generated HTML page. If the tag is left blank doxygen will generate a
[all …]
/openthread-latest/
DSTYLE_GUIDE.md153 - The names of all variable declarations should be left aligned.
156 - The names of all data member declarations should be left aligned.
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Dinvasive-testing.md308 Goal: test that no stray files are left over in the key store after a test that succeeded.
314 Goal: ensure that no stray files are left over in the key store even if a test has failed (as that …
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dpsa-limitations.md101 - a trailer field - the value is fixed to 0xBC by PKCS#1 v2.1, but was left

12