Home
last modified time | relevance | path

Searched refs:realloc_bm (Results 1 – 3 of 3) sorted by relevance

/dports/devel/liberasurecode/liberasurecode-1.4.0/src/
H A Derasurecode_preprocessing.c118 uint64_t *realloc_bm) in prepare_fragments_for_decode() argument
146 *realloc_bm = *realloc_bm | (1 << i); in prepare_fragments_for_decode()
155 *realloc_bm = *realloc_bm | (1 << i); in prepare_fragments_for_decode()
185 *realloc_bm = *realloc_bm | (1 << (k + i)); in prepare_fragments_for_decode()
194 *realloc_bm = *realloc_bm | (1 << (k + i)); in prepare_fragments_for_decode()
H A Derasurecode.c554 uint64_t realloc_bm = 0; in liberasurecode_decode() local
674 fragment_len, &realloc_bm); in liberasurecode_decode()
723 if (realloc_bm != 0) { in liberasurecode_decode()
725 if (realloc_bm & (1 << i)) { in liberasurecode_decode()
731 if (realloc_bm & (1 << (i + k))) { in liberasurecode_decode()
775 uint64_t realloc_bm = 0; in liberasurecode_reconstruct_fragment() local
882 fragment_len, &realloc_bm); in liberasurecode_reconstruct_fragment()
926 if (realloc_bm != 0) { in liberasurecode_reconstruct_fragment()
928 if (realloc_bm & (1 << i)) { in liberasurecode_reconstruct_fragment()
934 if (realloc_bm & (1 << (i + k))) { in liberasurecode_reconstruct_fragment()
/dports/devel/liberasurecode/liberasurecode-1.4.0/include/erasurecode/
H A Derasurecode_preprocessing.h44 uint64_t *realloc_bm);