Home
last modified time | relevance | path

Searched refs:total (Results 1 – 20 of 20) sorted by relevance

/openthread-3.5.0/third_party/mbedtls/repo/scripts/
Dmassif_max.pl42 my $total = $heap + $heap_extra + $stack;
43 if( $total > $max ) {
44 ($max, $max_heap, $max_he, $max_stack) = ($total, $heap, $heap_extra, $stack);
/openthread-3.5.0/third_party/mbedtls/repo/library/
Dsha256.c85 ctx->total[0] = 0; in mbedtls_sha256_starts_ret()
86 ctx->total[1] = 0; in mbedtls_sha256_starts_ret()
287 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update_ret()
290 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update_ret()
291 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha256_update_ret()
293 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_sha256_update_ret()
294 ctx->total[1]++; in mbedtls_sha256_update_ret()
348 used = ctx->total[0] & 0x3F; in mbedtls_sha256_finish_ret()
371 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish_ret()
372 | ( ctx->total[1] << 3 ); in mbedtls_sha256_finish_ret()
[all …]
Dmd4.c71 ctx->total[0] = 0; in mbedtls_md4_starts_ret()
72 ctx->total[1] = 0; in mbedtls_md4_starts_ret()
241 left = ctx->total[0] & 0x3F; in mbedtls_md4_update_ret()
244 ctx->total[0] += (uint32_t) ilen; in mbedtls_md4_update_ret()
245 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_md4_update_ret()
247 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_md4_update_ret()
248 ctx->total[1]++; in mbedtls_md4_update_ret()
309 high = ( ctx->total[0] >> 29 ) in mbedtls_md4_finish_ret()
310 | ( ctx->total[1] << 3 ); in mbedtls_md4_finish_ret()
311 low = ( ctx->total[0] << 3 ); in mbedtls_md4_finish_ret()
[all …]
Dmd5.c70 ctx->total[0] = 0; in mbedtls_md5_starts_ret()
71 ctx->total[1] = 0; in mbedtls_md5_starts_ret()
247 left = ctx->total[0] & 0x3F; in mbedtls_md5_update_ret()
250 ctx->total[0] += (uint32_t) ilen; in mbedtls_md5_update_ret()
251 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_md5_update_ret()
253 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_md5_update_ret()
254 ctx->total[1]++; in mbedtls_md5_update_ret()
306 used = ctx->total[0] & 0x3F; in mbedtls_md5_finish_ret()
329 high = ( ctx->total[0] >> 29 ) in mbedtls_md5_finish_ret()
330 | ( ctx->total[1] << 3 ); in mbedtls_md5_finish_ret()
[all …]
Dsha512.c104 ctx->total[0] = 0; in mbedtls_sha512_starts_ret()
105 ctx->total[1] = 0; in mbedtls_sha512_starts_ret()
328 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update_ret()
331 ctx->total[0] += (uint64_t) ilen; in mbedtls_sha512_update_ret()
333 if( ctx->total[0] < (uint64_t) ilen ) in mbedtls_sha512_update_ret()
334 ctx->total[1]++; in mbedtls_sha512_update_ret()
388 used = ctx->total[0] & 0x7F; in mbedtls_sha512_finish_ret()
411 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish_ret()
412 | ( ctx->total[1] << 3 ); in mbedtls_sha512_finish_ret()
413 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish_ret()
Dconstant_time.c382 size_t total, in mbedtls_ct_mem_move_to_left() argument
387 if( total == 0 ) in mbedtls_ct_mem_move_to_left()
389 for( i = 0; i < total; i++ ) in mbedtls_ct_mem_move_to_left()
391 unsigned no_op = mbedtls_ct_size_gt( total - offset, i ); in mbedtls_ct_mem_move_to_left()
395 for( n = 0; n < total - 1; n++ ) in mbedtls_ct_mem_move_to_left()
401 buf[total-1] = mbedtls_ct_uint_if( no_op, buf[total-1], 0 ); in mbedtls_ct_mem_move_to_left()
Dripemd160.c71 ctx->total[0] = 0; in mbedtls_ripemd160_starts_ret()
72 ctx->total[1] = 0; in mbedtls_ripemd160_starts_ret()
310 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update_ret()
313 ctx->total[0] += (uint32_t) ilen; in mbedtls_ripemd160_update_ret()
314 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_ripemd160_update_ret()
316 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_ripemd160_update_ret()
317 ctx->total[1]++; in mbedtls_ripemd160_update_ret()
376 high = ( ctx->total[0] >> 29 ) in mbedtls_ripemd160_finish_ret()
377 | ( ctx->total[1] << 3 ); in mbedtls_ripemd160_finish_ret()
378 low = ( ctx->total[0] << 3 ); in mbedtls_ripemd160_finish_ret()
[all …]
Dsha1.c82 ctx->total[0] = 0; in mbedtls_sha1_starts_ret()
83 ctx->total[1] = 0; in mbedtls_sha1_starts_ret()
300 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update_ret()
303 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha1_update_ret()
304 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha1_update_ret()
306 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_sha1_update_ret()
307 ctx->total[1]++; in mbedtls_sha1_update_ret()
361 used = ctx->total[0] & 0x3F; in mbedtls_sha1_finish_ret()
384 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish_ret()
385 | ( ctx->total[1] << 3 ); in mbedtls_sha1_finish_ret()
[all …]
/openthread-3.5.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_asn1write.data199 ASN.1 Write AlgorithmIdentifier, total length=0x7f
202 ASN.1 Write AlgorithmIdentifier, total length=0x80
205 ASN.1 Write AlgorithmIdentifier, total length=0xff
208 ASN.1 Write AlgorithmIdentifier, total length=0x100
211 ASN.1 Write AlgorithmIdentifier, total length=0xffff
214 ASN.1 Write AlgorithmIdentifier, total length=0x10000
217 ASN.1 Write AlgorithmIdentifier, total length=0xffffff
220 ASN.1 Write AlgorithmIdentifier, total length=0x1000000
Dtest_suite_x509parse.data1536 X509 CRT ASN1 (TBS, inv SubPubKeyInfo, total length mismatch)
2552 X509 CSR ASN.1 (total length mistmatch)
/openthread-3.5.0/third_party/mbedtls/repo/include/mbedtls/
Dmd4.h61 uint32_t total[2]; /*!< number of bytes processed */ member
Dmd5.h60 uint32_t total[2]; /*!< number of bytes processed */ member
Dripemd160.h52 uint32_t total[2]; /*!< number of bytes processed */ member
Dsha1.h65 uint32_t total[2]; /*!< The number of Bytes processed. */ member
Dsha256.h60 uint32_t total[2]; /*!< The number of Bytes processed. */ member
Dsha512.h59 uint64_t total[2]; /*!< The number of Bytes processed. */ member
/openthread-3.5.0/src/cli/
DREADME.md368 - The `total` shows total number of message buffers in pool.
374 - The third number shows total number of bytes of all messages in the queue.
378 total: 40
/openthread-3.5.0/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-interface.md419 …not collect enough entropy, the core makes more similar rounds, until the total amount of collecte…
539 …_i$ and an entropy estimate $e_i$ on the $i$th call. It does so until the total entropy estimate $…
565 …s nonzero, the core must have called `"add_entropy"` at least once with a total of at least `"init…
/openthread-3.5.0/doc/
DDoxyfile.in2208 # but if the number exceeds 15, the total amount of fields shown is limited to
/openthread-3.5.0/third_party/mbedtls/repo/
DChangeLog944 * Enforce that mbedtls_entropy_func() gathers a total of