Home
last modified time | relevance | path

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

123

/l4re-core-master/uclibc/lib/contrib/uclibc/libcrypt/
A Dsha256.c92 ctx->total[0] += len; in sha256_process_block()
93 if (ctx->total[0] < len) in sha256_process_block()
94 ++ctx->total[1]; in sha256_process_block()
187 ctx->total[0] = ctx->total[1] = 0; in __sha256_init_ctx()
205 ctx->total[0] += bytes; in __sha256_finish_ctx()
206 if (ctx->total[0] < bytes) in __sha256_finish_ctx()
207 ++ctx->total[1]; in __sha256_finish_ctx()
213 *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3); in __sha256_finish_ctx()
214 *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in __sha256_finish_ctx()
215 (ctx->total[0] >> 29)); in __sha256_finish_ctx()
A Dsha512.c123 ctx->total[0] += len; in sha512_process_block()
124 if (ctx->total[0] < len) in sha512_process_block()
125 ++ctx->total[1]; in sha512_process_block()
218 ctx->total[0] = ctx->total[1] = 0; in __sha512_init_ctx()
236 ctx->total[0] += bytes; in __sha512_finish_ctx()
237 if (ctx->total[0] < bytes) in __sha512_finish_ctx()
238 ++ctx->total[1]; in __sha512_finish_ctx()
244 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP (ctx->total[0] << 3); in __sha512_finish_ctx()
245 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) | in __sha512_finish_ctx()
246 (ctx->total[0] >> 61)); in __sha512_finish_ctx()
A Dsha256.h33 uint32_t total[2]; member
A Dsha512.h33 uint64_t total[2]; member
/l4re-core-master/uclibc/lib/contrib/uclibc/libubacktrace/
A Dbacktracesyms.c51 size_t total = 0; in backtrace_symbols() local
63 total += (strlen (info[cnt].dli_fname ?: "") + in backtrace_symbols()
68 total += 5 + WORD_WIDTH; in backtrace_symbols()
72 result = (char **) malloc (size * sizeof (char *) + total); in backtrace_symbols()
100 assert (last <= (char *) result + size * sizeof (char *) + total); in backtrace_symbols()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-signal3.c211 int total = 0; in do_test() local
217 total += received[i][j]; in do_test()
227 if (total != ROUNDS) in do_test()
230 total, ROUNDS); in do_test()
234 printf ("A total of %d signals sent and received\n", total); in do_test()
/l4re-core-master/uclibc/lib/libpthread/src/sysdeps/generic/
A Ddl-tls.c491 size_t total = 0; in _dl_allocate_tls_init() local
508 if (total + cnt > GL(dl_tls_max_dtv_idx)) in _dl_allocate_tls_init()
548 total += cnt; in _dl_allocate_tls_init()
549 if (total >= GL(dl_tls_max_dtv_idx)) in _dl_allocate_tls_init()
679 size_t total = 0; in _dl_update_slotinfo() local
687 for (cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt) in _dl_update_slotinfo()
708 if (! dtv[total + cnt].pointer.is_static in _dl_update_slotinfo()
711 free (dtv[total + cnt].pointer.val); in _dl_update_slotinfo()
712 dtv[total + cnt].pointer.val = TLS_DTV_UNALLOCATED; in _dl_update_slotinfo()
720 assert (total + cnt == modid); in _dl_update_slotinfo()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/generic/
A Ddl-tls.c491 size_t total = 0; in _dl_allocate_tls_init() local
508 if (total + cnt > GL(dl_tls_max_dtv_idx)) in _dl_allocate_tls_init()
548 total += cnt; in _dl_allocate_tls_init()
549 if (total >= GL(dl_tls_max_dtv_idx)) in _dl_allocate_tls_init()
679 size_t total = 0; in _dl_update_slotinfo() local
687 for (cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt) in _dl_update_slotinfo()
708 if (! dtv[total + cnt].pointer.is_static in _dl_update_slotinfo()
711 free (dtv[total + cnt].pointer.val); in _dl_update_slotinfo()
712 dtv[total + cnt].pointer.val = TLS_DTV_UNALLOCATED; in _dl_update_slotinfo()
720 assert (total + cnt == modid); in _dl_update_slotinfo()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/ldso/
A Ddl-tls.c583 size_t total = 0; in _dl_allocate_tls_init() local
600 if (total + cnt > _dl_tls_max_dtv_idx) in _dl_allocate_tls_init()
641 total += cnt; in _dl_allocate_tls_init()
642 if (total >= _dl_tls_max_dtv_idx) in _dl_allocate_tls_init()
754 size_t total = 0; in _dl_update_slotinfo() local
762 for (cnt = total == 0 ? 1 : 0; cnt < listp->len; ++cnt) in _dl_update_slotinfo()
783 if (! dtv[total + cnt].pointer.is_static in _dl_update_slotinfo()
786 _dl_free (dtv[total + cnt].pointer.val); in _dl_update_slotinfo()
787 dtv[total + cnt].pointer.val = TLS_DTV_UNALLOCATED; in _dl_update_slotinfo()
795 _dl_assert (total + cnt == modid); in _dl_update_slotinfo()
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/scripts/
A Dmake_graph.py32 total = 0
34 total = total + result[1]
35 return total
41 total = self.__accum(results)
42 cntnrs_and_totals.append((cntnr, total))
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp70 const size_type total = in splay() local
72 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
86 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp70 const size_type total = in splay() local
72 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
86 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/ext/pb_ds/detail/splay_tree_/
A Dsplay_fn_imps.hpp68 const size_type total = in splay() local
70 _GLIBCXX_DEBUG_ASSERT(total >= 3); in splay()
84 _GLIBCXX_DEBUG_ASSERT(total ==this->recursive_count(p_nd)); in splay()

Completed in 44 milliseconds

123