/hardware/google/gfxstream/guest/mesa/src/util/blake3/ |
D | blake3_dispatch.c | 138 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()
|
D | blake3_impl.h | 182 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,
|
D | blake3_portable.c | 39 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()
|
D | blake3.c | 58 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()
|
D | blake3_neon.c | 300 uint8_t block_len, uint64_t counter,
|
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | tinyexr.h | 1975 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()
|