Home
last modified time | relevance | path

Searched refs:block_len (Results 1 – 6 of 6) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/blake3/
Dblake3_dispatch.c138 uint8_t block_len, uint64_t counter, in blake3_compress_in_place() argument
145 blake3_compress_in_place_avx512(cv, block, block_len, counter, flags); in blake3_compress_in_place()
151 blake3_compress_in_place_sse41(cv, block, block_len, counter, flags); in blake3_compress_in_place()
157 blake3_compress_in_place_sse2(cv, block, block_len, counter, flags); in blake3_compress_in_place()
162 blake3_compress_in_place_portable(cv, block, block_len, counter, flags); in blake3_compress_in_place()
167 uint8_t block_len, uint64_t counter, uint8_t flags, in blake3_compress_xof() argument
174 blake3_compress_xof_avx512(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
180 blake3_compress_xof_sse41(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
186 blake3_compress_xof_sse2(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
191 blake3_compress_xof_portable(cv, block, block_len, counter, flags, out); in blake3_compress_xof()
Dblake3_impl.h182 uint8_t block_len, uint64_t counter,
187 uint8_t block_len, uint64_t counter, uint8_t flags,
201 uint8_t block_len, uint64_t counter,
206 uint8_t block_len, uint64_t counter,
219 uint8_t block_len, uint64_t counter,
223 uint8_t block_len, uint64_t counter,
234 uint8_t block_len, uint64_t counter,
238 uint8_t block_len, uint64_t counter,
256 uint8_t block_len, uint64_t counter,
261 uint8_t block_len, uint64_t counter,
Dblake3_portable.c39 uint8_t block_len, uint64_t counter, uint8_t flags) { in compress_pre() argument
72 state[14] = (uint32_t)block_len; in compress_pre()
86 uint8_t block_len, uint64_t counter, in blake3_compress_in_place_portable() argument
89 compress_pre(state, cv, block, block_len, counter, flags); in blake3_compress_in_place_portable()
102 uint8_t block_len, uint64_t counter, in blake3_compress_xof_portable() argument
105 compress_pre(state, cv, block, block_len, counter, flags); in blake3_compress_xof_portable()
Dblake3.c58 uint8_t block_len; member
64 uint8_t block_len, uint64_t counter, in make_output() argument
69 ret.block_len = block_len; in make_output()
84 blake3_compress_in_place(cv_words, self->block, self->block_len, in output_chaining_value()
95 blake3_compress_xof(self->input_cv, self->block, self->block_len, in output_root_bytes()
Dblake3_neon.c300 uint8_t block_len, uint64_t counter,
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h1975 size_t block_len = buf_len % 5552; in mz_adler32() local
1978 for (i = 0; i + 7 < block_len; i += 8, ptr += 8) { in mz_adler32()
1988 for (; i < block_len; ++i) s1 += *ptr++, s2 += s1; in mz_adler32()
1990 buf_len -= block_len; in mz_adler32()
1991 block_len = 5552; in mz_adler32()
2963 size_t block_len = buf_len % 5552; in tinfl_decompress() local
2965 for (i = 0; i + 7 < block_len; i += 8, ptr += 8) { in tinfl_decompress()
2975 for (; i < block_len; ++i) s1 += *ptr++, s2 += s1; in tinfl_decompress()
2977 buf_len -= block_len; in tinfl_decompress()
2978 block_len = 5552; in tinfl_decompress()