Home
last modified time | relevance | path

Searched refs:fill (Results 1 – 12 of 12) sorted by relevance

/openthread-2.7.6/third_party/mbedtls/repo/library/
Dmd2.c172 size_t fill; in mbedtls_md2_update_ret() local
177 fill = 16 - ctx->left; in mbedtls_md2_update_ret()
179 fill = ilen; in mbedtls_md2_update_ret()
181 memcpy( ctx->buffer + ctx->left, input, fill ); in mbedtls_md2_update_ret()
183 ctx->left += fill; in mbedtls_md2_update_ret()
184 input += fill; in mbedtls_md2_update_ret()
185 ilen -= fill; in mbedtls_md2_update_ret()
Dsha256.c301 size_t fill; in mbedtls_sha256_update_ret() local
311 fill = 64 - left; in mbedtls_sha256_update_ret()
319 if( left && ilen >= fill ) in mbedtls_sha256_update_ret()
321 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha256_update_ret()
326 input += fill; in mbedtls_sha256_update_ret()
327 ilen -= fill; in mbedtls_sha256_update_ret()
Dsha512.c350 size_t fill; in mbedtls_sha512_update_ret() local
360 fill = 128 - left; in mbedtls_sha512_update_ret()
367 if( left && ilen >= fill ) in mbedtls_sha512_update_ret()
369 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha512_update_ret()
374 input += fill; in mbedtls_sha512_update_ret()
375 ilen -= fill; in mbedtls_sha512_update_ret()
Dmd4.c258 size_t fill; in mbedtls_md4_update_ret() local
265 fill = 64 - left; in mbedtls_md4_update_ret()
273 if( left && ilen >= fill ) in mbedtls_md4_update_ret()
276 (void *) input, fill ); in mbedtls_md4_update_ret()
281 input += fill; in mbedtls_md4_update_ret()
282 ilen -= fill; in mbedtls_md4_update_ret()
Dmd5.c264 size_t fill; in mbedtls_md5_update_ret() local
271 fill = 64 - left; in mbedtls_md5_update_ret()
279 if( left && ilen >= fill ) in mbedtls_md5_update_ret()
281 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_md5_update_ret()
285 input += fill; in mbedtls_md5_update_ret()
286 ilen -= fill; in mbedtls_md5_update_ret()
Dripemd160.c327 size_t fill; in mbedtls_ripemd160_update_ret() local
334 fill = 64 - left; in mbedtls_ripemd160_update_ret()
342 if( left && ilen >= fill ) in mbedtls_ripemd160_update_ret()
344 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_ripemd160_update_ret()
349 input += fill; in mbedtls_ripemd160_update_ret()
350 ilen -= fill; in mbedtls_ripemd160_update_ret()
Dsha1.c314 size_t fill; in mbedtls_sha1_update_ret() local
324 fill = 64 - left; in mbedtls_sha1_update_ret()
332 if( left && ilen >= fill ) in mbedtls_sha1_update_ret()
334 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha1_update_ret()
339 input += fill; in mbedtls_sha1_update_ret()
340 ilen -= fill; in mbedtls_sha1_update_ret()
/openthread-2.7.6/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_entropy.function61 /* fill seed with some data */
90 /* fill seed with some data */
Dtest_suite_entropy.function90 * NV seed read/write helpers that fill the base seedfile
Dtest_suite_pk.function35 * \param pk The PK object to fill. It must have been initialized
/openthread-2.7.6/tools/harness-thci/
DREADME.md66 …eference device to the **Test Bed** section with the desired number. Then fill in the Raspberry Pi…
/openthread-2.7.6/third_party/mbedtls/repo/
DChangeLog146 * In PEM writing functions, fill the trailing part of the buffer with null